OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:last_delay
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/src/modules/audio_processing/utility/
delay_estimator.h
37
int
last_delay
;
member in struct:__anon18351
delay_estimator.c
179
handle->
last_delay
= -2;
254
// whether to update |
last_delay
| or not.
257
// don't update |
last_delay
|.
258
// 2) If the situation is reliable we update |
last_delay
| if the value of the
285
handle->
last_delay
= candidate_delay;
288
handle->
last_delay
= candidate_delay;
294
return handle->
last_delay
;
299
return handle->
last_delay
;
/external/chromium/chrome/browser/sync/engine/
syncer_thread.cc
44
const base::TimeDelta&
last_delay
) {
45
return SyncerThread::GetRecommendedDelay(
last_delay
);
728
TimeDelta SyncerThread::GetRecommendedDelay(const TimeDelta&
last_delay
) {
729
if (
last_delay
.InSeconds() >= kMaxBackoffSeconds)
735
last_delay
.InSeconds() * kBackoffRandomizationFactor);
742
(rand_sign * (
last_delay
.InSeconds() / kBackoffRandomizationFactor));
[
all
...]
syncer_thread.h
167
virtual base::TimeDelta GetDelay(const base::TimeDelta&
last_delay
);
Completed in 161 milliseconds