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/ |
D | ccbench.py | 163 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/ |
D | test_dummy_thread.py | 73 start_time = int(time.time()) 83 self.assertTrue((end_time - start_time) >= DELAY,
|
D | test_signal.py | 448 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:
|
D | regrtest.py | 869 start_time = time.time() 881 test_time = time.time() - start_time
|
/device/google/contexthub/firmware/os/algos/calibration/magnetometer/ |
D | mag_cal.c | 142 moc->start_time = 0; in magCalReset() 148 if ((sample_time_us - moc->start_time > MIN_BATCH_WINDOW) && in moc_batch_complete() 152 } else if (sample_time_us - moc->start_time > MAX_BATCH_WINDOW) { in moc_batch_complete() 241 moc->start_time = sample_time_us; in magCalUpdate()
|
D | mag_cal.h | 45 uint64_t start_time; member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | trace.py | 482 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/ |
D | accel_cal.h | 57 uint64_t start_time; member
|
D | accel_cal.c | 115 asd->start_time = 0; in asdReset() 195 if ((sample_time_nanos - asd->start_time > asd->min_batch_window) && in stillnessBatchComplete() 197 if (sample_time_nanos - asd->start_time < asd->max_batch_window) { in stillnessBatchComplete() 204 } else if (sample_time_nanos - asd->start_time > asd->min_batch_window && in stillnessBatchComplete() 233 asd->start_time = sample_time_nanos; in accelStillnessDetection()
|
/device/google/contexthub/util/nanotool/ |
D | contexthub.cpp | 529 SteadyClock start_time = std::chrono::steady_clock::now(); in ReadAppEvents() local 533 auto delta = end_time - start_time; in ReadAppEvents()
|