Lines Matching defs:Curr
141 CallStackTrieNode *Curr = nullptr;
154 Curr = Alloc;
158 auto Next = Curr->Callers.find(StackId);
159 if (Next != Curr->Callers.end()) {
160 Curr = Next->second;
161 Curr->AllocTypes |= static_cast<uint8_t>(AllocType);
162 Curr->TotalSize += TotalSize;
167 Curr->Callers[StackId] = New;
168 Curr = New;
170 assert(Curr);