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

  /external/chromium_org/third_party/webrtc/system_wrappers/source/
rtp_to_ntp.cc 43 // |new_timestamp|, and compensates by adding 2^32 if that is the case.
44 bool CompensateForWrapAround(uint32_t new_timestamp,
48 int64_t wraps = CheckForWrapArounds(new_timestamp, old_timestamp);
53 *compensated_timestamp = new_timestamp + (wraps << 32);
133 int CheckForWrapArounds(uint32_t new_timestamp, uint32_t old_timestamp) {
134 if (new_timestamp < old_timestamp) {
136 // (e.g. |new_timestamp| = 1, |rtcp_rtp_timestamp| = 2^32 - 1). Since it is
138 if (static_cast<int32_t>(new_timestamp - old_timestamp) > 0) {
142 } else if (static_cast<int32_t>(old_timestamp - new_timestamp) > 0) {
  /development/testrunner/
logger.py 87 def SetTimestampLogging(new_timestamp=True):
90 _log_time = new_timestamp
  /external/chromium_org/third_party/android_testrunner/
logger.py 87 def SetTimestampLogging(new_timestamp=True):
90 _log_time = new_timestamp
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
overuse_detector.cc 53 bool new_timestamp = (timestamp != current_frame_.timestamp); local
58 new_timestamp = (timestamp_ms != current_frame_.timestamp_ms);
67 } else if (new_timestamp) {
  /external/chromium_org/media/base/android/
media_codec_bridge_unittest.cc 117 base::TimeDelta new_timestamp; local
135 &new_timestamp,
143 ASSERT_TRUE(new_timestamp >= timestamp);
145 timestamp = new_timestamp;
  /external/chromium_org/sync/tools/testserver/
chromiumsync.py 465 def SaveProgress(self, new_timestamp, get_updates_response):
466 """Write the new_timestamp or new_progress_marker fields to a response."""
473 final_stamp = max(old_timestamp, new_timestamp)
478 if self._original_request.from_timestamp < new_timestamp:
479 get_updates_response.new_timestamp = new_timestamp
    [all...]
chromiumsync_test.py 327 self.assertFalse(response.HasField('new_timestamp'))
332 self.assertTrue(response.HasField('new_timestamp'))
333 self.assertEqual(15413, response.new_timestamp)
352 self.assertFalse(response.HasField('new_timestamp'))
374 self.assertFalse(response.HasField('new_timestamp'))
383 self.assertFalse(response.HasField('new_timestamp'))
392 self.assertFalse(response.HasField('new_timestamp'))
419 self.assertFalse(response.HasField('new_timestamp'))
442 self.assertFalse(response.HasField('new_timestamp'))
503 self.assertFalse(response.HasField('new_timestamp'))
    [all...]
  /external/chromium_org/chrome/browser/search_engines/
template_url_service_sync_unittest.cc 1849 base::Time new_timestamp = added_turl->last_modified(); local
    [all...]

Completed in 242 milliseconds