Searched refs:tpend (Results 1 – 4 of 4) sorted by relevance
31 struct timeval tpend; in CurMs() local32 gettimeofday(&tpend, nullptr); in CurMs()33 return (tpend.tv_sec * 1000000 + tpend.tv_usec) / 1000; in CurMs()
926 struct timeval tpend; in CurMs() local927 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()
36 struct timeval tpend; in CurMs() local37 gettimeofday(&tpend, nullptr); in CurMs()38 …return (tpend.tv_sec * MICROSECONDS_IN_ONE_SECOND + tpend.tv_usec) / MICROSECONDS_IN_ONE_MILLISECO… in CurMs()
1064 struct timeval tpend; in CurMs() local1065 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()