Home
last modified time | relevance | path

Searched refs:tpend (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/commonlibrary/c_utils/base/test/unittest/common/
H A Dutils_timer_test.cpp31 struct timeval tpend; in CurMs() local
32 gettimeofday(&tpend, nullptr); in CurMs()
33 return (tpend.tv_sec * 1000000 + tpend.tv_usec) / 1000; in CurMs()
H A Dutils_event_test.cpp926 struct timeval tpend; in CurMs() local
927 gettimeofday(&tpend, nullptr); in CurMs()
928 return (tpend.tv_sec * 1000000 + tpend.tv_usec) / 1000; // 1000000: s to us, 1000: us to ms in CurMs()
/ohos5.0/commonlibrary/c_utils/base/test/benchmarktest/timer_benchmark_test/
H A Dtimer_benchmark_test.cpp36 struct timeval tpend; in CurMs() local
37 gettimeofday(&tpend, nullptr); in CurMs()
38 …return (tpend.tv_sec * MICROSECONDS_IN_ONE_SECOND + tpend.tv_usec) / MICROSECONDS_IN_ONE_MILLISECO… in CurMs()
/ohos5.0/commonlibrary/c_utils/base/test/benchmarktest/event_benchmark_test/
H A Devent_benchmark_test.cpp1064 struct timeval tpend; in CurMs() local
1065 gettimeofday(&tpend, nullptr); in CurMs()
1066 return (tpend.tv_sec * 1000000 + tpend.tv_usec) / 1000; // 1000000: s to us, 1000: us to ms in CurMs()