Home
last modified time | relevance | path

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

/third_party/node/src/
Dnode_perf.cc183 uint64_t endTimestamp = 0; in Measure() local
185 endTimestamp = PERFORMANCE_NOW(); in Measure()
188 endTimestamp = GetPerformanceMark(env, *endMark); in Measure()
189 if (endTimestamp == 0) { in Measure()
192 endTimestamp = milestones[milestone]; in Measure()
196 if (endTimestamp < startTimestamp) in Measure()
197 endTimestamp = startTimestamp; in Measure()
204 *name, *name, endTimestamp / 1000); in Measure()
206 PerformanceEntry entry(env, *name, "measure", startTimestamp, endTimestamp); in Measure()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DQuery11.cpp54 : getDataAttemptCount(0), query(), beginTimestamp(), endTimestamp(), finished(false) in QueryState()
140 context->End(mActiveQuery->endTimestamp.get()); in pause()
175 ANGLE_TRY(mRenderer->allocateResource(context11, desc, &mActiveQuery->endTimestamp)); in resume()
261 ASSERT(queryState->endTimestamp.valid()); in testQuery()
276 HRESULT endRes = context->GetData(queryState->endTimestamp.get(), &endTime, in testQuery()
DQuery11.h50 d3d11::Query endTimestamp; member
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DQuery11.cpp54 : getDataAttemptCount(0), query(), beginTimestamp(), endTimestamp(), finished(false) in QueryState()
140 context->End(mActiveQuery->endTimestamp.get()); in pause()
175 ANGLE_TRY(mRenderer->allocateResource(context11, desc, &mActiveQuery->endTimestamp)); in resume()
261 ASSERT(queryState->endTimestamp.valid()); in testQuery()
276 HRESULT endRes = context->GetData(queryState->endTimestamp.get(), &endTime, in testQuery()
DQuery11.h50 d3d11::Query endTimestamp; member
/third_party/mindspore/mindspore/ccsrc/profiler/device/gpu/
Dgpu_profiling.h127 uint64_t startTimestamp, uint64_t endTimestamp);
Dgpu_profiling.cc363 … const std::string &typestring, uint64_t startTimestamp, uint64_t endTimestamp) { in EventHandleProcess() argument
372 event.end_time_stamp = endTimestamp; in EventHandleProcess()
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
DTracePerfTest.cpp1465 GLint64 endTimestamp = 0; in drawBenchmark() local
1466 glGetQueryObjecti64vEXT(query.endTimestampQuery, GL_QUERY_RESULT, &endTimestamp); in drawBenchmark()
1468 double endHostTime = getHostTimeFromGLTime(endTimestamp); in drawBenchmark()