Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libm/common/
Dexp2.c101 uint32_t abstop; in exp2() local
106 abstop = top12 (x) & 0x7ff; in exp2()
107 if (unlikely (abstop - top12 (0x1p-54) >= top12 (512.0) - top12 (0x1p-54))) in exp2()
109 if (abstop - top12 (0x1p-54) >= 0x80000000) in exp2()
113 if (abstop >= top12 (1024.0)) in exp2()
117 if (abstop >= top12 ((double) INFINITY)) in exp2()
126 abstop = 0; in exp2()
153 if (unlikely (abstop == 0)) in exp2()
Dexp.c103 uint32_t abstop; in exp() local
108 abstop = top12 (x) & 0x7ff; in exp()
109 if (unlikely (abstop - top12 (0x1p-54) >= top12 (512.0) - top12 (0x1p-54))) in exp()
111 if (abstop - top12 (0x1p-54) >= 0x80000000) in exp()
115 if (abstop >= top12 (1024.0)) in exp()
119 if (abstop >= top12 ((double) INFINITY)) in exp()
127 abstop = 0; in exp()
166 if (unlikely (abstop == 0)) in exp()
Dsf_exp2.c60 uint32_t abstop; in exp2f() local
66 abstop = top12 (x) & 0x7ff; in exp2f()
67 if (__builtin_expect (abstop >= top12 (128.0f), 0)) in exp2f()
72 if (abstop >= top12 (INFINITY)) in exp2f()
Dsf_exp.c60 uint32_t abstop; in expf() local
66 abstop = top12 (x) & 0x7ff; in expf()
67 if (__builtin_expect (abstop >= top12 (88.0f), 0)) in expf()
72 if (abstop >= top12 (INFINITY)) in expf()
Dpow.c202 uint32_t abstop; in exp_inline() local
207 abstop = top12 (x) & 0x7ff; in exp_inline()
208 if (unlikely (abstop - top12 (0x1p-54) >= top12 (512.0) - top12 (0x1p-54))) in exp_inline()
210 if (abstop - top12 (0x1p-54) >= 0x80000000) in exp_inline()
217 if (abstop >= top12 (1024.0)) in exp_inline()
226 abstop = 0; in exp_inline()
267 if (unlikely (abstop == 0)) in exp_inline()