Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DScopedHashTable.h240 while (ScopedHashTableVal<K, V> *ThisEntry = LastValInScope) { in ~ScopedHashTableScope() local
242 if (!ThisEntry->getNextForKey()) { in ~ScopedHashTableScope()
243 assert(HT.TopLevelMap[ThisEntry->getKey()] == ThisEntry && in ~ScopedHashTableScope()
245 HT.TopLevelMap.erase(ThisEntry->getKey()); in ~ScopedHashTableScope()
247 ScopedHashTableVal<K, V> *&KeyEntry = HT.TopLevelMap[ThisEntry->getKey()]; in ~ScopedHashTableScope()
248 assert(KeyEntry == ThisEntry && "Scope imbalance!"); in ~ScopedHashTableScope()
249 KeyEntry = ThisEntry->getNextForKey(); in ~ScopedHashTableScope()
253 LastValInScope = ThisEntry->getNextInScope(); in ~ScopedHashTableScope()
256 ThisEntry->Destroy(HT.getAllocator()); in ~ScopedHashTableScope()