Searched refs:qpc (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10/WTF-7600.1.24/wtf/
H A DCurrentTime.cpp108 LARGE_INTEGER qpc; local
109 QueryPerformanceCounter(&qpc);
117 __int64 qpcElapsed = ((qpc.QuadPart - qpcLast.QuadPart) * 1000) / qpcFrequency.QuadPart;
138 qpcLast = qpc;
141 return (1000.0 * qpc.QuadPart) / static_cast<double>(qpcFrequency.QuadPart);

Completed in 111 milliseconds