Lines Matching refs:rem
392 s32 rem; in ns_to_timespec() local
397 ts.tv_sec = div_s64_rem(nsec, NSEC_PER_SEC, &rem); in ns_to_timespec()
398 if (unlikely(rem < 0)) { in ns_to_timespec()
400 rem += NSEC_PER_SEC; in ns_to_timespec()
402 ts.tv_nsec = rem; in ns_to_timespec()
472 s32 rem; in ns_to_timespec64() local
477 ts.tv_sec = div_s64_rem(nsec, NSEC_PER_SEC, &rem); in ns_to_timespec64()
478 if (unlikely(rem < 0)) { in ns_to_timespec64()
480 rem += NSEC_PER_SEC; in ns_to_timespec64()
482 ts.tv_nsec = rem; in ns_to_timespec64()
581 u32 rem; in jiffies_to_timespec64() local
583 NSEC_PER_SEC, &rem); in jiffies_to_timespec64()
584 value->tv_nsec = rem; in jiffies_to_timespec64()
618 u32 rem; in jiffies_to_timeval() local
621 NSEC_PER_SEC, &rem); in jiffies_to_timeval()
622 value->tv_usec = rem / NSEC_PER_USEC; in jiffies_to_timeval()