25 PROFILER_FUNC_START();
30 PROFILER_FUNC_START();
43 PROFILER_FUNC_START();
44 ETime _got = __getElapse();
57 PROFILER_FUNC_START();
59 return ETime(__getElapse());
63 PROFILER_FUNC_START();
64 this->_start = _clk._start;
72 int64_t __getElapse() {
73 PROFILER_FUNC_START();
74 std::chrono::microseconds ms = std::chrono::duration_cast<std::chrono::microseconds >(
75 std::chrono::high_resolution_clock::now().time_since_epoch()
77 int64_t _nVal = ms.count();
79 return (_nVal - _start);
83 PROFILER_FUNC_START();
84 std::chrono::microseconds ms = std::chrono::duration_cast<std::chrono::microseconds >(
85 std::chrono::high_resolution_clock::now().time_since_epoch()