Searched refs:newIt (Results 1 – 1 of 1) sorted by relevance
/developtools/hiperf/src/ |
D | callstack.cpp | 557 const auto newIt = newCallFrames.end() - expandLimit; in DoExpandCallStack() local 558 if (newIt != newCallFrames.end()) { in DoExpandCallStack() 559 HLOGM("try find new call chain bottom %s for limit %zu", newIt->ToString().c_str(), in DoExpandCallStack() 566 auto cachedIt = find(cachedCallFrames.begin(), cachedCallFrames.end(), *newIt); in DoExpandCallStack() 576 if (std::equal(newIt, newIt + expandLimit, cachedIt)) { in DoExpandCallStack() 577 HLOGM("match %s + %zu", newIt->ToString().c_str(), expandLimit); in DoExpandCallStack() 598 cachedIt = find(cachedIt, cachedCallFrames.end(), *newIt); in DoExpandCallStack()
|