Searched refs:CLOCKS_PER_SEC (Results 1 – 8 of 8) sorted by relevance
7 #define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */ macro
33 # define CLOCKS_PER_SEC 1000000l macro
34 CLOCKS_PER_SEC, sysconf(_SC_CLK_TCK)); in main()
100 eabi_constant (CLOCKS_PER_SEC);
399 #if CLOCKS_PER_SEC != 1000000L in libc_hidden_def()400 #error unexpected value for CLOCKS_PER_SEC! in libc_hidden_def()405 # if __UCLIBC_CLK_TCK_CONST > CLOCKS_PER_SEC in libc_hidden_def()406 # error __UCLIBC_CLK_TCK_CONST > CLOCKS_PER_SEC! in libc_hidden_def()436 #elif ((CLOCKS_PER_SEC % __UCLIBC_CLK_TCK_CONST) == 0) in libc_hidden_def()439 return ((t * (CLOCKS_PER_SEC/__UCLIBC_CLK_TCK_CONST)) & LONG_MAX); in libc_hidden_def()450 return ((((t / __UCLIBC_CLK_TCK_CONST) * CLOCKS_PER_SEC) in libc_hidden_def()451 + ((((t % __UCLIBC_CLK_TCK_CONST) * CLOCKS_PER_SEC) in libc_hidden_def()
46 # define CLK_TCK CLOCKS_PER_SEC
187 lua_pushnumber(L, ((lua_Number)clock())/(lua_Number)CLOCKS_PER_SEC); in os_clock()
Completed in 9 milliseconds