Home
last modified time | relevance | path

Searched refs:microseconds (Results 1 – 25 of 205) sorted by relevance

123456789

/netbsd/external/gpl3/gdb/dist/gdbsupport/
H A Drun-time-clock.cc30 return time_point (microseconds (get_run_time ())); in now()
34 static std::chrono::microseconds
37 return (seconds (tv->tv_sec) + microseconds (tv->tv_usec)); in timeval_to_microseconds()
50 microseconds utime = timeval_to_microseconds (&rusage.ru_utime); in now()
51 microseconds stime = timeval_to_microseconds (&rusage.ru_stime); in now()
55 user = user_cpu_time_clock::time_point (microseconds (get_run_time ())); in now()
56 system = system_cpu_time_clock::time_point (microseconds::zero ()); in now()
H A Drun-time-clock.h28 using duration = std::chrono::microseconds;
43 using duration = std::chrono::microseconds;
59 using duration = std::chrono::microseconds;
/netbsd/external/gpl3/gdb.old/dist/gdbsupport/
H A Drun-time-clock.cc30 return time_point (microseconds (get_run_time ())); in now()
34 static std::chrono::microseconds
37 return (seconds (tv->tv_sec) + microseconds (tv->tv_usec)); in timeval_to_microseconds()
50 microseconds utime = timeval_to_microseconds (&rusage.ru_utime); in now()
51 microseconds stime = timeval_to_microseconds (&rusage.ru_stime); in now()
55 user = user_cpu_time_clock::time_point (microseconds (get_run_time ())); in now()
56 system = system_cpu_time_clock::time_point (microseconds::zero ()); in now()
H A Drun-time-clock.h28 using duration = std::chrono::microseconds;
43 using duration = std::chrono::microseconds;
59 using duration = std::chrono::microseconds;
/netbsd/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Drb_cpudist_example.txt186 microseconds and 7 microseconds, and once instance of being on-CPU between 8
187 microseconds and 15 microseconds.
192 of being on-CPU between 32 microseconds and 63 microseconds, and one instance
193 of being on-CPU between 64 microseconds and 127 microseconds.
H A Djs_calldist_example.txt99 five new Date objects, and each event took between 8 microseconds and 15
100 microseconds.
104 can see in this example that func_a took between 16384 microseconds and 32767
105 microseconds.
108 microseconds and 131071 microseconds, including the time spent in any
H A Dphp_cpudist_example.txt67 between 16 and 31 microseconds on CPU. This time excludes the time spent in
71 microseconds and 63 microseconds on CPU; sleep ran three times and each time
72 took between 16 and 31 microseconds on CPU; func_b() took between 64 and 127
73 microseconds on CPU; and func_a() took between 128 and 255 microseconds on
H A Dphp_cputime_example.txt37 microseconds on-CPU, func_b() spent 25 microseconds on-CPU, and func_c() spent
38 17 microseconds on-CPU. This exclusive times excludes time spent in other
42 microseconds on-CPU, func_b() spent around 87 microseconds on-CPU and
43 func_a() spent around 210 microseconds. This inclusive time includes the time
H A Dlockbydist_example.txt27 65 to 131 microseconds, and 9 times from 32 to 65 microseconds. sched,
29 blocked once, which was at least 262 microseconds.
110 mysqld can be seen to have many short blocks: 22 from 32 -> 65 microseconds,
H A Djs_cpudist_example.txt103 microseconds and 32767 microseconds.
108 on-CPU between 65536 microseconds and 131071 microseconds.
/netbsd/external/cddl/dtracetoolkit/dist/Examples/
H A Drb_cpudist_example.txt186 microseconds and 7 microseconds, and once instance of being on-CPU between 8
187 microseconds and 15 microseconds.
192 of being on-CPU between 32 microseconds and 63 microseconds, and one instance
193 of being on-CPU between 64 microseconds and 127 microseconds.
H A Djs_calldist_example.txt99 five new Date objects, and each event took between 8 microseconds and 15
100 microseconds.
104 can see in this example that func_a took between 16384 microseconds and 32767
105 microseconds.
108 microseconds and 131071 microseconds, including the time spent in any
H A Dphp_cpudist_example.txt67 between 16 and 31 microseconds on CPU. This time excludes the time spent in
71 microseconds and 63 microseconds on CPU; sleep ran three times and each time
72 took between 16 and 31 microseconds on CPU; func_b() took between 64 and 127
73 microseconds on CPU; and func_a() took between 128 and 255 microseconds on
H A Dphp_cputime_example.txt37 microseconds on-CPU, func_b() spent 25 microseconds on-CPU, and func_c() spent
38 17 microseconds on-CPU. This exclusive times excludes time spent in other
42 microseconds on-CPU, func_b() spent around 87 microseconds on-CPU and
43 func_a() spent around 210 microseconds. This inclusive time includes the time
H A Dlockbydist_example.txt27 65 to 131 microseconds, and 9 times from 32 to 65 microseconds. sched,
29 blocked once, which was at least 262 microseconds.
110 mysqld can be seen to have many short blocks: 22 from 32 -> 65 microseconds,
H A Djs_cpudist_example.txt103 microseconds and 32767 microseconds.
108 on-CPU between 65536 microseconds and 131071 microseconds.
/netbsd/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/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;
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A DTimeProfiler.cpp63 return (time_point_cast<microseconds>(Start) - in getFlameGraphStartUs()
64 time_point_cast<microseconds>(StartTime)) in getFlameGraphStartUs()
69 return (time_point_cast<microseconds>(End) - in getFlameGraphDurUs()
70 time_point_cast<microseconds>(Start)) in getFlameGraphDurUs()
105 if (duration_cast<microseconds>(Duration).count() >= TimeTraceGranularity) in end()
198 auto DurUs = duration_cast<microseconds>(Total.second.second).count(); in write()
242 time_point_cast<microseconds>(BeginningOfTime) in write()
/netbsd/sbin/cgdconfig/
H A Dpkcs5_pbkdf2.c187 pkcs5_pbkdf2_calibrate(size_t dkLen, int microseconds) in pkcs5_pbkdf2_calibrate() argument
209 ret = (size_t) ((u_int64_t) c * microseconds / t); in pkcs5_pbkdf2_calibrate()
219 if (abs(microseconds - t) > (microseconds / 20)) in pkcs5_pbkdf2_calibrate()
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DUnix.h82 inline std::chrono::microseconds toDuration(const struct timeval &TV) { in toDuration()
84 std::chrono::microseconds(TV.tv_usec); in toDuration()
98 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) { in toTimeVal()
/netbsd/external/bsd/ntp/dist/lib/isc/win32/
H A Dcondition.c245 isc_uint64_t microseconds; in isc_condition_waituntil() local
253 microseconds = isc_time_microdiff(t, &now); in isc_condition_waituntil()
254 if (microseconds > 0xFFFFFFFFi64 * 1000) in isc_condition_waituntil()
257 milliseconds = (DWORD)(microseconds / 1000); in isc_condition_waituntil()
/netbsd/external/mpl/bind/dist/lib/isc/win32/
H A Dcondition.c241 uint64_t microseconds; in isc_condition_waituntil() local
249 microseconds = isc_time_microdiff(t, &now); in isc_condition_waituntil()
250 if (microseconds > 0xFFFFFFFFi64 * 1000) { in isc_condition_waituntil()
253 milliseconds = (DWORD)(microseconds / 1000); in isc_condition_waituntil()
/netbsd/sys/external/bsd/drm2/dist/drm/amd/display/dmub/inc/
H A Ddmub_types.h51 #define dmub_udelay(microseconds) udelay(microseconds) argument
/netbsd/distrib/sgimips/miniroot/
H A Ddiskimage.label.proto16 headswitch: 0 # microseconds
17 track-to-track seek: 0 # microseconds

123456789