Home
last modified time | relevance | path

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

/external/rust/crates/chrono/src/
Doldtime.rs20 const NANOS_PER_MICRO: i32 = 1000; constant
128 let nanos = micros as i32 * NANOS_PER_MICRO; in microseconds()
196 let nanos_part = self.nanos_mod_sec() / NANOS_PER_MICRO; in num_microseconds()
396 } else if abs.nanos % NANOS_PER_MICRO == 0 { in fmt()
397 write!(f, "T{}.{:06}S", secs, abs.nanos / NANOS_PER_MICRO)?; in fmt()
/external/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
DStructuredDataDarwinLog.cpp47 const uint64_t NANOS_PER_MICRO = 1000; variable
48 const uint64_t NANOS_PER_MILLI = NANOS_PER_MICRO * 1000;