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

  /external/deqp-deps/SPIRV-Tools/source/opt/
tree_iterator.h 97 std::pair<NodePtr, NodeIterator>& next_it = parent_iterators_.top(); local
99 current_ = *next_it.second;
101 ++next_it.second;
103 if (next_it.first->end() == next_it.second) parent_iterators_.pop();
204 std::pair<NodePtr, NodeIterator>& next_it = parent_iterators_.top(); local
206 if (next_it.second == next_it.first->end()) {
208 current_ = next_it.first;
214 current_ = *next_it.second
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
tree_iterator.h 97 std::pair<NodePtr, NodeIterator>& next_it = parent_iterators_.top(); local
99 current_ = *next_it.second;
101 ++next_it.second;
103 if (next_it.first->end() == next_it.second) parent_iterators_.pop();
204 std::pair<NodePtr, NodeIterator>& next_it = parent_iterators_.top(); local
206 if (next_it.second == next_it.first->end()) {
208 current_ = next_it.first;
214 current_ = *next_it.second
    [all...]
  /external/pdfium/fpdfsdk/
fpdfedittext.cpp 163 auto next_it = std::next(iter); local
170 if (next_it == to_unicode.end() || curCharcode + 1 != next_it->first)
175 next_it = std::next(iter);
183 if (next_it == to_unicode.end() || curCharcode + 1 != next_it->first ||
184 curUnicode + 1 != next_it->second) {
190 next_it = std::next(iter);
362 auto next_it = std::next(it); local
363 if (next_it == widths.end() || next_it->first != it->first + 1 |
381 auto next_it = std::next(it); local
    [all...]
  /art/runtime/gc/collector/
garbage_collector.cc 112 auto next_it = it; local
113 next_it++;
114 while (next_it != gc_ranges->end()) {
115 if (it->second == next_it->first) {
116 it->second = next_it->second;
117 next_it = gc_ranges->erase(next_it);
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/quantiles/
weighted_quantiles_summary.h 203 auto next_it = read_it + 1; local
204 while (next_it != entries_.end() && add_accumulator < add_step &&
205 next_it->PrevMaxRank() - read_it->NextMinRank() <= eps_delta) {
207 ++next_it;
209 if (read_it == next_it - 1) {
212 read_it = next_it - 1;
  /external/tensorflow/tensorflow/core/kernels/boosted_trees/quantiles/
weighted_quantiles_summary.h 211 auto next_it = read_it + 1; local
212 while (next_it != entries_.end() && add_accumulator < add_step &&
213 next_it->PrevMaxRank() - read_it->NextMinRank() <= eps_delta) {
215 ++next_it;
217 if (read_it == next_it - 1) {
220 read_it = next_it - 1;
  /art/compiler/debug/
elf_debug_loc_writer.h 127 auto next_it = it; local
128 next_it++;
129 const uint32_t high_pc = next_it != stack_maps.end()
130 ? next_it->first

Completed in 129 milliseconds