Searched refs:tiny (Results 1 - 4 of 4) sorted by relevance

/seL4-test-master/projects/musllibc/src/math/
H A Dsqrtf.c18 static const float tiny = 1.0e-30; variable
71 z = 1.0f - tiny; /* raise inexact flag */
73 z = 1.0f + tiny;
H A Dpow.c68 tiny = 1.0e-300, variable
200 return hy < 0 ? huge*huge : tiny*tiny;
202 return hy > 0 ? huge*huge : tiny*tiny;
206 return hy < 0 ? s*huge*huge : s*tiny*tiny;
208 return hy > 0 ? s*huge*huge : s*tiny*tiny;
209 /* now |1-x| is tiny <
[all...]
H A Dpowf.c24 tiny = 1.0e-30, variable
132 return hy < 0 ? sn*huge*huge : sn*tiny*tiny;
134 return hy > 0 ? sn*huge*huge : sn*tiny*tiny;
135 /* now |1-x| is tiny <= 2**-20, suffice to compute
221 return sn*tiny*tiny; /* underflow */
224 return sn*tiny*tiny; /* underflo
[all...]
H A Dsqrt.c69 * huge + tiny is equal to huge, and whether huge - tiny is
70 * equal to huge for some floating point number "huge" and "tiny".
81 static const double tiny = 1.0e-300; variable
164 z = 1.0 - tiny; /* raise inexact flag */
166 z = 1.0 + tiny;

Completed in 78 milliseconds