Home
last modified time | relevance | path

Searched refs:hi64 (Results 1 - 6 of 6) sorted by relevance

/third_party/rust/crates/minimal-lexical/tests/
H A Dvec_tests.rs41 assert_eq!(x.hi64(), (0x8000000280000000, false)); in simple_test()
43 assert_eq!(x.hi64(), (0x8000000000000002, true)); in simple_test()
52 assert_eq!(VecType::from_u64(U64_MAX).hi64(), (U64_MAX, false)); in simple_test()
57 assert_eq!(VecType::from_u64(0xA).hi64(), (0xA000000000000000, false)); in hi64_test()
58 assert_eq!(VecType::from_u64(0xAB).hi64(), (0xAB00000000000000, false)); in hi64_test()
59 assert_eq!(VecType::from_u64(0xAB00000000).hi64(), (0xAB00000000000000, false)); in hi64_test()
60 assert_eq!(VecType::from_u64(0xA23456789A).hi64(), (0xA23456789A000000, false)); in hi64_test()
/third_party/rust/crates/minimal-lexical/src/
H A Dheapvec.rs105 pub fn hi64(&self) -> (u64, bool) { in hi64() functions
106 bigint::hi64(&self.data) in hi64()
H A Dstackvec.rs213 pub fn hi64(&self) -> (u64, bool) { in hi64() functions
214 bigint::hi64(self) in hi64()
H A Dbigint.rs78 pub fn hi64(&self) -> (u64, bool) { in hi64() functions
79 self.data.hi64() in hi64()
310 pub fn hi64(x: &[Limb]) -> (u64, bool) { in hi64() functions
H A Dslow.rs77 // hi64 checks **all** the remaining bits after the mantissa, in positive_digit_comp()
79 let (mant, is_truncated) = bigmant.hi64(); in positive_digit_comp()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/
H A Dduration.cc267 int64_t hi64 = time_internal::GetRepHi(ans); in ScaleDouble()
268 if (!SafeAddRepHi(hi64, lo64 / kTicksPerSecond, &ans)) return ans; in ScaleDouble()
269 hi64 = time_internal::GetRepHi(ans); in ScaleDouble()
271 NormalizeTicks(&hi64, &lo64); in ScaleDouble()
272 return time_internal::MakeDuration(hi64, lo64); in ScaleDouble()

Completed in 5 milliseconds