Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_zipfile64.py54 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL
58 if next_time <= time.time():
59 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL
71 if next_time <= time.time():
72 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL
Dtest_bsddb3.py45 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL variable in TimingCheck
50 if self.next_time <= now:
51 TimingCheck.next_time = now + self._PRINT_WORKING_MSG_INTERVAL
Dtest_compiler.py25 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL
34 if next_time <= time.time():
35 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL
/device/google/contexthub/firmware/os/drivers/orientation/
Dorientation.c192 uint64_t ResamplePeriodNs, curr_time, next_time; in fillSamples() local
225 next_time = ev->referenceTime; in fillSamples()
227 next_time = curr_time + next_sample->deltaTime; in fillSamples()
230 sample_spacing_ns = (next_time > curr_time) ? (next_time - curr_time) : 0; in fillSamples()
243 curr_time = next_time; in fillSamples()