OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:end_wall
(Results
1 - 4
of
4
) sorted by null
/external/skia/bench/
BenchSysTimer_c.cpp
25
time_t
end_wall
= time();
local
26
this->fWall = difftime(
end_wall
, this->fstartWall) / 1000.0;
BenchSysTimer_posix.cpp
51
timespec
end_wall
;
local
52
if (-1 == clock_gettime(CLOCK_MONOTONIC, &
end_wall
)) {
54
end_wall
= none;
56
return intervalInMSec(this->fWall,
end_wall
);
BenchSysTimer_windows.cpp
48
LARGE_INTEGER
end_wall
;
local
49
if (0 == ::QueryPerformanceCounter(&
end_wall
)) {
50
end_wall
.QuadPart = 0;
54
ticks_elapsed.QuadPart =
end_wall
.QuadPart - this->fStartWall.QuadPart;
BenchSysTimer_mach.cpp
65
uint64_t
end_wall
= mach_absolute_time();
local
67
uint64_t elapsed =
end_wall
- this->fStartWall;
Completed in 689 milliseconds