Searched refs:tms (Results 1 – 3 of 3) sorted by relevance
98 __weak clock_t times(struct tms *tms) { in times() argument100 tms->tms_utime = (clock_t)(to_us_since_boot(get_absolute_time()) * (CLOCKS_PER_SEC / 1000000)); in times()102 tms->tms_utime = (clock_t)(to_us_since_boot(get_absolute_time()) / (1000000 / CLOCKS_PER_SEC)); in times()104 tms->tms_stime = 0; in times()105 tms->tms_cutime = 0; in times()106 tms->tms_cstime = 0; in times()
96 __weak int _times(struct tms *tms) { in _times() argument98 tms->tms_utime = (clock_t)(to_us_since_boot(get_absolute_time()) * (CLOCKS_PER_SEC / 1000000)); in _times()100 tms->tms_utime = (clock_t)(to_us_since_boot(get_absolute_time()) / (1000000 / CLOCKS_PER_SEC)); in _times()102 tms->tms_stime = 0; in _times()103 tms->tms_cutime = 0; in _times()104 tms->tms_cstime = 0; in _times()
16 struct tms { struct