HomeSort by relevance Sort by last modified time
    Searched defs:Nanoseconds (Results 1 - 6 of 6) sorted by null

  /system/chre/util/include/chre/util/
time.h 27 class Nanoseconds;
39 * nanoseconds. Handles overflyw by returning UINT64_MAX.
41 * @return the value of seconds converted to nanoseconds
60 * Constructs a Microseconds time duration given nanoseconds.
62 constexpr Milliseconds(Nanoseconds nanoseconds);
66 * nanoseconds. Handles overflow by returning UINT64_MAX.
68 * @return the value of milliseconds converted to nanoseconds
95 * Constructs a Microseconds time duration given nanoseconds.
97 constexpr Microseconds(Nanoseconds nanoseconds)
    [all...]
time_impl.h 3 //! The number of nanoseconds in one second.
6 //! The number of nanoseconds in one millisecond.
9 //! The number of nanoseconds in one millisecond.
28 constexpr Milliseconds::Milliseconds(Nanoseconds nanoseconds)
30 nanoseconds.toRawNanoseconds() / kOneMillisecondInNanoseconds) {}
47 constexpr Microseconds::Microseconds(Nanoseconds nanoseconds)
49 nanoseconds.toRawNanoseconds() / kOneMicrosecondInNanoseconds) {}
63 constexpr Nanoseconds::Nanoseconds(
    [all...]
  /prebuilts/go/darwin-x86/src/time/
time.go 470 // second format use a smaller unit (milli-, micro-, or nanoseconds) to ensure
494 // print nanoseconds
586 // Nanoseconds returns the duration as an integer nanosecond count.
587 func (d Duration) Nanoseconds() int64 { return int64(d) }
595 // where, say, float64(d.Nanoseconds())/1e9 would have rounded
847 // UnixNano returns t as a Unix time, the number of nanoseconds elapsed
849 // in nanoseconds cannot be represented by an int64 (a date before the year
886 byte(t.nsec >> 24), // bytes 9-12: nanoseconds
997 // sec seconds and nsec nanoseconds since January 1, 1970 UTC.
1036 // yyyy-mm-dd hh:mm:ss + nsec nanoseconds
    [all...]
  /prebuilts/go/linux-x86/src/time/
time.go 470 // second format use a smaller unit (milli-, micro-, or nanoseconds) to ensure
494 // print nanoseconds
586 // Nanoseconds returns the duration as an integer nanosecond count.
587 func (d Duration) Nanoseconds() int64 { return int64(d) }
595 // where, say, float64(d.Nanoseconds())/1e9 would have rounded
847 // UnixNano returns t as a Unix time, the number of nanoseconds elapsed
849 // in nanoseconds cannot be represented by an int64 (a date before the year
886 byte(t.nsec >> 24), // bytes 9-12: nanoseconds
997 // sec seconds and nsec nanoseconds since January 1, 1970 UTC.
1036 // yyyy-mm-dd hh:mm:ss + nsec nanoseconds
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
ztypes_windows.go 304 func (tv *Timeval) Nanoseconds() int64 {
340 // Nanoseconds returns Filetime ft in nanoseconds
342 func (ft *Filetime) Nanoseconds() int64 {
347 // convert into nanoseconds
  /prebuilts/go/linux-x86/src/syscall/
ztypes_windows.go 304 func (tv *Timeval) Nanoseconds() int64 {
340 // Nanoseconds returns Filetime ft in nanoseconds
342 func (ft *Filetime) Nanoseconds() int64 {
347 // convert into nanoseconds

Completed in 1602 milliseconds