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

/fuchsia/zircon/third_party/ulib/musl/src/math/
H A Dceil.c8 static const double_t toint = 1 / EPS; variable
22 y = x - toint + toint - x;
24 y = x + toint - toint - x;
H A Dceill.c9 static const long double toint = 1 / LDBL_EPSILON; variable
20 y = x - toint + toint - x;
22 y = x + toint - toint - x;
H A Dfloor.c8 static const double_t toint = 1 / EPS; variable
22 y = x - toint + toint - x;
24 y = x + toint - toint - x;
H A Dfloorl.c9 static const long double toint = 1 / LDBL_EPSILON; variable
20 y = x - toint + toint - x;
22 y = x + toint - toint - x;
H A Drintf.c12 static const float_t toint = 1 / EPS; variable
26 y = x - toint + toint;
28 y = x + toint - toint;
H A Drint.c10 static const double_t toint = 1 / EPS; variable
24 y = x - toint + toint;
26 y = x + toint - toint;
H A Drintl.c9 static const long double toint = 1 / LDBL_EPSILON; variable
20 y = x - toint + toint;
22 y = x + toint - toint;
H A Dtruncl.c9 static const long double toint = 1 / LDBL_EPSILON; variable
26 y = x + toint - toint - x;
H A Droundf.c10 static const float_t toint = 1 / EPS; variable
25 FORCE_EVAL(x + toint);
28 y = x + toint - toint - x;
H A Dround.c8 static const double_t toint = 1 / EPS; variable
24 FORCE_EVAL(x + toint);
27 y = x + toint - toint - x;
H A Droundl.c9 static const long double toint = 1 / LDBL_EPSILON; variable
21 FORCE_EVAL(x + toint);
24 y = x + toint - toint - x;
H A Dmodfl.c14 static const long double toint = 1 / LDBL_EPSILON; variable
39 y = absx + toint - toint - absx;
/fuchsia/zircon/third_party/ulib/musl/third_party/math/
H A D__rem_pio2f.c36 static const double toint = 1.5 / EPS, variable
55 fn = (double_t)x * invpio2 + toint - toint;
H A D__rem_pio2l.c23 static const long double toint = 1.5 / LDBL_EPSILON; variable
85 fn = x * invpio2 + toint - toint;
H A D__rem_pio2.c37 static const double toint = 1.5 / EPS, variable
122 fn = (double_t)x * invpio2 + toint - toint;

Completed in 87 milliseconds