Home
last modified time | relevance | path

Searched refs:useconds (Results 1 – 5 of 5) sorted by relevance

/external/autotest/client/site_tests/kernel_Lmbench/
Dkernel_Lmbench.py111 useconds = float(lst[idx])
112 keyvals['us_' + bm] = useconds
/external/libmicrohttpd/src/include/
Dplatform.h154 #define usleep(useconds) (void)SleepEx((useconds)/1000, 1) argument
/external/v8/src/
Dd8-posix.cc134 int useconds = static_cast<int>(time_now.tv_usec - start_time.tv_usec); in TimeIsOut() local
135 if (seconds * 1000000 + useconds > total_time * 1000) { in TimeIsOut()
392 int useconds = 1; in WaitForChild() local
396 usleep(useconds); in WaitForChild()
397 if (useconds < 1000000) useconds <<= 1; in WaitForChild()
398 if ((read_timeout != -1 && useconds / 1000 > read_timeout) || in WaitForChild()
/external/fio/os/windows/
Dposix.c507 int usleep(useconds_t useconds) in usleep() argument
509 Sleep(useconds / 1000); in usleep()
/external/v8/tools/profviz/
Dgnuplot-4.6.3-emscripten.js2406 function _usleep(useconds) { argument
2410 var msec = useconds / 1000;