Home
last modified time | relevance | path

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

/haiku/src/system/libroot/posix/musl/math/
H A Dexp2.c72 uint32_t abstop; in exp2() local
76 abstop = top12(x) & 0x7ff; in exp2()
77 if (predict_false(abstop - top12(0x1p-54) >= top12(512.0) - top12(0x1p-54))) { in exp2()
78 if (abstop - top12(0x1p-54) >= 0x80000000) in exp2()
82 if (abstop >= top12(1024.0)) { in exp2()
85 if (abstop >= top12(INFINITY)) in exp2()
94 abstop = 0; in exp2()
115 if (predict_false(abstop == 0)) in exp2()
H A Dexp.c74 uint32_t abstop; in exp() local
78 abstop = top12(x) & 0x7ff; in exp()
79 if (predict_false(abstop - top12(0x1p-54) >= top12(512.0) - top12(0x1p-54))) { in exp()
80 if (abstop - top12(0x1p-54) >= 0x80000000) in exp()
84 if (abstop >= top12(1024.0)) { in exp()
87 if (abstop >= top12(INFINITY)) in exp()
95 abstop = 0; in exp()
128 if (predict_false(abstop == 0)) in exp()
H A Dexp2f.c35 uint32_t abstop; in exp2f() local
40 abstop = top12(x) & 0x7ff; in exp2f()
41 if (predict_false(abstop >= top12(128.0f))) { in exp2f()
45 if (abstop >= top12(INFINITY)) in exp2f()
H A Dexpf.c35 uint32_t abstop; in expf() local
40 abstop = top12(x) & 0x7ff; in expf()
41 if (predict_false(abstop >= top12(88.0f))) { in expf()
45 if (abstop >= top12(INFINITY)) in expf()
H A Dlrint.c56 uint32_t abstop = asuint64(x)>>32 & 0x7fffffff; in lrint() local
59 if (abstop < 0x41dfffff) { in lrint()
H A Dpow.c168 uint32_t abstop; in exp_inline() local
173 abstop = top12(x) & 0x7ff; in exp_inline()
174 if (predict_false(abstop - top12(0x1p-54) >= in exp_inline()
176 if (abstop - top12(0x1p-54) >= 0x80000000) { in exp_inline()
182 if (abstop >= top12(1024.0)) { in exp_inline()
190 abstop = 0; in exp_inline()
225 if (predict_false(abstop == 0)) in exp_inline()