Searched refs:den_lo (Results 1 – 1 of 1) sorted by relevance
288 uint32_t den_lo = time_internal::GetRepLo(den); in IDivFastPath() local290 if (den_hi == 0 && den_lo == kTicksPerNanosecond) { in IDivFastPath()294 *rem = time_internal::MakeDuration(0, num_lo % den_lo); in IDivFastPath()297 } else if (den_hi == 0 && den_lo == 100 * kTicksPerNanosecond) { in IDivFastPath()301 *rem = time_internal::MakeDuration(0, num_lo % den_lo); in IDivFastPath()304 } else if (den_hi == 0 && den_lo == 1000 * kTicksPerNanosecond) { in IDivFastPath()308 *rem = time_internal::MakeDuration(0, num_lo % den_lo); in IDivFastPath()311 } else if (den_hi == 0 && den_lo == 1000000 * kTicksPerNanosecond) { in IDivFastPath()315 *rem = time_internal::MakeDuration(0, num_lo % den_lo); in IDivFastPath()318 } else if (den_hi > 0 && den_lo == 0) { in IDivFastPath()