Searched refs:nanos (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10.1/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DFWDebugging.h94 UInt64 nanos ;\
95 absolutetime_to_nanoseconds( end, & nanos ) ;\
96 DebugLog("%s duration %llu us\n", "" description, nanos/1000) ;\
H A DIOFWIsochChannel.cpp681 UInt64 nanos; local
686 absolutetime_to_nanoseconds( currentUpTime, & nanos ) ;
687 if (nanos < 1000000000LL)
689 delayInMSec = (UInt32) ((1000000000LL - nanos)/1000000LL);
/macosx-10.10.1/IOAudioFamily-200.6/
H A DIOAudioDevice.cpp238 UInt64 nanos; local
269 absolutetime_to_nanoseconds ( fireTime, &nanos );
270 nanos += reserved->idleSleepDelayTime;
271 nanoseconds_to_absolutetime ( nanos, &fireTime );
1201 UInt64 nanos; local
1202 absolutetime_to_nanoseconds(minimumInterval, &nanos);
1204 audioDebugIOLog(5, " scheduling timer to fire in %lums - previousTimerFire = {%llu}\n", (long unsigned int) (nanos / 1000000), previousTimerFire);
1206 audioDebugIOLog(5, " scheduling timer to fire in %lums - previousTimerFire = {%ld,%lu}\n", (long unsigned int) (nanos / 1000000), previousTimerFire.hi, previousTimerFire.lo);
1230 UInt64 nanos; local
1231 absolutetime_to_nanoseconds(interval, &nanos);
1307 UInt64 nanos, mi; local
1376 UInt64 nanos; local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DTimeValue.h86 /// \p nanos argument defaults to zero for convenience.
88 explicit TimeValue (SecondsType seconds, NanoSecondsType nanos = 0)
89 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
263 void getTimespecTime( uint64_t& seconds, uint32_t& nanos ) const {
265 nanos = nanos_;
286 /// The nanoseconds component of the TimeValue is set to \p nanos without
292 void nanoseconds ( NanoSecondsType nanos ) {
293 this->nanos_ = nanos;
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_write_set_format_pax.c56 unsigned long nanos);
126 * Note: This code assumes that 'nanos' has the same sign as 'sec',
127 * which implies that sec=-1, nanos=200000000 represents -1.2 seconds
134 int64_t sec, unsigned long nanos)
142 char tmp[1 + 3*sizeof(sec) + 1 + 3*sizeof(nanos)];
149 digit = nanos % 10;
150 nanos /= 10;
157 digit = nanos % 10;
158 nanos /= 10;
133 add_pax_attr_time(struct archive_string *as, const char *key, int64_t sec, unsigned long nanos) argument
H A Darchive_read_support_format_tar.c220 static void pax_time(const char *, int64_t *sec, long *nanos);
/macosx-10.10.1/xnu-2782.1.97/bsd/dev/dtrace/
H A Ddtrace_glue.c597 dtrace_timeout(void (*func)(void *, void *), void* arg, uint64_t nanos) argument
602 nanoseconds_to_absolutetime(nanos, &nanos);
608 uint64_t deadline = mach_absolute_time() + nanos;
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Ddtrace_glue.h332 thread_call_t dtrace_timeout(void (*func)(void *, void *), void* arg, uint64_t nanos);
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOPMrootDomain.cpp1885 uint64_t nanos; local
1901 absolutetime_to_nanoseconds(now, &nanos);
1902 minutesSinceUserInactive = nanos / (60000000000ULL);

Completed in 135 milliseconds