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

/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
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;
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-misc.h84 int usleep(unsigned int useconds);
H A Dbsd-misc.c169 int usleep(unsigned int useconds) argument
173 ts.tv_sec = useconds / 1000000;
174 ts.tv_nsec = (useconds % 1000000) * 1000;
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/tools/
H A Dbench-compare.tcl36 set useconds $BENCH($key)
38 set seconds [expr {double($useconds)/1000000}]
40 set usecchar [expr {$useconds/double($chars)}]
43 [format %.2f $useconds] \
/macosx-10.10.1/ncurses-44/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) {
/macosx-10.10.1/emacs-93/emacs/src/
H A Dsunfns.c191 unsigned useconds;
194 useconds = XINT(n) * 1000;
195 usleep(useconds);
189 unsigned useconds; variable
193 usleep(useconds); variable
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/unix/
H A DtclXunixOS.c316 unsigned useconds;
318 useconds = ceil (*seconds);
319 *seconds = alarm (useconds);
/macosx-10.10.1/Librpcsvc-24/
H A Dnfs_prot.x110 unsigned useconds;
/macosx-10.10.1/system_cmds-643.1.1/sc_usage.tproj/
H A Dsc_usage.c288 void print_time(char *p, unsigned int useconds, unsigned int seconds) argument
297 (unsigned long)usec_to_1000ths(useconds));

Completed in 189 milliseconds