Home
last modified time | relevance | path

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

/external/rust/android-crates-io/crates/protobuf-json-mapping/src/
Drfc_3339.rs199 fn from_cycle_start_add_duration(mut cycle_start: i64, add: Duration) -> TmUtc { in from_cycle_start_add_duration()
200 debug_assert!(cycle_start % 400 == 0); in from_cycle_start_add_duration()
208 cycle_start += cycles as i64 * 400; in from_cycle_start_add_duration()
214 let (year,) = (cycle_start + year_mod_400,); in from_cycle_start_add_duration()
262 let cycle_start = self.year - year_mod_400 as i64; in to_protobuf_timestamp() localVariable
270 let epoch_seconds = (cycle_start - 1600) / 400 * CYCLE_SECONDS as i64 in to_protobuf_timestamp()
/external/rust/android-crates-io/crates/zerovec/src/map/
Dvecs.rs339 for cycle_start in 0..permutation.len() { in zvl_permute()
340 let mut curr = cycle_start; in zvl_permute()
343 while next != cycle_start { in zvl_permute()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dir_emitter.cc3018 llvm::Value* cycle_start) { in UpdateProfileCounter() argument
3019 auto* cycle_diff = b->CreateSub(cycle_end, cycle_start); in UpdateProfileCounter()
3044 auto* cycle_start = ReadCycleCounter(b); in RecordCycleStart() local
3045 cycle_start->setName(IrName(hlo, "cycle_start")); in RecordCycleStart()
3046 cycle_starts_[hlo] = cycle_start; in RecordCycleStart()
3048 first_read_cycle_start_ = cycle_start; in RecordCycleStart()
3057 auto* cycle_start = cycle_starts_[hlo]; in RecordCycleDelta() local
3058 UpdateProfileCounter(b, prof_counter, cycle_end, cycle_start); in RecordCycleDelta()
Dir_emitter.h576 llvm::Value* cycle_end, llvm::Value* cycle_start);