Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/abseil-cpp/absl/time/
Dduration.cc287 int64_t den_hi = time_internal::GetRepHi(den); in IDivFastPath() local
290 if (den_hi == 0 && den_lo == kTicksPerNanosecond) { in IDivFastPath()
297 } else if (den_hi == 0 && den_lo == 100 * kTicksPerNanosecond) { in IDivFastPath()
304 } else if (den_hi == 0 && den_lo == 1000 * kTicksPerNanosecond) { in IDivFastPath()
311 } else if (den_hi == 0 && den_lo == 1000000 * kTicksPerNanosecond) { in IDivFastPath()
318 } else if (den_hi > 0 && den_lo == 0) { in IDivFastPath()
321 if (den_hi == 1) { in IDivFastPath()
326 *q = num_hi / den_hi; in IDivFastPath()
327 *rem = time_internal::MakeDuration(num_hi % den_hi, num_lo); in IDivFastPath()
333 int64_t quotient = num_hi / den_hi; in IDivFastPath()
[all …]