Home
last modified time | relevance | path

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

/picolibc-3.7.0-3.6.0/newlib/libm/common/
Dexp2.c93 top12 (double x) in top12() function
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()
Dexp.c95 top12 (double x) in top12() function
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()
Dsf_exp2.c52 top12 (float x) in top12() function
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.c52 top12 (float x) in top12() function
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.c51 top12 (double x) in top12() function
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()
308 topx = top12 (x); in pow()
309 topy = top12 (y); in pow()