Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/micro/examples/micro_speech/
Dmain_functions.cc38 int32_t previous_time = 0; variable
126 previous_time = 0; in setup()
135 error_reporter, previous_time, current_time, &how_many_new_slices); in loop()
140 previous_time = current_time; in loop()
/external/tensorflow/tensorflow/lite/micro/examples/micro_speech/ceva/
Dmain_functions.cc64 int32_t previous_time = 0; variable
149 previous_time = 0; in setup_tf()
160 error_reporter, previous_time, current_time, &how_many_new_slices); in detection_loop()
168 previous_time = current_time; in detection_loop()
/external/autotest/client/cros/chameleon/
Davsync_probe_utils.py311 previous_time = self.binarize_data[0][TIME_INDEX]
315 time_difference = time - previous_time
321 previous_time = time
/external/drrickorang/LoopbackApp/app/src/main/cpp/
Dsles.h36 struct timespec previous_time; member
Dsles.cpp329 stats->previous_time = {0,0}; in initBufferStats()
352 if (stats->previous_time.tv_sec != 0 && stats->buffer_count > BUFFER_PERIOD_DISCARD && in collectBufferPeriod()
355 int64_t callbackDuration = diffInNano(stats->previous_time, stats->current_time); in collectBufferPeriod()
366 stats->previous_time = stats->current_time; in collectBufferPeriod()
/external/mesa3d/src/glx/
Ddri2_glx.c91 uint64_t previous_time; member
778 if (draw->previous_time + interval * 1000000 <= current_time) { in show_fps()
779 if (draw->previous_time) { in show_fps()
782 (double)(current_time - draw->previous_time)); in show_fps()
785 draw->previous_time = current_time; in show_fps()