Home
last modified time | relevance | path

Searched refs:get_high_word (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/libm/src/math/
Dj0.rs57 use super::{cos, fabs, get_high_word, get_low_word, log, sin, sqrt};
118 ix = get_high_word(x); in j0()
172 ix = get_high_word(x); in y0()
289 ix = get_high_word(x); in pzero()
401 ix = get_high_word(x); in qzero()
Djn.rs37 use super::{cos, fabs, get_high_word, get_low_word, j0, j1, log, sin, sqrt, y0, y1};
51 ix = get_high_word(x); in jn()
265 ix = get_high_word(x); in yn()
327 ib = get_high_word(b); in yn()
333 ib = get_high_word(b); in yn()
Dj1.rs57 use super::{cos, fabs, get_high_word, get_low_word, log, sin, sqrt};
123 ix = get_high_word(x); in j1()
168 ix = get_high_word(x); in y1()
281 ix = get_high_word(x); in pone()
393 ix = get_high_word(x); in qone()
Dsincos.rs13 use super::{get_high_word, k_cos, k_sin, rem_pio2};
20 ix = get_high_word(x); in sincos()
Dasin.rs42 use super::{fabs, get_high_word, get_low_word, sqrt, with_set_low_word};
77 hx = get_high_word(x); in asin()
Derf.rs1 use super::{exp, fabs, get_high_word, with_set_low_word};
230 ix = get_high_word(x); in erf()
279 ix = get_high_word(x); in erfc()
Dpow.rs60 use super::{fabs, get_high_word, scalbn, sqrt, with_set_high_word, with_set_low_word};
279 ix = get_high_word(ax) as i32; in pow()
398 j = get_high_word(z) as i32; in pow()
Dmod.rs322 fn get_high_word(x: f64) -> u32 { in get_high_word() function