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

  /external/deqp-deps/SPIRV-Tools/source/util/
bit_vector.cpp 43 auto other_it = other.bits_.begin(); local
46 while (this_it != this->bits_.end() && other_it != other.bits_.end()) {
47 auto temp = *this_it | *other_it;
53 ++other_it;
56 if (other_it != other.bits_.end()) {
58 this->bits_.insert(this->bits_.end(), other_it, other.bits_.end());
  /external/swiftshader/third_party/SPIRV-Tools/source/util/
bit_vector.cpp 43 auto other_it = other.bits_.begin(); local
46 while (this_it != this->bits_.end() && other_it != other.bits_.end()) {
47 auto temp = *this_it | *other_it;
53 ++other_it;
56 if (other_it != other.bits_.end()) {
58 this->bits_.insert(this->bits_.end(), other_it, other.bits_.end());
  /external/v8/src/compiler/
functional-list.h 36 iterator other_it = other.begin(); local
38 if (it == other_it) return true;
39 if (*it != *other_it) return false;
41 ++other_it;
  /external/tensorflow/tensorflow/core/grappler/graph_analyzer/
gen_node.cc 94 auto other_it = map->find(other_name); local
95 if (other_it == map->end()) {
102 GenNode* other_node = other_it->second.get();
  /external/libtextclassifier/actions/
ngram-model.cc 47 ptrdiff_t operator-(const FirstTokenIterator& other_it) const {
48 return index_ - other_it.index_;
  /art/libartbase/base/
mem_map.cc 640 auto other_it = other.IsValid() ? GetGMapsEntry(other) : gMaps->end(); local
647 DCHECK(other_it != gMaps->end());
648 DCHECK_EQ(other_it->second, &other);
649 other_it->second = this;
    [all...]
  /art/libprofile/profile/
profile_compilation_info.cc     [all...]

Completed in 328 milliseconds