Home
last modified time | relevance | path

Searched refs:CLOCKS_PER_SEC (Results 1 – 3 of 3) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/pico_clib_interface/
Dpicolibc_interface.c99 #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()
Dnewlib_interface.c97 #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()
/hal_rpi_pico-latest/src/rp2_common/pico_clib_interface/include/llvm_libc/sys/
Dtimes.h12 #define CLOCKS_PER_SEC 100 macro