Home
last modified time | relevance | path

Searched refs:abstop12 (Results 1 – 8 of 8) sorted by relevance

/external/arm-optimized-routines/math/
Dsinf.c24 if (abstop12 (y) < abstop12 (pio4)) in sinf()
28 if (unlikely (abstop12 (y) < abstop12 (0x1p-12f))) in sinf()
30 if (unlikely (abstop12 (y) < abstop12 (0x1p-126f))) in sinf()
38 else if (likely (abstop12 (y) < abstop12 (120.0f))) in sinf()
50 else if (abstop12 (y) < abstop12 (INFINITY)) in sinf()
Dsincosf.c25 if (abstop12 (y) < abstop12 (pio4)) in sincosf()
29 if (unlikely (abstop12 (y) < abstop12 (0x1p-12f))) in sincosf()
31 if (unlikely (abstop12 (y) < abstop12 (0x1p-126f))) in sincosf()
41 else if (abstop12 (y) < abstop12 (120.0f)) in sincosf()
53 else if (likely (abstop12 (y) < abstop12 (INFINITY))) in sincosf()
Dcosf.c25 if (abstop12 (y) < abstop12 (pio4)) in cosf()
29 if (unlikely (abstop12 (y) < abstop12 (0x1p-12f))) in cosf()
34 else if (likely (abstop12 (y) < abstop12 (120.0f))) in cosf()
46 else if (abstop12 (y) < abstop12 (INFINITY)) in cosf()
Dsincosf.h35 abstop12 (float x) in abstop12() function
/external/llvm-project/libc/src/math/
Dsinf.cpp29 if (abstop12(y) < abstop12(pio4)) { in LLVM_LIBC_ENTRYPOINT()
32 if (unlikely(abstop12(y) < abstop12(as_float(0x39800000)))) { in LLVM_LIBC_ENTRYPOINT()
33 if (unlikely(abstop12(y) < abstop12(as_float(0x800000)))) in LLVM_LIBC_ENTRYPOINT()
40 } else if (likely(abstop12(y) < abstop12(120.0f))) { in LLVM_LIBC_ENTRYPOINT()
50 } else if (abstop12(y) < abstop12(INFINITY)) { in LLVM_LIBC_ENTRYPOINT()
Dsincosf.cpp29 if (abstop12(y) < abstop12(pio4)) { in LLVM_LIBC_ENTRYPOINT()
32 if (unlikely(abstop12(y) < abstop12(as_float(0x39800000)))) { in LLVM_LIBC_ENTRYPOINT()
33 if (unlikely(abstop12(y) < abstop12(as_float(0x800000)))) in LLVM_LIBC_ENTRYPOINT()
42 } else if (abstop12(y) < abstop12(120.0f)) { in LLVM_LIBC_ENTRYPOINT()
52 } else if (likely(abstop12(y) < abstop12(INFINITY))) { in LLVM_LIBC_ENTRYPOINT()
Dcosf.cpp29 if (abstop12(y) < abstop12(pio4)) { in LLVM_LIBC_ENTRYPOINT()
32 if (unlikely(abstop12(y) < abstop12(as_float(0x39800000)))) in LLVM_LIBC_ENTRYPOINT()
36 } else if (likely(abstop12(y) < abstop12(120.0f))) { in LLVM_LIBC_ENTRYPOINT()
46 } else if (abstop12(y) < abstop12(INFINITY)) { in LLVM_LIBC_ENTRYPOINT()
Dsincosf_utils.h39 static inline uint32_t abstop12(float x) { in abstop12() function