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

12

/macosx-10.10.1/xnu-2782.1.97/osfmk/mach/
H A Dtime_value.h68 integer_t microseconds; member in struct:time_value
75 * are normalized (microseconds <= 999999).
80 if (((val)->microseconds += (micros)) \
82 (val)->microseconds -= TIME_MICROS_MAX; \
88 (result)->microseconds += (addend)->microseconds; \
90 if ((result)->microseconds >= TIME_MICROS_MAX) { \
91 (result)->microseconds -= TIME_MICROS_MAX; \
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/win32/
H A Dcondition.c243 isc_uint64_t microseconds; local
251 microseconds = isc_time_microdiff(t, &now);
252 if (microseconds > 0xFFFFFFFFi64 * 1000)
255 milliseconds = (DWORD)(microseconds / 1000);
/macosx-10.10.1/ntp-92/lib/isc/win32/
H A Dcondition.c243 isc_uint64_t microseconds; local
251 microseconds = isc_time_microdiff(t, &now);
252 if (microseconds > 0xFFFFFFFFi64 * 1000)
255 milliseconds = (DWORD)(microseconds / 1000);
/macosx-10.10.1/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/Util/
H A DTimeTracker.pm67 my($seconds, $microseconds) = $self->{time_function}->();
69 $microseconds = 0 if ! defined $microseconds;
70 return($seconds, $microseconds);
152 my($seconds, $microseconds) = $timer->gettimeofday();
173 my($seconds, $microseconds) = $timer->gettimeofday();
175 It returns seconds and microseconds of the current epoch time. If
177 function, if it's missing, time() will be called instead and $microseconds
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DTimeValue.h204 /// @brief Retrieve the fractional part as microseconds;
205 uint32_t microseconds() const { function in class:llvm::sys::TimeValue
216 /// Returns the TimeValue as a number of microseconds. Note that the value
220 /// @brief Convert to a number of microseconds (can overflow)
298 /// @brief Set the nanoseconds component using a number of microseconds.
299 void microseconds ( int32_t micros ) { function in class:llvm::sys::TimeValue
312 void usec( int64_t microseconds ) {
313 this->seconds_ = microseconds / MICROSECONDS_PER_SECOND;
314 this->nanos_ = NanoSecondsType(microseconds % MICROSECONDS_PER_SECOND) *
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dutmscale.c15 #define microseconds (ticks * 10) macro
16 #define milliseconds (microseconds * 1000)
34 {microseconds, INT64_C(62135596800000000), INT64_C(-984472800485477580), INT64_C(860201606885477580), INT64_C(-9223372036854775804), INT64_C(9223372036854775804), INT64_C(62135596800000001), INT64_C(62135596799999999), INT64_C(5), INT64_C(-9223372036854775803), INT64_C(9223372036854775802)},
/macosx-10.10.1/emacs-93/emacs/src/
H A Dsystime.h72 EMACS_USECS (TIME) is an rvalue for the microseconds component of TIME.
73 This returns zero if EMACS_TIME doesn't have a microseconds component.
75 This does nothing if EMACS_TIME doesn't have a microseconds component.
99 #define EMACS_SET_USECS(time, microseconds) ((time).tv_usec = (microseconds))
/macosx-10.10.1/libauto-186/
H A DStatistics.h42 // uint64_t microseconds_duration(uint64_t start, uint64_t end) - compute the duration in microseconds between start and end
47 volatile int64_t _accumulated; // The total accumulated time, in microseconds
65 // Add time to the timer. duration is in microseconds.
69 void add_time(Timer &other) { OSAtomicAdd64(other.microseconds(), &_accumulated); }
71 // Return the accumulated time in microseconds.
72 int64_t microseconds() const { assert(!timer_running()); return _accumulated; } function in class:Auto::Timer
84 int64_t timeval = microseconds();
105 return (int64_t)myinfo.user_time.seconds*1000000 + (int64_t)myinfo.user_time.microseconds;
118 _timebase.denom *= 1000; // we're using microseconds instead of nanoseconds
H A Dauto_impl_utilities.h166 integer_t microseconds;
171 return ((auto_date_t)myinfo.user_time.seconds*(auto_date_t)1000000) + (auto_date_t)myinfo.user_time.microseconds +
172 ((auto_date_t)myinfo.system_time.seconds*(auto_date_t)1000000) + (auto_date_t)myinfo.system_time.microseconds;
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/Unix/
H A DProcess.inc128 user_time.microseconds(0);
130 sys_time.microseconds(0);
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tk/
H A Dclock.rb21 tk_call_without_enc('clock','clicks','-microseconds').to_i
67 def self.microseconds singleton method in class:Tk.Clock
68 tk_call_without_enc('clock','microseconds').to_i
/macosx-10.10.1/BerkeleyDB-21/db/test/scr028/
H A Dt.c51 local_sleep(u_long seconds, u_long microseconds) argument
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXselect.c333 double timeout, seconds, microseconds;
343 microseconds = (timeout - seconds) * 1000000.0;
345 timeoutRec.tv_usec = (long) microseconds;
329 double timeout, seconds, microseconds; local
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DTimer.cpp141 Result.WallTime = now.seconds() + now.microseconds() / 1000000.0;
142 Result.UserTime = user.seconds() + user.microseconds() / 1000000.0;
143 Result.SystemTime = sys.seconds() + sys.microseconds() / 1000000.0;
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DCurrentTime.cpp312 double time = info.user_time.seconds + info.user_time.microseconds / 1000000.;
313 time += info.system_time.seconds + info.system_time.microseconds / 1000000.;
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkern_clock.c370 st.tv_usec = syst->microseconds;
398 tv->microseconds = st.tv_usec;
H A Dkern_exit.c2055 p->p_ru->ru.ru_utime.tv_usec = tinfo.user_time.microseconds;
2057 p->p_ru->ru.ru_stime.tv_usec = tinfo.system_time.microseconds;
2064 ut.tv_usec = ttimesinfo.user_time.microseconds;
2066 st.tv_usec = ttimesinfo.system_time.microseconds;
H A Dkern_resource.c1198 ut.tv_usec = tinfo.user_time.microseconds;
1200 st.tv_usec = tinfo.system_time.microseconds;
1209 ut.tv_usec = ttimesinfo.user_time.microseconds;
1211 st.tv_usec = ttimesinfo.system_time.microseconds;
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIOLib.h272 @abstract Spin delay for a number of microseconds.
273 @discussion This function spins to delay for at least the number of specified microseconds. Since the CPU is busy spinning no time is made available to other processes; this method of delay should be used only for short periods. Also, the AbsoluteTime based APIs of kern/clock.h provide finer grained and lower cost delays.
274 @param microseconds The integer number of microseconds to spin wait. */
276 void IODelay(unsigned microseconds);
281 @param microseconds The integer number of nanoseconds to spin wait. */
/macosx-10.10.1/adv_cmds-158/ps/
H A Dprint.c829 psecs = total_time.microseconds;
862 user_time.microseconds =0;
866 psecs = user_time.microseconds;
898 system_time.microseconds =0;
901 psecs = system_time.microseconds;
/macosx-10.10.1/CPANInternal-159.1/Time-HiRes-Value-0.07/lib/Time/HiRes/
H A DValue.pm25 microseconds
100 seconds and microseconds. This method avoids rounding errors introduced by
113 croak "Cannot accept '$_[1]' for microseconds for a " . __PACKAGE__ unless $_[1] =~ m/^[+-]?\d+(?:\.\d+)?$/;
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dthread.c1431 user_time->microseconds = usecs;
1435 system_time->microseconds = usecs;
1441 user_time->microseconds = usecs;
1444 system_time->microseconds = 0;
1733 thread_total_time.seconds, thread_total_time.microseconds,
1734 thread_user_time.seconds, thread_user_time.microseconds,
1735 thread_system_time.seconds, thread_system_time.microseconds,
H A Dtask.c2545 basic_info->user_time.microseconds = usecs;
2550 basic_info->system_time.microseconds = usecs;
2583 basic_info->user_time.microseconds = usecs;
2588 basic_info->system_time.microseconds = usecs;
2628 basic_info->user_time.microseconds = usecs;
2633 basic_info->system_time.microseconds = usecs;
2651 times_info->user_time.microseconds = 0;
2653 times_info->system_time.microseconds = 0;
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/bench/
H A Dlibbench.tcl101 # results. Usually time in microseconds, but the following special
278 # integers (microseconds).
296 set res [list [expr {int ($total/$opts(-iter))}] microseconds per iteration]
304 # Get just the microseconds value from the time result
506 # Get just the microseconds value from the time result
/macosx-10.10.1/tcl-105/tcl/tcl/library/
H A Dinit.tcl180 add clicks format microseconds milliseconds scan seconds

Completed in 196 milliseconds

12