Searched defs:nanoseconds (Results 1 - 5 of 5) sorted by relevance

/external/guava/guava-testlib/src/com/google/common/testing/
H A DFakeTicker.java45 /** Advances the ticker value by {@code nanoseconds}. */
46 public FakeTicker advance(long nanoseconds) { argument
47 nanos.addAndGet(nanoseconds);
/external/chromium_org/media/midi/
H A Dmidi_manager_mac.cc240 UInt64 nanoseconds = AudioConvertHostTimeToNanos(timestamp); local
241 return static_cast<double>(nanoseconds) / 1.0e9;
/external/llvm/include/llvm/Support/
H A DTimeValue.h69 typedef int32_t NanoSecondsType;///< Type used for representing nanoseconds.
87 /// Caller provides the exact value in seconds and nanoseconds. The
94 /// fractional part representing nanoseconds.
194 /// Returns only the seconds component of the TimeValue. The nanoseconds
199 /// Returns only the nanoseconds component of the TimeValue. The seconds
201 /// @brief Retrieve the nanoseconds component.
202 NanoSecondsType nanoseconds() const { return nanos_; } function in class:llvm::sys::TimeValue
254 /// Provides the seconds and nanoseconds as results in its arguments after
272 /// modifying the nanoseconds part. This is useful for whole second
280 /// The nanoseconds componen
286 void nanoseconds ( NanoSecondsType nanos ) { function in class:llvm::sys::TimeValue
[all...]
/external/libpcap/
H A Dpcap1.h132 bpf_u_int32 nanoseconds; /* 10^-9 of seconds */ member in struct:pcap1_info_timestamp
/external/chromium_org/v8/src/base/platform/
H A Dtime.cc54 TimeDelta TimeDelta::FromNanoseconds(int64_t nanoseconds) { argument
55 return TimeDelta(nanoseconds / Time::kNanosecondsPerMicrosecond);
378 // resolution (100 nanoseconds) time stamp but is comparatively more expensive

Completed in 448 milliseconds