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

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/src/
chrono.cpp 54 // mach_absolute_time() * MachInfo.numer / MachInfo.denom is the number of
55 // nanoseconds since the computer booted up. MachInfo.numer and MachInfo.denom
59 // MachInfo.numer / MachInfo.denom is often 1 on the latest equipment. Specialize
75 mach_timebase_info_data_t MachInfo;
76 mach_timebase_info(&MachInfo);
77 return static_cast<double>(MachInfo.numer) / MachInfo.denom
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/src/
chrono.cpp 85 // mach_absolute_time() * MachInfo.numer / MachInfo.denom is the number of
86 // nanoseconds since the computer booted up. MachInfo.numer and MachInfo.denom
90 // MachInfo.numer / MachInfo.denom is often 1 on the latest equipment. Specialize
106 mach_timebase_info_data_t MachInfo;
107 mach_timebase_info(&MachInfo);
108 return static_cast<double>(MachInfo.numer) / MachInfo.denom
    [all...]
  /external/libcxx/src/
chrono.cpp 143 // mach_absolute_time() * MachInfo.numer / MachInfo.denom is the number of
144 // nanoseconds since the computer booted up. MachInfo.numer and MachInfo.denom
148 // MachInfo.numer / MachInfo.denom is often 1 on the latest equipment. Specialize
162 mach_timebase_info_data_t MachInfo;
163 mach_timebase_info(&MachInfo);
164 return static_cast<double>(MachInfo.numer) / MachInfo.denom
    [all...]

Completed in 59 milliseconds