Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/ccbench/
Dccbench.py163 def __call__(self, start_time, min_duration, end_event, do_yield=False): argument
171 t1 = start_time
181 duration = t2 - start_time
209 start_time = time.time()
210 results.append(loop(start_time, THROUGHPUT_DURATION,
226 results.append(loop(start_time, THROUGHPUT_DURATION,
241 start_time = time.time()
332 loop(start_time, duration * 1.5, end_event, do_yield=False)
353 start_time = _time()
414 start_time = _time()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_dummy_thread.py73 start_time = int(time.time())
83 self.assertTrue((end_time - start_time) >= DELAY,
Dtest_signal.py448 start_time = time.time()
449 while time.time() - start_time < 60.0:
471 start_time = time.time()
472 while time.time() - start_time < 60.0:
Dregrtest.py869 start_time = time.time()
881 test_time = time.time() - start_time
/device/google/contexthub/firmware/os/algos/calibration/magnetometer/mag_cal/
Dmag_cal.c88 moc->start_time = 0; in magCalReset()
95 if ((sample_time_us - moc->start_time > moc->min_batch_window_in_micros) && in moc_batch_complete()
99 } else if (sample_time_us - moc->start_time > MAX_BATCH_WINDOW) { in moc_batch_complete()
153 moc->start_time = sample_time_us; in magCalUpdate()
Dmag_cal.h70 uint64_t start_time; // [micro-seconds] member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dtrace.py482 self.start_time = None
484 self.start_time = time.time()
629 if self.start_time:
630 print '%.2f' % (time.time() - self.start_time),
642 if self.start_time:
643 print '%.2f' % (time.time() - self.start_time),
/device/google/contexthub/firmware/os/algos/calibration/accelerometer/
Daccel_cal.h46 uint64_t start_time; member
Daccel_cal.c122 asd->start_time = 0; in asdReset()
213 if ((sample_time_nanos - asd->start_time > asd->min_batch_window) && in stillnessBatchComplete()
215 if (sample_time_nanos - asd->start_time < asd->max_batch_window) { in stillnessBatchComplete()
222 } else if (sample_time_nanos - asd->start_time > asd->min_batch_window && in stillnessBatchComplete()
251 asd->start_time = sample_time_nanos; in accelStillnessDetection()
/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()