Searched refs:prev_timestamp (Results 1 – 4 of 4) sorted by relevance
73 prev_timestamp = 084 if sample_timestamp < prev_timestamp:86 prev_timestamp = entry_timestamp88 if prev_timestamp == 0:
88 prev_timestamp = ref_stats.frame_timestamps[-1][-1]89 ref_stats.frame_times[-1].append(timestamp - prev_timestamp)118 prev_timestamp = ref_stats.frame_timestamps[-1][-1]119 ref_stats.frame_times[-1].append(timestamp - prev_timestamp)152 prev_timestamp = ref_stats.frame_timestamps[-1][-1]153 ref_stats.frame_times[-1].append(timestamp - prev_timestamp)
744 inline bool IsNewerTimestamp(uint32_t timestamp, uint32_t prev_timestamp) { in IsNewerTimestamp() argument749 if (static_cast<uint32_t>(timestamp - prev_timestamp) == 0x80000000) { in IsNewerTimestamp()750 return timestamp > prev_timestamp; in IsNewerTimestamp()752 return timestamp != prev_timestamp && in IsNewerTimestamp()753 static_cast<uint32_t>(timestamp - prev_timestamp) < 0x80000000; in IsNewerTimestamp()
1847 uint32_t prev_timestamp = 0; in ExtractPackets() local1887 prev_timestamp = packet->header.timestamp; in ExtractPackets()1926 size_t ts_diff = header->timestamp - prev_timestamp; in ExtractPackets()