Home
last modified time | relevance | path

Searched refs:int_pow_fast_path (Results 1 – 4 of 4) sorted by relevance

/third_party/rust/crates/minimal-lexical/src/
Dnumber.rs71 let int_power = unsafe { F::int_pow_fast_path(shift as usize, 10) }; in try_fast_path()
Dslow.rs210 let small_power = unsafe { f64::int_pow_fast_path($counter, 10) };
225 let small_power = unsafe { f64::int_pow_fast_path($counter, 10) };
Dnum.rs160 unsafe fn int_pow_fast_path(exponent: usize, radix: u32) -> u64 { in int_pow_fast_path() method
Dbigint.rs398 let small_power = unsafe { f64::int_pow_fast_path(exp as usize, 5) }; in pow()