Searched refs:cputime_to_clock_t (Results 1 – 7 of 7) sorted by relevance
/linux-4.1.27/include/asm-generic/ |
D | cputime_nsecs.h | 109 #define cputime_to_clock_t(__ct) \ macro 118 cputime_to_clock_t((__force cputime_t)__ct)
|
D | cputime_jiffies.h | 65 #define cputime_to_clock_t(__ct) \ macro
|
/linux-4.1.27/fs/proc/ |
D | array.c | 474 seq_put_decimal_ull(m, ' ', cputime_to_clock_t(utime)); in do_task_stat() 475 seq_put_decimal_ull(m, ' ', cputime_to_clock_t(stime)); in do_task_stat() 476 seq_put_decimal_ll(m, ' ', cputime_to_clock_t(cutime)); in do_task_stat() 477 seq_put_decimal_ll(m, ' ', cputime_to_clock_t(cstime)); in do_task_stat() 519 seq_put_decimal_ull(m, ' ', cputime_to_clock_t(gtime)); in do_task_stat() 520 seq_put_decimal_ll(m, ' ', cputime_to_clock_t(cgtime)); in do_task_stat()
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | cputime.h | 209 static inline unsigned long cputime_to_clock_t(const cputime_t ct) in cputime_to_clock_t() function 231 #define cputime64_to_clock_t(ct) cputime_to_clock_t((cputime_t)(ct))
|
/linux-4.1.27/arch/s390/include/asm/ |
D | cputime.h | 122 static inline clock_t cputime_to_clock_t(cputime_t cputime) in cputime_to_clock_t() function
|
/linux-4.1.27/kernel/ |
D | sys.c | 889 tms->tms_utime = cputime_to_clock_t(tgutime); in do_sys_times() 890 tms->tms_stime = cputime_to_clock_t(tgstime); in do_sys_times() 891 tms->tms_cutime = cputime_to_clock_t(cutime); in do_sys_times() 892 tms->tms_cstime = cputime_to_clock_t(cstime); in do_sys_times()
|
D | signal.c | 1668 info.si_utime = cputime_to_clock_t(utime + tsk->signal->utime); in do_notify_parent() 1669 info.si_stime = cputime_to_clock_t(stime + tsk->signal->stime); in do_notify_parent() 1753 info.si_utime = cputime_to_clock_t(utime); in do_notify_parent_cldstop() 1754 info.si_stime = cputime_to_clock_t(stime); in do_notify_parent_cldstop()
|