OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PerformanceCount
(Results
1 - 2
of
2
) sorted by null
/external/quake/quake/src/QW/client/
sys_win.c
289
LARGE_INTEGER
PerformanceCount
;
295
QueryPerformanceCounter (&
PerformanceCount
);
297
temp = ((unsigned int)
PerformanceCount
.LowPart >> lowshift) |
298
((unsigned int)
PerformanceCount
.HighPart << (32 - lowshift));
/external/quake/quake/src/WinQuake/
sys_win.cpp
472
LARGE_INTEGER
PerformanceCount
;
478
QueryPerformanceCounter (&
PerformanceCount
);
480
temp = ((unsigned int)
PerformanceCount
.LowPart >> lowshift) |
481
((unsigned int)
PerformanceCount
.HighPart << (32 - lowshift));
Completed in 115 milliseconds