Searched refs:microseconds (Results 1 - 25 of 54) sorted by relevance

123

/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Drun-time-clock.cc30 return time_point (microseconds (get_run_time ()));
34 static std::chrono::microseconds
37 return (seconds (tv->tv_sec) + microseconds (tv->tv_usec));
50 microseconds utime = timeval_to_microseconds (&rusage.ru_utime);
51 microseconds stime = timeval_to_microseconds (&rusage.ru_stime);
55 user = user_cpu_time_clock::time_point (microseconds (get_run_time ()));
56 system = system_cpu_time_clock::time_point (microseconds::zero ());
H A Drun-time-clock.h28 using duration = std::chrono::microseconds;
43 using duration = std::chrono::microseconds;
59 using duration = std::chrono::microseconds;
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Drun-time-clock.cc30 return time_point (microseconds (get_run_time ()));
34 static std::chrono::microseconds
37 return (seconds (tv->tv_sec) + microseconds (tv->tv_usec));
50 microseconds utime = timeval_to_microseconds (&rusage.ru_utime);
51 microseconds stime = timeval_to_microseconds (&rusage.ru_stime);
55 user = user_cpu_time_clock::time_point (microseconds (get_run_time ()));
56 system = system_cpu_time_clock::time_point (microseconds::zero ());
H A Drun-time-clock.h28 using duration = std::chrono::microseconds;
43 using duration = std::chrono::microseconds;
59 using duration = std::chrono::microseconds;
/netbsd-current/external/apache2/llvm/dist/llvm/utils/benchmark/src/
H A Dsleep.cc35 void SleepForMicroseconds(int microseconds) {
37 sleep_time.tv_sec = microseconds / kNumMicrosPerSecond;
38 sleep_time.tv_nsec = (microseconds % kNumMicrosPerSecond) * kNumNanosPerMicro;
H A Dtimers.cc91 static_cast<double>(info.user_time.microseconds) * 1e-6 +
93 static_cast<double>(info.system_time.microseconds) * 1e-6);
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dsleep.cc35 void SleepForMicroseconds(int microseconds) {
37 sleep_time.tv_sec = microseconds / kNumMicrosPerSecond;
38 sleep_time.tv_nsec = (microseconds % kNumMicrosPerSecond) * kNumNanosPerMicro;
/netbsd-current/sys/external/bsd/drm2/dist/drm/amd/display/dmub/inc/
H A Ddmub_types.h51 #define dmub_udelay(microseconds) udelay(microseconds)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DUnix.h82 inline std::chrono::microseconds toDuration(const struct timeval &TV) {
84 std::chrono::microseconds(TV.tv_usec);
98 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) {
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dcompatibility-chrono.cc49 typedef chrono::microseconds duration;
78 + chrono::microseconds(tv.tv_usec)));
H A Dchrono.cc69 + chrono::microseconds(tv.tv_usec)));
/netbsd-current/external/gpl3/gdb.old/dist/gdbserver/
H A Ddebug.cc85 microseconds us = duration_cast<microseconds> (now.time_since_epoch ()) - s;
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dcompatibility-chrono.cc49 typedef chrono::microseconds duration;
78 + chrono::microseconds(tv.tv_usec)));
H A Dchrono.cc69 + chrono::microseconds(tv.tv_usec)));
/netbsd-current/external/gpl3/gdb/dist/gdbserver/
H A Ddebug.cc89 microseconds us = duration_cast<microseconds> (now.time_since_epoch ()) - s;
/netbsd-current/external/bsd/ntp/dist/lib/isc/win32/
H A Dcondition.c245 isc_uint64_t microseconds; local
253 microseconds = isc_time_microdiff(t, &now);
254 if (microseconds > 0xFFFFFFFFi64 * 1000)
257 milliseconds = (DWORD)(microseconds / 1000);
/netbsd-current/sbin/cgdconfig/
H A Dpkcs5_pbkdf2.c155 #define CAL_TIME 30000 /* Minimum number of microseconds that
160 * We return the user time in microseconds that c iterations
187 pkcs5_pbkdf2_calibrate(size_t dkLen, int microseconds) argument
209 ret = (size_t) ((u_int64_t) c * microseconds / t);
219 if (abs(microseconds - t) > (microseconds / 20))
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DTimeProfiler.cpp63 return (time_point_cast<microseconds>(Start) -
64 time_point_cast<microseconds>(StartTime))
69 return (time_point_cast<microseconds>(End) -
70 time_point_cast<microseconds>(Start))
105 if (duration_cast<microseconds>(Duration).count() >= TimeTraceGranularity)
198 auto DurUs = duration_cast<microseconds>(Total.second.second).count();
242 time_point_cast<microseconds>(BeginningOfTime)
259 // Minimum time granularity (in microseconds)
H A DChrono.cpp72 "%.6lu", (long)duration_cast<microseconds>(Fractional).count());
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DProgram.h60 std::chrono::microseconds TotalTime;
61 std::chrono::microseconds UserTime;
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A Dcollctrl.h327 /* value for timer, microseconds. */
400 void set_clkprof_timer_target (int microseconds);
401 void adjust_clkprof_timer (int microseconds);
/netbsd-current/external/bsd/ipf/dist/lib/
H A Dipft_pc.c49 u_32_t microseconds; member in struct:__anon1206
158 rec->microseconds = SWAPLONG(rec->microseconds);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/benchmark/test/
H A Dbenchmark_test.cc183 int64_t microseconds = state.range(0); local
185 static_cast<double>(microseconds)};
198 slept_for += microseconds;
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
H A Dbenchmark_test.cc183 int64_t microseconds = state.range(0); local
185 static_cast<double>(microseconds)};
198 slept_for += microseconds;
/netbsd-current/external/apache2/llvm/dist/libcxx/src/
H A Dchrono.cpp94 return system_clock::time_point(seconds(tp.tv_sec) + microseconds(tp.tv_nsec / 1000));
102 return system_clock::time_point(seconds(tv.tv_sec) + microseconds(tv.tv_usec));

Completed in 189 milliseconds

123