HomeSort by relevance Sort by last modified time
    Searched defs:next_index_ (Results 1 - 7 of 7) 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 38 PartialCacheIndexMap() : map_(), next_index_(0) {}
48 *index_out = next_index_;
49 map_.Set(obj, next_index_++);
56 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/perfetto/src/profiling/memory/
heapprofd_producer.h 186 uint64_t next_index_ = 0; member in struct:perfetto::profiling::HeapprofdProducer::DataSource
  /external/v8/src/compiler/
load-elimination.h 54 nodes_[next_index_++] = node;
59 that->nodes_[that->next_index_] = node;
60 that->next_index_ = (that->next_index_ + 1) % arraysize(nodes_);
71 size_t next_index_ = 0; member in class:v8::internal::compiler::final::final
88 elements_[next_index_++] = Element(object, index, value, representation);
95 that->elements_[that->next_index_] =
97 that->next_index_ = (that->next_index_ + 1) % arraysize(elements_);
126 size_t next_index_ = 0 member in class:v8::internal::compiler::final::final
    [all...]

Completed in 204 milliseconds