HomeSort by: relevance | last modified time | path
    Searched refs:Sleep (Results 1 - 25 of 103) sorted by relevancy

1 2 3 4 5

  /src/external/bsd/jemalloc/dist/test/src/
sleep.c 4 * Sleep for approximately ns nanoseconds. No lower *nor* upper bound on sleep
12 Sleep(ns / 1000 / 1000);
  /src/external/bsd/jemalloc.old/dist/test/src/
mq.c 4 * Sleep for approximately ns nanoseconds. No lower *nor* upper bound on sleep
12 Sleep(ns / 1000);
  /src/external/bsd/ntp/dist/libntp/lib/isc/win32/
once.c 46 * Sleep(0) indicates that this thread
50 Sleep(0);
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
sleep.c 1 /* Implementation of the SLEEP intrinsic.
34 # undef sleep macro
35 # define sleep(x) Sleep(1000*(x)) macro
39 /* SUBROUTINE SLEEP(SECONDS)
43 equivalent to SLEEP(0). */
52 sleep (*seconds < 0 ? 0 : (unsigned int) *seconds);
62 sleep (*seconds < 0 ? 0 : (unsigned int) *seconds);
  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
sleep.c 1 /* Implementation of the SLEEP intrinsic.
35 # undef sleep macro
36 # define sleep(x) Sleep(1000*(x)) macro
40 /* SUBROUTINE SLEEP(SECONDS)
44 equivalent to SLEEP(0). */
53 sleep (*seconds < 0 ? 0 : (unsigned int) *seconds);
63 sleep (*seconds < 0 ? 0 : (unsigned int) *seconds);
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
sleep.cc 15 #include "sleep.h"
29 // Window's Sleep takes milliseconds argument.
30 void SleepForMilliseconds(int milliseconds) { Sleep(milliseconds); }
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
sleep.cc 15 #include "sleep.h"
29 // Window's Sleep takes milliseconds argument.
30 void SleepForMilliseconds(int milliseconds) { Sleep(milliseconds); }
  /src/external/bsd/openldap/dist/include/ac/
unistd.h 64 * Windows: although sleep() will be resolved by both MSVC and Mingw GCC
66 * because Windows' version of the function is called Sleep(), and it
71 #define sleep(x) Sleep((x) * 1000) macro
  /src/external/gpl3/gdb/dist/gnulib/import/
windows-once.c 50 Sleep (0);
windows-mutex.c 49 Sleep (0);
windows-rwlock.c 148 Sleep (0);
182 Sleep (1);
208 Sleep (0);
239 Sleep (1);
265 Sleep (0);
301 Sleep (0);
mbtowc-lock.c 86 Sleep (0);
setlocale-lock.c 86 Sleep (0);
windows-recmutex.c 51 Sleep (0);
  /src/external/gpl3/gdb.old/dist/gnulib/import/
windows-once.c 50 Sleep (0);
windows-mutex.c 49 Sleep (0);
windows-rwlock.c 148 Sleep (0);
182 Sleep (1);
208 Sleep (0);
239 Sleep (1);
265 Sleep (0);
301 Sleep (0);
mbtowc-lock.c 86 Sleep (0);
setlocale-lock.c 86 Sleep (0);
windows-recmutex.c 51 Sleep (0);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
compatibility.h 49 __attribute((dllimport)) void __attribute__((stdcall)) Sleep (unsigned long);
124 Sleep(0);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
compatibility.h 49 __attribute((dllimport)) void __attribute__((stdcall)) Sleep (unsigned long);
124 Sleep(0);
  /src/external/bsd/zstd/dist/programs/
util.h 44 * Sleep & priority functions: Windows - Posix - others
49 # define UTIL_sleep(s) Sleep(1000*s)
50 # define UTIL_sleepMilli(milli) Sleep(milli)
53 # include <unistd.h> /* sleep */
54 # define UTIL_sleep(s) sleep(s)
  /src/sys/arch/hpcmips/stand/pbsdboot/
print.c 155 Sleep(2000);
  /src/external/gpl3/gcc/dist/gcc/config/i386/
host-mingw32.cc 181 Sleep (500);

Completed in 40 milliseconds

1 2 3 4 5