Searched refs:useconds (Results 1 - 10 of 10) sorted by relevance

/freebsd-10-stable/lib/libc/gen/
H A Dusleep.c44 __usleep(useconds_t useconds) argument
48 time_to_sleep.tv_nsec = (useconds % 1000000) * 1000;
49 time_to_sleep.tv_sec = useconds / 1000000;
/freebsd-10-stable/lib/libkse/thread/
H A Dthr_sleep.c60 _usleep(useconds_t useconds) argument
66 ret = __usleep(useconds);
/freebsd-10-stable/crypto/openssh/openbsd-compat/
H A Dbsd-misc.h84 int usleep(unsigned int useconds);
H A Dbsd-misc.c170 int usleep(unsigned int useconds) argument
174 ts.tv_sec = useconds / 1000000;
175 ts.tv_nsec = (useconds % 1000000) * 1000;
/freebsd-10-stable/contrib/ncurses/ncurses/tty/
H A Dlib_twait.c283 bigtime_t useconds = milliseconds * 1000; local
286 if (useconds <= 0) /* we're here to go _through_ the loop */
287 useconds = 1;
289 for (d = 0; d < useconds; d += step) {
296 if (useconds > 1 && step > 0) {
/freebsd-10-stable/contrib/amd/conf/nfs_prot/
H A Dnfs_prot_freebsd2.h80 #define nt_useconds useconds
H A Dnfs_prot_freebsd3.h118 #define nt_useconds useconds
/freebsd-10-stable/contrib/amd/include/
H A Dam_defs.h1561 extern int usleep(u_int useconds);
/freebsd-10-stable/include/rpcsvc/
H A Dnfs_prot.x112 unsigned useconds;
/freebsd-10-stable/contrib/amd/amd/
H A Dnfs_subr.c947 time3->nseconds = time->useconds * 1000;

Completed in 418 milliseconds