Home
last modified time | relevance | path

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

/art/compiler/utils/
Ddedupe_set.h42 StoreKey* store_ptr; member
52 HashType a_hash = (a.store_ptr != nullptr) ? a.store_hash : a.in_key->first; in operator()
53 HashType b_hash = (b.store_ptr != nullptr) ? b.store_hash : b.in_key->first; in operator()
57 if (a.store_ptr != nullptr && b.store_ptr != nullptr) { in operator()
58 return std::lexicographical_compare(a.store_ptr->begin(), a.store_ptr->end(), in operator()
59 b.store_ptr->begin(), b.store_ptr->end()); in operator()
60 } else if (a.store_ptr != nullptr && b.store_ptr == nullptr) { in operator()
61 return std::lexicographical_compare(a.store_ptr->begin(), a.store_ptr->end(), in operator()
63 } else if (a.store_ptr == nullptr && b.store_ptr != nullptr) { in operator()
65 b.store_ptr->begin(), b.store_ptr->end()); in operator()
[all …]