HomeSort by relevance Sort by last modified time
    Searched refs:NanoSecPerSec (Results 1 - 4 of 4) sorted by null

  /external/lldb/source/Host/common/
TimeValue.cpp 41 m_nano_seconds ((uint64_t) ts.tv_sec * NanoSecPerSec + ts.tv_nsec)
46 m_nano_seconds ((uint64_t) tv.tv_sec * NanoSecPerSec + (uint64_t) tv.tv_usec * NanoSecPerMicroSec)
73 return m_nano_seconds / NanoSecPerSec;
82 ts.tv_sec = m_nano_seconds / NanoSecPerSec;
83 ts.tv_nsec = m_nano_seconds % NanoSecPerSec;
91 tv.tv_sec = m_nano_seconds / NanoSecPerSec;
92 tv.tv_usec = (m_nano_seconds % NanoSecPerSec) / NanoSecPerMicroSec;
111 m_nano_seconds += sec * NanoSecPerSec;
  /external/lldb/include/lldb/Host/
TimeValue.h 34 static const uint64_t NanoSecPerSec = 1000000000UL;
  /external/lldb/source/Plugins/Process/Utility/
UnwindLLDB.cpp 58 delta_t / TimeValue::NanoSecPerSec,
59 delta_t % TimeValue::NanoSecPerSec,
60 (float)FRAME_COUNT / ((float)delta_t / (float)TimeValue::NanoSecPerSec));
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunicationClient.cpp     [all...]

Completed in 243 milliseconds