Home
last modified time | relevance | path

Searched refs:sinf_poly (Results 1 – 6 of 6) sorted by relevance

/external/arm-optimized-routines/math/
Dcosf.c32 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()
Dsinf.c36 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()
Dsincosf.h73 sinf_poly (double x, double x2, const sincos_t *p, int n) in sinf_poly() function
/external/llvm-project/libc/src/math/
Dcosf.cpp35 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()
Dsinf.cpp39 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()
Dsincosf_utils.h73 static inline float sinf_poly(double x, double x2, const sincos_t *p, int n) { in sinf_poly() function