Home
last modified time | relevance | path

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

/aosp12/bionic/libc/bionic/
H A Dclock.cpp39 return (ts.tv_sec * CLOCKS_PER_SEC) + (ts.tv_nsec / (NS_PER_S / CLOCKS_PER_SEC)); in clock()
/aosp12/system/libufdt/tests/src/
H A Dfdt_overlay_test_app.c60 double cpu_time_used = ((double)(end - start)) / CLOCKS_PER_SEC; in apply_overlay_files()
H A Dufdt_overlay_test_app.c63 double cpu_time_used = ((double)(end - start)) / CLOCKS_PER_SEC; in apply_overlay_files()
/aosp12/bionic/libc/include/
H A Dtime.h38 #define CLOCKS_PER_SEC 1000000 macro
/aosp12/bionic/tests/headers/posix/
H A Dtime_h.c67 MACRO(CLOCKS_PER_SEC); in time_h()
/aosp12/frameworks/av/media/codecs/amrnb/enc/test/
H A Damrnb_enc_test.cpp149 printf("\n%2.5lf seconds\n", (double)duration/CLOCKS_PER_SEC); in encode()
/aosp12/frameworks/av/media/codecs/amrwb/enc/SampleCode/
H A DAMRWB_E_SAMPLE.c251 printf( "\n%2.5f seconds\n", (double)duration/CLOCKS_PER_SEC); in encode()
/aosp12/bionic/tests/
H A Dtime_test.cpp860 ASSERT_LT(t1 - t0, N * mean_limit_ms * (CLOCKS_PER_SEC / 1000)); in TEST()