OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Peak
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
delay_peak_detector.h
32
// Returns true if
peak
-mode is active. That is, delay peaks were observed
36
// Calculates and returns the maximum delay
peak
height. Returns -1 if no
40
// Calculates and returns the maximum delay
peak
distance in ms.
45
// and the current target buffer level (needed to decide if a
peak
is observed
46
// or not). Returns true if
peak
-mode is active, false if not.
50
// the counter if it is non-negative. A negative denotes that no
peak
has
63
}
Peak
;
67
std::list<
Peak
> peak_history_;
delay_peak_detector.cc
18
// delay peaks. When a
peak
is observed, the "height" (the time elapsed since
19
// the previous packet arrival) and the
peak
"period" (the time since the last
20
// observed
peak
) is recorded in a vector. When enough peaks have been observed,
21
//
peak
-mode is engaged and the DelayManager asks the DelayPeakDetector for
22
// the worst
peak
height.
31
peak_period_counter_ms_ = -1; // Indicate that next
peak
is the first.
45
std::list<
Peak
>::const_iterator it;
54
std::list<
Peak
>::const_iterator it;
64
// A delay
peak
is observed.
66
// This is the first
peak
. Reset the period counter
[
all
...]
/art/compiler/utils/
scoped_arena_allocator.h
49
struct
Peak
;
52
struct StatsAndPool : TaggedStats<
Peak
>, TaggedStats<Current> {
58
return static_cast<TaggedStats<
Peak
>*>(&stats_and_pool_);
scoped_arena_allocator.cc
52
return MemStats("ArenaStack
peak
", static_cast<const TaggedStats<
Peak
>*>(&stats_and_pool_),
Completed in 156 milliseconds