OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:old_timestamp
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/webrtc/system_wrappers/source/
rtp_to_ntp.cc
42
// 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
) {
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) {
/external/chromium_org/sync/tools/testserver/
chromiumsync.py
468
for data_type,
old_timestamp
in self._state.iteritems():
473
final_stamp = max(
old_timestamp
, new_timestamp)
[
all
...]
Completed in 32 milliseconds