Searched refs:CLOCKS_PER_SEC (Results 1 – 3 of 3) sorted by relevance
99 #if CLOCKS_PER_SEC >= 1000000 in times()100 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()
97 #if CLOCKS_PER_SEC >= 1000000 in _times()98 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()
12 #define CLOCKS_PER_SEC 100 macro