Home
last modified time | relevance | path

Searched refs:fixed_format (Results 1 – 2 of 2) sorted by relevance

/rocksdb-6.9/util/
Dstring_util.cc43 bool fixed_format) { in AppendHumanMicros() argument
44 if (micros < 10000 && !fixed_format) { in AppendHumanMicros()
46 } else if (micros < 10000000 && !fixed_format) { in AppendHumanMicros()
49 } else if (micros < 1000000l * 60 && !fixed_format) { in AppendHumanMicros()
52 } else if (micros < 1000000ll * 60 * 60 && !fixed_format) { in AppendHumanMicros()
Dstring_util.h61 bool fixed_format);