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

/freebsd-11-stable/lib/libc/gen/
H A Dusleep.c46 __usleep(useconds_t useconds) argument
50 time_to_sleep.tv_nsec = (useconds % 1000000) * 1000;
51 time_to_sleep.tv_sec = useconds / 1000000;
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dbsd-misc.h82 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-11-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-11-stable/contrib/ncurses/ncurses/tty/
H A Dlib_twait.c310 bigtime_t useconds = milliseconds * 1000; local
313 if (useconds <= 0) /* we're here to go _through_ the loop */
314 useconds = 1;
316 for (d = 0; d < useconds; d += step) {
323 if (useconds > 1 && step > 0) {
/freebsd-11-stable/contrib/amd/include/
H A Dam_defs.h1561 extern int usleep(u_int useconds);
/freebsd-11-stable/include/rpcsvc/
H A Dnfs_prot.x112 unsigned useconds;
/freebsd-11-stable/contrib/amd/amd/
H A Dnfs_subr.c947 time3->nseconds = time->useconds * 1000;

Completed in 93 milliseconds