Home
last modified time | relevance | path

Searched refs:PI_LO (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/libm/src/math/
Datan2f.rs20 const PI_LO: f32 = -8.7422776573e-08; /* 0xb3bbbd2e */ constant
88 2 => PI - (z - PI_LO), /* atan(+,-) */ in atan2f()
89 _ => (z - PI_LO) - PI, /* case 3 */ /* atan(-,-) */ in atan2f()
Datan2.rs44 const PI_LO: f64 = 1.2246467991473531772E-16; /* 0x3CA1A626, 0x33145C07 */ constant
113 2 => PI - (z - PI_LO), /* atan(+,-) */ in atan2()
114 _ => (z - PI_LO) - PI, /* atan(-,-) */ in atan2()