Lines Matching refs:rem
390 s32 rem; in ns_to_timespec() local
395 ts.tv_sec = div_s64_rem(nsec, NSEC_PER_SEC, &rem); in ns_to_timespec()
396 if (unlikely(rem < 0)) { in ns_to_timespec()
398 rem += NSEC_PER_SEC; in ns_to_timespec()
400 ts.tv_nsec = rem; in ns_to_timespec()
470 s32 rem; in ns_to_timespec64() local
475 ts.tv_sec = div_s64_rem(nsec, NSEC_PER_SEC, &rem); in ns_to_timespec64()
476 if (unlikely(rem < 0)) { in ns_to_timespec64()
478 rem += NSEC_PER_SEC; in ns_to_timespec64()
480 ts.tv_nsec = rem; in ns_to_timespec64()
602 u32 rem; in jiffies_to_timespec() local
604 NSEC_PER_SEC, &rem); in jiffies_to_timespec()
605 value->tv_nsec = rem; in jiffies_to_timespec()
639 u32 rem; in jiffies_to_timeval() local
642 NSEC_PER_SEC, &rem); in jiffies_to_timeval()
643 value->tv_usec = rem / NSEC_PER_USEC; in jiffies_to_timeval()