Searched refs:sinf_poly (Results 1 – 6 of 6) sorted by relevance
/external/arm-optimized-routines/math/ |
D | cosf.c | 32 return sinf_poly (x, x2, p, 1); in cosf() 44 return sinf_poly (x * s, x * x, p, n ^ 1); in cosf() 59 return sinf_poly (x * s, x * x, p, n ^ 1); in cosf()
|
D | sinf.c | 36 return sinf_poly (x, s, p, 0); in sinf() 48 return sinf_poly (x * s, x * x, p, n); in sinf() 63 return sinf_poly (x * s, x * x, p, n); in sinf()
|
D | sincosf.h | 73 sinf_poly (double x, double x2, const sincos_t *p, int n) in sinf_poly() function
|
/external/llvm-project/libc/src/math/ |
D | cosf.cpp | 35 return sinf_poly(x, x2, p, 1); in LLVM_LIBC_ENTRYPOINT() 45 return sinf_poly(x * s, x * x, p, n ^ 1); in LLVM_LIBC_ENTRYPOINT() 58 return sinf_poly(x * s, x * x, p, n ^ 1); in LLVM_LIBC_ENTRYPOINT()
|
D | sinf.cpp | 39 return sinf_poly(x, s, p, 0); in LLVM_LIBC_ENTRYPOINT() 49 return sinf_poly(x * s, x * x, p, n); in LLVM_LIBC_ENTRYPOINT() 62 return sinf_poly(x * s, x * x, p, n); in LLVM_LIBC_ENTRYPOINT()
|
D | sincosf_utils.h | 73 static inline float sinf_poly(double x, double x2, const sincos_t *p, int n) { in sinf_poly() function
|