Home
last modified time | relevance | path

Searched refs:umul128 (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/ryu/src/
Dd2s_small_table.rs160 let (low1, mut high1) = umul128(m, mul.1); in compute_pow5()
161 let (low0, high0) = umul128(m, mul.0); in compute_pow5()
190 let (low1, mut high1) = umul128(m, mul.1); in compute_inv_pow5()
191 let (low0, high0) = umul128(m, mul.0 - 1); in compute_inv_pow5()
Dd2s_intrinsics.rs26 pub fn umul128(a: u64, b: u64) -> (u64, u64) { in umul128() function
145 let (lo, tmp) = umul128(m, mul.0); in mul_shift_all_64()
146 let (mut mid, mut hi) = umul128(m, mul.1); in mul_shift_all_64()
/external/fmtlib/include/fmt/
Dformat-inl.h1649 FMT_SAFEBUFFERS inline uint128_wrapper umul128(uint64_t x,
1686 return umul128(x, y).high();
1694 uint128_wrapper g0 = umul128(x, y.high());
1910 uint128_wrapper recovered_cache = umul128(base_cache.high(), pow5);
1912 umul128(base_cache.low() - (kb < 0 ? 1u : 0u), pow5);