Home
last modified time | relevance | path

Searched refs:start_time (Results 1 – 6 of 6) sorted by relevance

/device/google/contexthub/firmware/os/algos/calibration/magnetometer/mag_cal/
Dmag_cal.c87 moc->start_time = 0; in magCalReset()
94 if ((sample_time_us - moc->start_time > moc->min_batch_window_in_micros) && in moc_batch_complete()
98 } else if (sample_time_us - moc->start_time > MAX_BATCH_WINDOW) { in moc_batch_complete()
152 moc->start_time = sample_time_us; in magCalUpdate()
Dmag_cal.h70 uint64_t start_time; // [micro-seconds] member
/device/google/cuttlefish/host/commands/casimir_control_server/
Dcasimir_controller.cpp167 auto start_time = std::chrono::steady_clock::now(); in ReadRfPacket() local
176 current_time - start_time); in ReadRfPacket()
/device/google/contexthub/firmware/os/algos/calibration/accelerometer/
Daccel_cal.c124 asd->start_time = 0; in asdReset()
216 if ((sample_time_nanos - asd->start_time > asd->min_batch_window) && in stillnessBatchComplete()
218 if (sample_time_nanos - asd->start_time < asd->max_batch_window) { in stillnessBatchComplete()
225 } else if (sample_time_nanos - asd->start_time > asd->min_batch_window && in stillnessBatchComplete()
254 asd->start_time = sample_time_nanos; in accelStillnessDetection()
Daccel_cal.h47 uint64_t start_time; member
/device/google/contexthub/util/nanotool/
Dcontexthub.cpp531 SteadyClock start_time = std::chrono::steady_clock::now(); in ReadAppEvents() local
535 auto delta = end_time - start_time; in ReadAppEvents()