Lines Matching refs:rem
455 s32 rem; in ns_to_timespec() local
460 ts.tv_sec = div_s64_rem(nsec, NSEC_PER_SEC, &rem); in ns_to_timespec()
461 if (unlikely(rem < 0)) { in ns_to_timespec()
463 rem += NSEC_PER_SEC; in ns_to_timespec()
465 ts.tv_nsec = rem; in ns_to_timespec()
546 s32 rem; in ns_to_timespec64() local
551 ts.tv_sec = div_s64_rem(nsec, NSEC_PER_SEC, &rem); in ns_to_timespec64()
552 if (unlikely(rem < 0)) { in ns_to_timespec64()
554 rem += NSEC_PER_SEC; in ns_to_timespec64()
556 ts.tv_nsec = rem; in ns_to_timespec64()
655 u32 rem; in jiffies_to_timespec64() local
657 NSEC_PER_SEC, &rem); in jiffies_to_timespec64()
658 value->tv_nsec = rem; in jiffies_to_timespec64()
692 u32 rem; in jiffies_to_timeval() local
695 NSEC_PER_SEC, &rem); in jiffies_to_timeval()
696 value->tv_usec = rem / NSEC_PER_USEC; in jiffies_to_timeval()