Home
last modified time | relevance | path

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

/external/chromium_org/content/browser/loader/
Dthrottling_resource_handler.cc21 next_index_(0), in ThrottlingResourceHandler()
41 while (next_index_ < throttles_.size()) { in OnRequestRedirected()
42 int index = next_index_; in OnRequestRedirected()
44 next_index_++; in OnRequestRedirected()
56 next_index_ = 0; // Reset for next time. in OnRequestRedirected()
65 while (next_index_ < throttles_.size()) { in OnWillStart()
66 int index = next_index_; in OnWillStart()
68 next_index_++; in OnWillStart()
79 next_index_ = 0; // Reset for next time. in OnWillStart()
89 while (next_index_ < throttles_.size()) { in OnBeforeNetworkStart()
[all …]
Dthrottling_resource_handler.h69 size_t next_index_; variable
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
Dsync_buffer.cc20 return Size() - next_index_; in FutureLength()
27 if (samples_added <= next_index_) { in PushBack()
28 next_index_ -= samples_added; in PushBack()
35 next_index_ = 0; in PushBack()
51 if (next_index_ >= position) { in InsertZerosAtIndex()
53 set_next_index(next_index_ + length); // Overflow handled by subfunction. in InsertZerosAtIndex()
81 ReadInterleavedFromIndex(next_index_, samples_to_read, output); in GetNextAudioInterleaved()
82 next_index_ += samples_to_read; in GetNextAudioInterleaved()
92 next_index_ = Size(); in Flush()
99 next_index_ = std::min(value, Size()); in set_next_index()
Dsync_buffer.h24 next_index_(length), in SyncBuffer()
85 size_t next_index() const { return next_index_; } in next_index()
93 size_t next_index_;
/external/chromium_org/third_party/webrtc/base/
Drollingaccumulator.h44 next_index_ = 0U; in Reset()
56 T sample_to_remove = samples_[next_index_]; in AddSample()
70 samples_[next_index_] = sample; in AddSample()
82 next_index_ = (next_index_ + 1) % max_count(); in AddSample()
100 max_ = samples_[next_index_]; in ComputeMax()
102 max_ = _max(max_, samples_[(next_index_ + i) % max_count()]); in ComputeMax()
113 min_ = samples_[next_index_]; in ComputeMin()
115 min_ = _min(min_, samples_[(next_index_ + i) % max_count()]); in ComputeMin()
137 size_t index = (next_index_ + max_size - i - 1) % max_size; in ComputeWeightedMean()
158 size_t next_index_; variable
Dfakenetwork.h34 next_index_(0), in FakeNetworkManager()
43 SocketAddress address("test" + rtc::ToString(next_index_++), 0); in AddInterface()
112 int next_index_; variable
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
Daudio_loop.cc50 const int16_t* output_ptr = &audio_array_[next_index_]; in GetNextBlock()
51 next_index_ = (next_index_ + block_length_samples_) % loop_length_samples_; in GetNextBlock()
Daudio_loop.h28 : next_index_(0), in AudioLoop()
49 size_t next_index_;
/external/chromium_org/cc/surfaces/
Dsurface_aggregator.cc36 : surface_id_(surface_id), next_index_(1) {} in RenderPassIdAllocator()
42 id_to_index_map_[id] = next_index_++; in AddKnownPass()
53 int next_index_; member in cc::SurfaceAggregator::RenderPassIdAllocator
/external/chromium_org/net/socket/
Dsocket_test_util.h599 SocketDataProviderArray() : next_index_(0) {} in SocketDataProviderArray()
602 DCHECK_LT(next_index_, data_providers_.size()); in GetNext()
603 return data_providers_[next_index_++]; in GetNext()
611 size_t next_index() { return next_index_; } in next_index()
613 void ResetNextIndex() { next_index_ = 0; } in ResetNextIndex()
618 size_t next_index_;
/external/chromium_org/v8/src/
Dheap-snapshot-generator.cc994 next_index_(0) { in IndexedReferencesExtractor()
1003 ++next_index_; in VisitPointers()
1005 generator_->SetHiddenReference(parent_obj_, parent_, next_index_, *p); in VisitPointers()
1038 int next_index_; member in v8::internal::IndexedReferencesExtractor
Dobjects-inl.h2336 int ret = next_index_++; in next_index()
2343 return next_index_ > array_->last_index(type_, final_section_); in is_finished()
2348 if (next_index_ > array_->last_index(type_, current_section_) && in update_section()
2352 next_index_ = array_->first_index(type_, EXTENDED_SECTION); in update_section()
Dobjects.h2664 next_index_(array->first_index(type, SMALL_SECTION)) { in Iterator()
2673 next_index_(array->first_index(type, section)) { in Iterator()
2687 int next_index_; variable