Home
last modified time | relevance | path

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

/rocksdb-6.9/utilities/persistent_cache/
Dhash_table_bench.cc155 timeval tv; in NowInMillSec() local
156 gettimeofday(&tv, /*tz=*/nullptr); in NowInMillSec()
157 return tv.tv_sec * 1000 + tv.tv_usec / 1000; in NowInMillSec()
/rocksdb-6.9/port/win/
Dport_win.cc56 void gettimeofday(struct timeval* tv, struct timezone* /* tz */) { in gettimeofday() argument
64 tv->tv_sec = static_cast<long>(secNow.count()); in gettimeofday()
65 tv->tv_usec = static_cast<long>(usNow.count() - in gettimeofday()
/rocksdb-6.9/env/
Denv_posix.cc260 struct timeval tv; in NowMicros() local
261 gettimeofday(&tv, nullptr); in NowMicros()
262 return static_cast<uint64_t>(tv.tv_sec) * 1000000 + tv.tv_usec; in NowMicros()
/rocksdb-6.9/port/
Dsys_time.h31 void gettimeofday(struct timeval* tv, struct timezone* tz);