Lines Matching refs:__ct
28 #define cputime_div(__ct, divisor) div_u64((__force u64)__ct, divisor) argument
29 #define cputime_div_rem(__ct, divisor, remainder) \ argument
30 div_u64_rem((__force u64)__ct, divisor, remainder);
35 #define cputime_to_jiffies(__ct) \ argument
36 cputime_div(__ct, NSEC_PER_SEC / HZ)
37 #define cputime_to_scaled(__ct) (__ct) argument
40 #define cputime64_to_jiffies64(__ct) \ argument
41 cputime_div(__ct, NSEC_PER_SEC / HZ)
49 #define cputime_to_nsecs(__ct) \ argument
50 (__force u64)(__ct)
58 #define cputime_to_usecs(__ct) \ argument
59 cputime_div(__ct, NSEC_PER_USEC)
68 #define cputime_to_secs(__ct) \ argument
69 cputime_div(__ct, NSEC_PER_SEC)
109 #define cputime_to_clock_t(__ct) \ argument
110 cputime_div(__ct, (NSEC_PER_SEC / USER_HZ))
117 #define cputime64_to_clock_t(__ct) \ argument
118 cputime_to_clock_t((__force cputime_t)__ct)