Home
last modified time | relevance | path

Searched refs:abstop (Results 1 – 12 of 12) sorted by relevance

/external/arm-optimized-routines/math/
Dexp2.c78 uint32_t abstop; in exp2() local
83 abstop = top12 (x) & 0x7ff; in exp2()
84 if (unlikely (abstop - top12 (0x1p-54) >= top12 (512.0) - top12 (0x1p-54))) in exp2()
86 if (abstop - top12 (0x1p-54) >= 0x80000000) in exp2()
90 if (abstop >= top12 (1024.0)) in exp2()
94 if (abstop >= top12 (INFINITY)) in exp2()
103 abstop = 0; in exp2()
130 if (unlikely (abstop == 0)) in exp2()
Dexp.c82 uint32_t abstop; in exp_inline() local
87 abstop = top12 (x) & 0x7ff; in exp_inline()
88 if (unlikely (abstop - top12 (0x1p-54) >= top12 (512.0) - top12 (0x1p-54))) in exp_inline()
90 if (abstop - top12 (0x1p-54) >= 0x80000000) in exp_inline()
94 if (abstop >= top12 (1024.0)) in exp_inline()
98 if (abstop >= top12 (INFINITY)) in exp_inline()
106 abstop = 0; in exp_inline()
148 if (unlikely (abstop == 0)) in exp_inline()
Dexp2f.c36 uint32_t abstop; in exp2f() local
42 abstop = top12 (x) & 0x7ff; in exp2f()
43 if (unlikely (abstop >= top12 (128.0f))) in exp2f()
48 if (abstop >= top12 (INFINITY)) in exp2f()
Dexpf.c36 uint32_t abstop; in expf() local
42 abstop = top12 (x) & 0x7ff; in expf()
43 if (unlikely (abstop >= top12 (88.0f))) in expf()
48 if (abstop >= top12 (INFINITY)) in expf()
Dpow.c175 uint32_t abstop; in exp_inline() local
180 abstop = top12 (x) & 0x7ff; in exp_inline()
181 if (unlikely (abstop - top12 (0x1p-54) >= top12 (512.0) - top12 (0x1p-54))) in exp_inline()
183 if (abstop - top12 (0x1p-54) >= 0x80000000) in exp_inline()
190 if (abstop >= top12 (1024.0)) in exp_inline()
199 abstop = 0; in exp_inline()
240 if (unlikely (abstop == 0)) in exp_inline()
/external/llvm-project/libc/AOR_v20.02/math/
Dexp2.c79 uint32_t abstop; in exp2() local
84 abstop = top12 (x) & 0x7ff; in exp2()
85 if (unlikely (abstop - top12 (0x1p-54) >= top12 (512.0) - top12 (0x1p-54))) in exp2()
87 if (abstop - top12 (0x1p-54) >= 0x80000000) in exp2()
91 if (abstop >= top12 (1024.0)) in exp2()
95 if (abstop >= top12 (INFINITY)) in exp2()
104 abstop = 0; in exp2()
131 if (unlikely (abstop == 0)) in exp2()
Dexp.c83 uint32_t abstop; in exp_inline() local
88 abstop = top12 (x) & 0x7ff; in exp_inline()
89 if (unlikely (abstop - top12 (0x1p-54) >= top12 (512.0) - top12 (0x1p-54))) in exp_inline()
91 if (abstop - top12 (0x1p-54) >= 0x80000000) in exp_inline()
95 if (abstop >= top12 (1024.0)) in exp_inline()
99 if (abstop >= top12 (INFINITY)) in exp_inline()
107 abstop = 0; in exp_inline()
149 if (unlikely (abstop == 0)) in exp_inline()
Dexp2f.c37 uint32_t abstop; in exp2f() local
43 abstop = top12 (x) & 0x7ff; in exp2f()
44 if (unlikely (abstop >= top12 (128.0f))) in exp2f()
49 if (abstop >= top12 (INFINITY)) in exp2f()
Dexpf.c37 uint32_t abstop; in expf() local
43 abstop = top12 (x) & 0x7ff; in expf()
44 if (unlikely (abstop >= top12 (88.0f))) in expf()
49 if (abstop >= top12 (INFINITY)) in expf()
Dpow.c176 uint32_t abstop; in exp_inline() local
181 abstop = top12 (x) & 0x7ff; in exp_inline()
182 if (unlikely (abstop - top12 (0x1p-54) >= top12 (512.0) - top12 (0x1p-54))) in exp_inline()
184 if (abstop - top12 (0x1p-54) >= 0x80000000) in exp_inline()
191 if (abstop >= top12 (1024.0)) in exp_inline()
200 abstop = 0; in exp_inline()
241 if (unlikely (abstop == 0)) in exp_inline()
/external/llvm-project/libc/src/math/
Dexp2f.cpp24 uint32_t abstop; in LLVM_LIBC_ENTRYPOINT() local
30 abstop = top12_bits(x) & 0x7ff; in LLVM_LIBC_ENTRYPOINT()
31 if (unlikely(abstop >= top12_bits(128.0f))) { in LLVM_LIBC_ENTRYPOINT()
35 if (abstop >= top12_bits(INFINITY)) in LLVM_LIBC_ENTRYPOINT()
Dexpf.cpp25 uint32_t abstop; in LLVM_LIBC_ENTRYPOINT() local
31 abstop = top12_bits(x) & 0x7ff; in LLVM_LIBC_ENTRYPOINT()
32 if (unlikely(abstop >= top12_bits(88.0f))) { in LLVM_LIBC_ENTRYPOINT()
36 if (abstop >= top12_bits(INFINITY)) in LLVM_LIBC_ENTRYPOINT()