Searched refs:next_index_ (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/content/browser/loader/
H A Dthrottling_resource_handler.cc21 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
[all...]
H A Dthrottling_resource_handler.h69 size_t next_index_; member in class:content::ThrottlingResourceHandler
/external/chromium_org/third_party/webrtc/base/
H A Drollingaccumulator.h44 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_
158 size_t next_index_; member in class:rtc::RollingAccumulator
[all...]
H A Dfakenetwork.h34 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/tools/
H A Daudio_loop.h28 : next_index_(0),
49 size_t next_index_; member in class:webrtc::test::AudioLoop
H A Daudio_loop.cc50 const int16_t* output_ptr = &audio_array_[next_index_];
51 next_index_ = (next_index_ + block_length_samples_) % loop_length_samples_;
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dsync_buffer.cc20 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_
[all...]
H A Dsync_buffer.h24 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/
H A Dsurface_aggregator.cc36 : 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/
H A Dsocket_test_util.h599 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
/external/chromium_org/v8/src/
H A Dheap-snapshot-generator.cc994 next_index_(0) {
1003 ++next_index_;
1005 generator_->SetHiddenReference(parent_obj_, parent_, next_index_, *p);
1038 int next_index_; member in class:v8::internal::IndexedReferencesExtractor
H A Dobjects-inl.h2336 int ret = next_index_++;
2343 return next_index_ > array_->last_index(type_, final_section_);
2348 if (next_index_ > array_->last_index(type_, current_section_) &&
2352 next_index_ = array_->first_index(type_, EXTENDED_SECTION);
H A Dobjects.h2664 next_index_(array->first_index(type, SMALL_SECTION)) {
2673 next_index_(array->first_index(type, section)) {
2687 int next_index_; member in class:v8::internal::ConstantPoolArray::BASE_EMBEDDED

Completed in 1428 milliseconds