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

  /external/v8/src/ast/
ast-literal-reindexer.h 16 AstLiteralReindexer() : AstVisitor(), next_index_(0) {}
18 int count() const { return next_index_; }
32 literal->literal_index_ = next_index_++;
37 int next_index_; member in class:v8::internal::final
  /external/webrtc/webrtc/base/
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...]
fakenetwork.h 39 AddInterface(iface, "test" + rtc::ToString(next_index_++));
119 int next_index_ = 0; member in class:rtc::FakeNetworkManager
  /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
audio_loop.cc 51 const int16_t* output_ptr = &audio_array_[next_index_];
52 next_index_ = (next_index_ + block_length_samples_) % loop_length_samples_;
  /external/webrtc/webrtc/modules/audio_coding/neteq/
sync_buffer.cc 20 return Size() - next_index_;
27 if (samples_added <= next_index_) {
28 next_index_ -= samples_added;
35 next_index_ = 0;
51 if (next_index_ >= position) {
52 // We are moving the |next_index_| sample.
53 set_next_index(next_index_ + length); // Overflow handled by subfunction.
81 ReadInterleavedFromIndex(next_index_, samples_to_read, output);
82 next_index_ += samples_to_read;
92 next_index_ = Size()
    [all...]
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/profiler/
heap-snapshot-generator.cc 1026 int next_index_; member in class:v8::internal::IndexedReferencesExtractor
    [all...]

Completed in 56 milliseconds