Home
last modified time | relevance | path

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

/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/jni/
Dsles.h47 struct timespec previous_time; member
Dsles.cpp346 stats->previous_time = {0,0}; in initBufferStats()
369 if (stats->previous_time.tv_sec != 0 && stats->buffer_count > BUFFER_PERIOD_DISCARD && in collectBufferPeriod()
372 int64_t callbackDuration = diffInNano(stats->previous_time, stats->current_time); in collectBufferPeriod()
383 stats->previous_time = stats->current_time; in collectBufferPeriod()
/external/mesa3d/src/glx/
Ddri2_glx.c91 uint64_t previous_time; member
764 if (draw->previous_time + interval * 1000000 <= current_time) { in show_fps()
765 if (draw->previous_time) { in show_fps()
768 (double)(current_time - draw->previous_time)); in show_fps()
771 draw->previous_time = current_time; in show_fps()