Home
last modified time | relevance | path

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

/external/lz4/programs/
Dutil.h150 static LARGE_INTEGER ticksPerSecond; in UTIL_getSpanTimeMicro() local
153 if (!QueryPerformanceFrequency(&ticksPerSecond)) in UTIL_getSpanTimeMicro()
157 return 1000000ULL*(clockEnd.QuadPart - clockStart.QuadPart)/ticksPerSecond.QuadPart; in UTIL_getSpanTimeMicro()
161 static LARGE_INTEGER ticksPerSecond; in UTIL_getSpanTimeNano() local
164 if (!QueryPerformanceFrequency(&ticksPerSecond)) in UTIL_getSpanTimeNano()
168 return 1000000000ULL*(clockEnd.QuadPart - clockStart.QuadPart)/ticksPerSecond.QuadPart; in UTIL_getSpanTimeNano()
/external/zlib/src/contrib/testzlib/
Dtestzlib.c95 LARGE_INTEGER endTime64,ticksPerSecond,ticks; in GetMsecSincePerfCounter() local
104 QueryPerformanceFrequency(&ticksPerSecond); in GetMsecSincePerfCounter()
109 tickSecShifted = Int64ShrlMod32(*(DWORDLONG*)&ticksPerSecond,dwLog); in GetMsecSincePerfCounter()