Searched refs:useconds (Results 1 – 8 of 8) sorted by relevance
/third_party/musl/porting/liteos_a/user/src/thread/ |
D | __timedwait.c | 14 unsigned int useconds = 0xffffffffU; in __futex4_cp() local 29 useconds = (to->tv_sec * 1000000 + to->tv_nsec / 1000); in __futex4_cp() 30 if ((useconds == 0) && (to->tv_nsec != 0)) { in __futex4_cp() 31 useconds = 1; in __futex4_cp() 35 r = __syscall_cp(SYS_futex, addr, op, val, useconds); in __futex4_cp() 37 return __syscall_cp(SYS_futex, addr, op & ~FUTEX_PRIVATE, val, useconds); in __futex4_cp()
|
/third_party/musl/src/unistd/ |
D | usleep.c | 5 int usleep(unsigned useconds) in usleep() argument 8 .tv_sec = useconds/1000000, in usleep() 9 .tv_nsec = (useconds%1000000)*1000 in usleep()
|
/third_party/skia/third_party/externals/microhttpd/src/include/ |
D | platform.h | 154 #define usleep(useconds) (void)SleepEx((useconds)/1000, 1) argument
|
/third_party/python/Include/ |
D | datetime.h | 242 #define PyDelta_FromDSU(days, seconds, useconds) \ argument 243 PyDateTimeAPI->Delta_FromDelta(days, seconds, useconds, 1, \
|
/third_party/musl/porting/liteos_m/user/hook/ |
D | los_usr_libc.c | 398 int usleep(unsigned useconds) in usleep() argument 401 UINT64 nanoseconds = (UINT64)useconds * OS_SYS_NS_PER_US; in usleep()
|
/third_party/f2fs-tools/tools/f2fs_io/ |
D | f2fs_io.c | 527 int useconds = 0; in do_write() local 570 useconds = atoi(argv[7]) * 1000; in do_write() 599 if (useconds) in do_write() 600 usleep(useconds); in do_write()
|
/third_party/python/Doc/c-api/ |
D | datetime.rst | 128 .. c:function:: PyObject* PyDelta_FromDSU(int days, int seconds, int useconds)
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 456 PyDelta_FromDSU:int:useconds::
|