Home
last modified time | relevance | path

Searched refs:next_index_ (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/neteq/
Dsync_buffer.cc20 return Size() - next_index_; in FutureLength()
27 if (samples_added <= next_index_) { in PushBack()
28 next_index_ -= samples_added; in PushBack()
35 next_index_ = 0; in PushBack()
51 if (next_index_ >= position) { in InsertZerosAtIndex()
53 set_next_index(next_index_ + length); // Overflow handled by subfunction. in InsertZerosAtIndex()
81 ReadInterleavedFromIndex(next_index_, samples_to_read, output); in GetNextAudioInterleaved()
82 next_index_ += samples_to_read; in GetNextAudioInterleaved()
92 next_index_ = Size(); in Flush()
99 next_index_ = std::min(value, Size()); in set_next_index()
Dsync_buffer.h24 next_index_(length), in SyncBuffer()
83 size_t next_index() const { return next_index_; } in next_index()
91 size_t next_index_;
/external/webrtc/webrtc/base/
Drollingaccumulator.h45 next_index_ = 0U; in Reset()
57 T sample_to_remove = samples_[next_index_]; in AddSample()
71 samples_[next_index_] = sample; in AddSample()
83 next_index_ = (next_index_ + 1) % max_count(); in AddSample()
101 max_ = samples_[next_index_]; in ComputeMax()
103 max_ = std::max(max_, samples_[(next_index_ + i) % max_count()]); in ComputeMax()
114 min_ = samples_[next_index_]; in ComputeMin()
116 min_ = std::min(min_, samples_[(next_index_ + i) % max_count()]); in ComputeMin()
138 size_t index = (next_index_ + max_size - i - 1) % max_size; in ComputeWeightedMean()
159 size_t next_index_; variable
Dfakenetwork.h39 AddInterface(iface, "test" + rtc::ToString(next_index_++)); in AddInterface()
119 int next_index_ = 0; variable
/external/v8/src/ast/
Dast-literal-reindexer.h16 AstLiteralReindexer() : AstVisitor(), next_index_(0) {} in AstLiteralReindexer()
18 int count() const { return next_index_; } in count()
32 literal->literal_index_ = next_index_++; in UpdateIndex()
37 int next_index_; variable
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
Daudio_loop.cc51 const int16_t* output_ptr = &audio_array_[next_index_]; in GetNextBlock()
52 next_index_ = (next_index_ + block_length_samples_) % loop_length_samples_; in GetNextBlock()
Daudio_loop.h29 : next_index_(0), in AudioLoop()
49 size_t next_index_;
/external/v8/src/profiler/
Dheap-snapshot-generator.cc999 next_index_(0) {} in IndexedReferencesExtractor()
1009 ++next_index_; in VisitPointers()
1016 generator_->SetHiddenReference(parent_obj_, parent_, next_index_, *p); in VisitPointers()
1026 int next_index_; member in v8::internal::IndexedReferencesExtractor