HomeSort by relevance Sort by last modified time
    Searched defs:next_index_ (Results 1 - 8 of 8) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
audio_loop.h 29 : next_index_(0),
49 size_t next_index_; member in class:webrtc::test::AudioLoop
  /external/webrtc/webrtc/modules/audio_coding/neteq/
sync_buffer.h 24 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/v8/src/snapshot/
startup-serializer.h 35 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/base/
fakenetwork.h 39 AddInterface(iface, "test" + rtc::ToString(next_index_++));
119 int next_index_ = 0; member in class:rtc::FakeNetworkManager
rollingaccumulator.h 45 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_ + i) % max_count()])
159 size_t next_index_; member in class:rtc::RollingAccumulator
    [all...]
  /external/v8/src/compiler/
load-elimination.h 50 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_ = 0 member in class:v8::internal::compiler::final::final
    [all...]
  /external/v8/src/asmjs/
asm-typer.h 209 int next_index_ = 0; member in struct:v8::internal::wasm::final::FlattenedStatements::Context
  /external/v8/src/profiler/
heap-snapshot-generator.cc 1001 int next_index_; member in class:v8::internal::IndexedReferencesExtractor
    [all...]

Completed in 105 milliseconds