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

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
audio_loop.h 28 : next_index_(0),
49 size_t next_index_; member in class:webrtc::test::AudioLoop
audio_loop.cc 50 const int16_t* output_ptr = &audio_array_[next_index_];
51 next_index_ = (next_index_ + block_length_samples_) % loop_length_samples_;
  /external/chromium_org/content/browser/loader/
throttling_resource_handler.cc 21 next_index_(0),
41 while (next_index_ < throttles_.size()) {
42 int index = next_index_;
44 next_index_++;
56 next_index_ = 0; // Reset for next time.
65 while (next_index_ < throttles_.size()) {
66 int index = next_index_;
68 next_index_++;
79 next_index_ = 0; // Reset for next time.
89 while (next_index_ < throttles_.size())
    [all...]
throttling_resource_handler.h 69 size_t next_index_; member in class:content::ThrottlingResourceHandler
  /external/chromium_org/third_party/webrtc/base/
rollingaccumulator.h 44 next_index_ = 0U;
56 T sample_to_remove = samples_[next_index_];
70 samples_[next_index_] = sample;
81 // Update next_index_.
82 next_index_ = (next_index_ + 1) % max_count();
100 max_ = samples_[next_index_];
102 max_ = _max(max_, samples_[(next_index_ + i) % max_count()]);
113 min_ = samples_[next_index_];
115 min_ = _min(min_, samples_[(next_index_ + i) % max_count()])
158 size_t next_index_; member in class:rtc::RollingAccumulator
    [all...]
fakenetwork.h 34 next_index_(0),
43 SocketAddress address("test" + rtc::ToString(next_index_++), 0);
112 int next_index_; member in class:rtc::FakeNetworkManager
  /external/chromium_org/third_party/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),
35 // maintain a constant buffer size. The |next_index_| is updated to reflect
41 // maintain a constant buffer size. The |next_index_| is updated to reflect
58 // The |next_index_| is not updated.
69 // into |output|. The |next_index_| is updated to point to the sample to read
77 // |next_index_| will point to the end, like when the buffer was first
85 size_t next_index() const { return next_index_; }
93 size_t next_index_; member in class:webrtc::SyncBuffer
  /external/chromium_org/cc/surfaces/
surface_aggregator.cc 36 : surface_id_(surface_id), next_index_(1) {}
42 id_to_index_map_[id] = next_index_++;
53 int next_index_; member in class:cc::SurfaceAggregator::RenderPassIdAllocator
  /external/chromium_org/net/socket/
socket_test_util.h 599 SocketDataProviderArray() : next_index_(0) {}
602 DCHECK_LT(next_index_, data_providers_.size());
603 return data_providers_[next_index_++];
611 size_t next_index() { return next_index_; }
613 void ResetNextIndex() { next_index_ = 0; }
618 size_t next_index_; member in class:net::SocketDataProviderArray
    [all...]
  /external/chromium_org/v8/src/
heap-snapshot-generator.cc 1038 int next_index_; member in class:v8::internal::IndexedReferencesExtractor
    [all...]
objects-inl.h     [all...]
objects.h 2687 int next_index_; member in class:v8::internal::ConstantPoolArray::BASE_EMBEDDED
    [all...]

Completed in 228 milliseconds