Home
last modified time | relevance | path

Searched refs:prev_timestamp (Results 1 – 3 of 3) sorted by relevance

/external/autotest/client/site_tests/platform_TraceClockMonotonic/
Dplatform_TraceClockMonotonic.py73 prev_timestamp = 0
84 if sample_timestamp < prev_timestamp:
86 prev_timestamp = entry_timestamp
88 if prev_timestamp == 0:
/external/webrtc/webrtc/modules/include/
Dmodule_common_types.h744 inline bool IsNewerTimestamp(uint32_t timestamp, uint32_t prev_timestamp) { in IsNewerTimestamp() argument
749 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()
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dneteq_impl.cc1847 uint32_t prev_timestamp = 0; in ExtractPackets() local
1887 prev_timestamp = packet->header.timestamp; in ExtractPackets()
1926 size_t ts_diff = header->timestamp - prev_timestamp; in ExtractPackets()