Home
last modified time | relevance | path

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

/external/rust/crates/libm/src/math/
Dfloor.rs3 const TOINT: f64 = 1. / f64::EPSILON; constant
26 x - TOINT + TOINT - x in floor()
28 x + TOINT - TOINT - x in floor()
Dceil.rs3 const TOINT: f64 = 1. / f64::EPSILON; constant
27 x - TOINT + TOINT - x in ceil()
29 x + TOINT - TOINT - x in ceil()
Droundf.rs3 const TOINT: f32 = 1.0 / f32::EPSILON; constant
15 force_eval!(x + TOINT); in roundf()
21 y = x + TOINT - TOINT - x; in roundf()
Dround.rs3 const TOINT: f64 = 1.0 / f64::EPSILON; constant
16 force_eval!(x + TOINT); in round()
22 y = x + TOINT - TOINT - x; in round()
Drem_pio2f.rs21 const TOINT: f64 = 1.5 / f64::EPSILON; constant
46 let f_n = x64 * INV_PIO2 + TOINT - TOINT; in rem_pio2f()