Searched refs:toint (Results 1 - 16 of 16) sorted by relevance

/haiku/src/system/libroot/posix/musl/math/
H A Dceil.c8 static const double_t toint = 1/EPS; variable
20 y = x - toint + toint - x;
22 y = x + toint - toint - x;
H A Dceill.c10 static const long double toint = 1/LDBL_EPSILON; variable
22 y = x - toint + toint - x;
24 y = x + toint - toint - x;
H A Dfloor.c8 static const double_t toint = 1/EPS; variable
20 y = x - toint + toint - x;
22 y = x + toint - toint - x;
H A Dfloorl.c10 static const long double toint = 1/LDBL_EPSILON; variable
22 y = x - toint + toint - x;
24 y = x + toint - toint - x;
H A Drint.c10 static const double_t toint = 1/EPS; variable
22 y = x - toint + toint;
24 y = x + toint - toint;
H A Drintf.c12 static const float_t toint = 1/EPS; variable
24 y = x - toint + toint;
26 y = x + toint - toint;
H A Drintl.c10 static const long double toint = 1/LDBL_EPSILON; variable
22 y = x - toint + toint;
24 y = x + toint - toint;
H A Dtruncl.c10 static const long double toint = 1/LDBL_EPSILON; variable
28 y = x + toint - toint - x;
H A Dround.c8 static const double_t toint = 1/EPS; variable
22 FORCE_EVAL(x + toint);
25 y = x + toint - toint - x;
H A Droundf.c10 static const float_t toint = 1/EPS; variable
23 FORCE_EVAL(x + toint);
26 y = x + toint - toint - x;
H A Droundl.c10 static const long double toint = 1/LDBL_EPSILON; variable
23 FORCE_EVAL(x + toint);
26 y = x + toint - toint - x;
H A Dlrint.c61 double_t toint = asdouble(asuint64(1/EPS) | sign); local
62 double_t y = x + toint - toint;
H A Dmodfl.c15 static const long double toint = 1/LDBL_EPSILON; variable
41 y = absx + toint - toint - absx;
H A D__rem_pio2f.c37 toint = 1.5/EPS, variable
54 fn = (double_t)x*invpio2 + toint - toint;
H A D__rem_pio2.c38 toint = 1.5/EPS, variable
121 fn = (double_t)x*invpio2 + toint - toint;
H A D__rem_pio2l.c23 static const long double toint = 1.5/LDBL_EPSILON; variable
80 fn = x*invpio2 + toint - toint;

Completed in 61 milliseconds