Home
last modified time | relevance | path

Searched refs:qpfreq (Results 1 – 1 of 1) sorted by relevance

/external/webrtc/src/system_wrappers/interface/
Dtick_util.h205 LARGE_INTEGER qpfreq; in MillisecondTimestamp() local
206 QueryPerformanceFrequency(&qpfreq); in MillisecondTimestamp()
207 return (now._ticks * 1000) / qpfreq.QuadPart; in MillisecondTimestamp()
224 LARGE_INTEGER qpfreq; in MicrosecondTimestamp() local
225 QueryPerformanceFrequency(&qpfreq); in MicrosecondTimestamp()
226 return (now._ticks * 1000) / (qpfreq.QuadPart/1000); in MicrosecondTimestamp()
246 LARGE_INTEGER qpfreq; in MillisecondsToTicks() local
247 QueryPerformanceFrequency(&qpfreq); in MillisecondsToTicks()
248 return (qpfreq.QuadPart * ms) / 1000; in MillisecondsToTicks()
263 LARGE_INTEGER qpfreq; in TicksToMilliseconds() local
[all …]