Home
last modified time | relevance | path

Searched refs:next_index_ (Results 1 – 12 of 12) 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/snapshot/
Dstartup-serializer.h35 PartialCacheIndexMap() : map_(), next_index_(0) {} in PartialCacheIndexMap()
45 *index_out = next_index_; in LookupOrInsert()
46 map_.Set(obj, next_index_++); in LookupOrInsert()
53 int next_index_; variable
/external/v8/src/compiler/
Dload-elimination.h50 nodes_[next_index_++] = node; in NON_EXPORTED_BASE()
55 that->nodes_[that->next_index_] = node; in NON_EXPORTED_BASE()
56 that->next_index_ = (that->next_index_ + 1) % arraysize(nodes_); in NON_EXPORTED_BASE()
67 size_t next_index_ = 0; in NON_EXPORTED_BASE() local
83 elements_[next_index_++] = Element(object, index, value); in NON_EXPORTED_BASE()
89 that->elements_[that->next_index_] = Element(object, index, value); in NON_EXPORTED_BASE()
90 that->next_index_ = (that->next_index_ + 1) % arraysize(elements_); in NON_EXPORTED_BASE()
113 size_t next_index_ = 0; in NON_EXPORTED_BASE() local
Dload-elimination.cc179 copy->nodes_[copy->next_index_++] = this_node; in Merge()
184 copy->next_index_ %= arraysize(nodes_); in Merge()
223 that->elements_[that->next_index_++] = element; in Kill()
226 that->next_index_ %= arraysize(elements_); in Kill()
276 copy->elements_[copy->next_index_++] = this_element; in Merge()
281 copy->next_index_ %= arraysize(elements_); in Merge()
/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/asmjs/
Dasm-typer.h209 int next_index_ = 0; member
Dasm-typer.cc93 if (current->statements_->length() <= current->next_index_) { in Next()
99 current->statements_->at(current->next_index_++); in Next()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc974 next_index_(0) {} in IndexedReferencesExtractor()
983 ++next_index_; in VisitPointers()
990 generator_->SetHiddenReference(parent_obj_, parent_, next_index_, *p, in VisitPointers()
1001 int next_index_; member in v8::internal::IndexedReferencesExtractor