Searched refs:num_lo (Results 1 – 1 of 1) sorted by relevance
286 uint32_t num_lo = time_internal::GetRepLo(num); in IDivFastPath() local293 *q = num_hi * 1000000000 + num_lo / kTicksPerNanosecond; in IDivFastPath()294 *rem = time_internal::MakeDuration(0, num_lo % den_lo); in IDivFastPath()300 *q = num_hi * 10000000 + num_lo / (100 * kTicksPerNanosecond); in IDivFastPath()301 *rem = time_internal::MakeDuration(0, num_lo % den_lo); in IDivFastPath()307 *q = num_hi * 1000000 + num_lo / (1000 * kTicksPerNanosecond); in IDivFastPath()308 *rem = time_internal::MakeDuration(0, num_lo % den_lo); in IDivFastPath()314 *q = num_hi * 1000 + num_lo / (1000000 * kTicksPerNanosecond); in IDivFastPath()315 *rem = time_internal::MakeDuration(0, num_lo % den_lo); in IDivFastPath()323 *rem = time_internal::MakeDuration(0, num_lo); in IDivFastPath()[all …]