Lines Matching full:jiffies
71 * but that can only take up to, say, 4-byte variables. jiffies being part of
82 extern unsigned long volatile __jiffy_data jiffies;
89 return (u64)jiffies;
119 * Have the 32 bit jiffies value wrap 5 minutes after boot
120 * so jiffies wrap bugs show up earlier.
125 * Change timeval to jiffies, trying to avoid the
132 * to wait "jiffies+1" in order to guarantee that we wait
133 * at _least_ "jiffies" - so "jiffies+1" had better still
140 * values the update wall clock code uses as the jiffies size. This value
158 * Suppose, for example, we want to convert from seconds to jiffies
159 * where jiffies is defined in nanoseconds as NSEC_PER_JIFFIE. The
228 * in jiffies (albit scaled), it is nothing but the bits we will shift
247 * Convert jiffies to milliseconds and back.
328 jiffies_to_timespec(const unsigned long jiffies, struct timespec *value)
331 * Convert jiffies to nanoseconds and separate with
334 u64 nsec = (u64)jiffies * TICK_NSEC;
366 jiffies_to_timeval(const unsigned long jiffies, struct timeval *value)
369 * Convert jiffies to nanoseconds and separate with
372 u64 nsec = (u64)jiffies * TICK_NSEC;
381 * Convert jiffies/jiffies_64 to clock_t and back.