HomeSort by relevance Sort by last modified time
    Searched refs:old_timestamp (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/media/cast/rtcp/
rtcp_unittest.cc 461 uint32 old_timestamp = 0; local
462 EXPECT_EQ(0, rtcp_peer.CheckForWrapAround(new_timestamp, old_timestamp));
464 old_timestamp = 1234567000;
465 EXPECT_EQ(0, rtcp_peer.CheckForWrapAround(new_timestamp, old_timestamp));
467 old_timestamp = 1234567890;
468 EXPECT_EQ(0, rtcp_peer.CheckForWrapAround(new_timestamp, old_timestamp));
470 old_timestamp = 4234567890u;
471 EXPECT_EQ(1, rtcp_peer.CheckForWrapAround(new_timestamp, old_timestamp));
473 old_timestamp = 123;
474 EXPECT_EQ(-1, rtcp_peer.CheckForWrapAround(new_timestamp, old_timestamp));
    [all...]
rtcp.cc 475 uint32 old_timestamp) const {
476 if (new_timestamp < old_timestamp) {
480 if (static_cast<int32>(new_timestamp - old_timestamp) > 0) {
483 } else if (static_cast<int32>(old_timestamp - new_timestamp) > 0) {
rtcp.h 108 uint32 old_timestamp) const;
  /external/chromium/net/tools/testserver/
chromiumsync.py 222 for data_type, old_timestamp in self._state.iteritems():
227 new_marker.token = str(max(old_timestamp, new_timestamp))
    [all...]
  /external/chromium_org/sync/tools/testserver/
chromiumsync.py 460 for data_type, old_timestamp in self._state.iteritems():
465 final_stamp = max(old_timestamp, new_timestamp)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.c 2070 int old_level, old_timestamp, old_show_keys; local
    [all...]

Completed in 540 milliseconds