Searched defs:old_timestamp (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Drtp_to_ntp.cc42 // Detects if there has been a wraparound between |old_timestamp| and
45 uint32_t old_timestamp,
48 int64_t wraps = CheckForWrapArounds(new_timestamp, old_timestamp);
133 int CheckForWrapArounds(uint32_t new_timestamp, uint32_t old_timestamp) { argument
134 if (new_timestamp < old_timestamp) {
138 if (static_cast<int32_t>(new_timestamp - old_timestamp) > 0) {
142 } else if (static_cast<int32_t>(old_timestamp - new_timestamp) > 0) {
44 CompensateForWrapAround(uint32_t new_timestamp, uint32_t old_timestamp, int64_t* compensated_timestamp) argument
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwpa_supplicant.c2452 int old_level, old_timestamp, old_show_keys; local
2464 old_timestamp = wpa_debug_timestamp;
2473 if (wpa_debug_timestamp != old_timestamp)

Completed in 138 milliseconds