Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/
Dmain.cc77 int32_t previous_time = 0; in main() local
84 error_reporter, previous_time, current_time, &how_many_new_slices); in main()
89 previous_time = current_time; in main()
/external/autotest/client/cros/chameleon/
Davsync_probe_utils.py306 previous_time = self.binarize_data[0][TIME_INDEX]
310 time_difference = time - previous_time
316 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
770 if (draw->previous_time + interval * 1000000 <= current_time) { in show_fps()
771 if (draw->previous_time) { in show_fps()
774 (double)(current_time - draw->previous_time)); in show_fps()
777 draw->previous_time = current_time; in show_fps()