Searched defs:next_index_ (Results 1 - 8 of 8) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
H A Daudio_loop.h29 : next_index_(0),
49 size_t next_index_; member in class:webrtc::test::AudioLoop
/external/v8/src/snapshot/
H A Dstartup-serializer.h35 PartialCacheIndexMap() : map_(), next_index_(0) {}
45 *index_out = next_index_;
46 map_.Set(obj, next_index_++);
53 int next_index_; member in class:v8::internal::StartupSerializer::PartialCacheIndexMap
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dsync_buffer.h24 next_index_(length),
33 // maintain a constant buffer size. The |next_index_| is updated to reflect
39 // maintain a constant buffer size. The |next_index_| is updated to reflect
56 // The |next_index_| is not updated.
67 // into |output|. The |next_index_| is updated to point to the sample to read
75 // |next_index_| will point to the end, like when the buffer was first
83 size_t next_index() const { return next_index_; }
91 size_t next_index_; member in class:webrtc::SyncBuffer
/external/webrtc/webrtc/base/
H A Dfakenetwork.h39 AddInterface(iface, "test" + rtc::ToString(next_index_++));
119 int next_index_ = 0; member in class:rtc::FakeNetworkManager
H A Drollingaccumulator.h45 next_index_ = 0U;
57 T sample_to_remove = samples_[next_index_];
71 samples_[next_index_] = sample;
82 // Update next_index_.
83 next_index_ = (next_index_ + 1) % max_count();
101 max_ = samples_[next_index_];
103 max_ = std::max(max_, samples_[(next_index_ + i) % max_count()]);
114 min_ = samples_[next_index_];
116 min_ = std::min(min_, samples_[(next_index_
159 size_t next_index_; member in class:rtc::RollingAccumulator
[all...]
/external/v8/src/compiler/
H A Dload-elimination.h50 nodes_[next_index_++] = node;
55 that->nodes_[that->next_index_] = node;
56 that->next_index_ = (that->next_index_ + 1) % arraysize(nodes_);
67 size_t next_index_ = 0; member in class:v8::internal::compiler::final::final
83 elements_[next_index_++] = Element(object, index, value);
89 that->elements_[that->next_index_] = Element(object, index, value);
90 that->next_index_ = (that->next_index_ + 1) % arraysize(elements_);
113 size_t next_index_ member in class:v8::internal::compiler::final::final
[all...]
/external/v8/src/asmjs/
H A Dasm-typer.h209 int next_index_ = 0; member in struct:v8::internal::wasm::final::FlattenedStatements::Context
/external/v8/src/profiler/
H A Dheap-snapshot-generator.cc974 next_index_(0) {}
983 ++next_index_;
990 generator_->SetHiddenReference(parent_obj_, parent_, next_index_, *p,
1001 int next_index_; member in class:v8::internal::IndexedReferencesExtractor

Completed in 233 milliseconds