Searched refs:milliseconds (Results 1 - 25 of 34) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/llvm/utils/benchmark/src/
H A Dsleep.cc29 // Window's Sleep takes milliseconds argument.
30 void SleepForMilliseconds(int milliseconds) { Sleep(milliseconds); } argument
43 void SleepForMilliseconds(int milliseconds) {
44 SleepForMicroseconds(milliseconds * kNumMicrosPerMilli);
H A Dsleep.h11 void SleepForMilliseconds(int milliseconds);
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dsleep.cc29 // Window's Sleep takes milliseconds argument.
30 void SleepForMilliseconds(int milliseconds) { Sleep(milliseconds); } argument
43 void SleepForMilliseconds(int milliseconds) {
44 SleepForMicroseconds(milliseconds * kNumMicrosPerMilli);
H A Dsleep.h11 void SleepForMilliseconds(int milliseconds);
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Devent-loop.h83 extern int create_timer (int milliseconds,
H A Devent-loop.cc105 /* Timeout in milliseconds for calls to poll(). */
707 /* Create a timer that will expire in MS milliseconds from now. When
722 timer_ptr->when = time_now + milliseconds (ms);
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dsetsockopt.c51 int milliseconds = tv->tv_sec * 1000 + tv->tv_usec / 1000; local
52 optval = &milliseconds;
/netbsd-current/external/bsd/ntp/dist/lib/isc/win32/
H A Dcondition.c208 wait(isc_condition_t *cond, isc_mutex_t *mutex, DWORD milliseconds) { argument
223 milliseconds);
244 DWORD milliseconds; local
255 milliseconds = 0xFFFFFFFF;
257 milliseconds = (DWORD)(microseconds / 1000);
259 return (wait(cond, mutex, milliseconds));
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Devent-loop.h95 extern int create_timer (int milliseconds,
H A Devent-loop.cc126 /* Timeout in milliseconds for calls to poll(). */
181 wait at most MSTIMEOUT milliseconds for something to happen (via
724 /* Create a timer that will expire in MS milliseconds from now. When
739 timer_ptr->when = time_now + milliseconds (ms);
/netbsd-current/external/apache2/llvm/dist/libcxx/src/support/win32/
H A Dthread_win32.cpp125 auto timeout_ms = duration_cast<milliseconds>(abstime - system_clock::now());
250 chrono::milliseconds __ms = chrono::ceil<chrono::milliseconds>(__ns);
306 chrono::milliseconds __ms = chrono::ceil<chrono::milliseconds>(__ns);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/benchmark/test/
H A Doptions_test.cc16 std::chrono::milliseconds sleep_duration(state.range(0));
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
H A Doptions_test.cc16 std::chrono::milliseconds sleep_duration(state.range(0));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DChrono.cpp67 "%.3lu", (long)duration_cast<milliseconds>(Fractional).count());
H A DLockFileManager.cpp320 std::this_thread::sleep_for(std::chrono::milliseconds(WaitDurationMS));
/netbsd-current/sys/external/bsd/acpica/dist/os_specific/service_layers/
H A Dosunixxf.c863 * MsecTimeout - How long to wait (milliseconds)
942 usleep (10 * ACPI_USEC_PER_MSEC); /* ten milliseconds */
1151 * PARAMETERS: milliseconds - Time to sleep
1161 UINT64 milliseconds)
1166 sleep (milliseconds / ACPI_MSEC_PER_SEC);
1172 usleep ((milliseconds % ACPI_MSEC_PER_SEC) * ACPI_USEC_PER_MSEC);
1160 AcpiOsSleep( UINT64 milliseconds) argument
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dthread.cc240 ::Sleep(chrono::milliseconds(__s).count() + ms);
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dthread.cc251 ::Sleep(chrono::milliseconds(__s).count() + ms);
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dcli-out.c351 milliseconds diff = duration_cast<milliseconds>
/netbsd-current/external/gpl3/gdb.old/dist/sim/common/
H A Dsim-profile.c1026 unsigned long milliseconds = sim_events_elapsed_time (sd);
1037 if (milliseconds < 1000)
1045 secs = (double) milliseconds / 1000;
1023 unsigned long milliseconds = sim_events_elapsed_time (sd); local
/netbsd-current/external/gpl3/gdb/dist/sim/common/
H A Dsim-profile.c1023 unsigned long milliseconds = sim_events_elapsed_time (sd);
1034 if (milliseconds < 1000)
1042 secs = (double) milliseconds / 1000;
1020 unsigned long milliseconds = sim_events_elapsed_time (sd); local
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A Draw_ostream.h563 Expected<sys::fs::FileLocker> tryLockFor(std::chrono::milliseconds Timeout);
H A DFileSystem.h1154 /// @param Timeout Time in milliseconds that the process should wait before
1167 std::chrono::milliseconds Timeout = std::chrono::milliseconds(0));
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dchrono.h884 /// milliseconds
885 using milliseconds = duration<_GLIBCXX_CHRONO_INT64_T, milli>;
1315 * tick periods of hours, minutes, seconds, milliseconds, microseconds
1388 /// Literal suffix for durations representing non-integer milliseconds
1393 /// Literal suffix for durations of type `std::chrono::milliseconds`
1395 constexpr chrono::milliseconds
1397 { return __check_overflow<chrono::milliseconds, _Digits...>(); }
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/etc/c/
H A Dcurl.d2270 * maximum number of milliseconds the app is allowed to wait before
2297 * Desc: Returns the maximum number of milliseconds the app is allowed to
2303 extern (C) CURLMcode curl_multi_timeout(CURLM *multi_handle, c_long *milliseconds);

Completed in 424 milliseconds

12