Searched defs:next_index (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/v8/src/
H A Dheap-snapshot-generator-inl.h54 int next_index = index + children_count_; local
56 return next_index;
/external/chromium_org/net/disk_cache/flash/
H A Dlog_store.cc170 int32 next_index = (write_index_ + 1) % num_segments_; local
172 while (InUse(next_index)) {
173 next_index = (next_index + 1) % num_segments_;
174 DCHECK_NE(next_index, write_index_);
176 return next_index;
/external/chromium_org/mojo/system/
H A Dlocal_data_pipe.cc77 size_t next_index = (buffer_first_element_index_ +
80 *buffer = buffer_.get() + next_index * element_size();
208 size_t next_index = buffer_first_element_index_ + local
210 if (next_index >= capacity_num_elements()) {
211 next_index %= capacity_num_elements();
212 DCHECK_GE(buffer_first_element_index_, next_index);
213 return buffer_first_element_index_ - next_index;
215 return capacity_num_elements() - next_index;
/external/chromium/chrome/browser/autocomplete/
H A Dhistory_url_provider.cc747 size_t next_index = source_index + 1; // return value = item after source local
766 if (static_cast<size_t>(next - matches->begin()) < next_index)
767 next_index--;
769 return next_index;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dradeonsi_pipe.h56 unsigned next_index; member in struct:r600_pipe_fences
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dradeonsi_pipe.h56 unsigned next_index; member in struct:r600_pipe_fences
/external/chromium_org/chrome/browser/autocomplete/
H A Dhistory_url_provider.cc1015 size_t next_index = source_index + 1; // return value = item after source local
1035 if (static_cast<size_t>(next - matches->begin()) < next_index)
1036 --next_index;
1038 return next_index;
/external/chromium_org/net/socket/
H A Dsocket_test_util.h605 size_t next_index() { return next_index_; } function in class:net::SocketDataProviderArray
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_pipe.h149 unsigned next_index; member in struct:r600_pipe_fences
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_pipe.h149 unsigned next_index; member in struct:r600_pipe_fences

Completed in 758 milliseconds