Lines Matching refs:Id

113     const uint64_t Id =  in readMemInfoBlocksV3()  local
127 Items.push_back({Id, MIB}); in readMemInfoBlocksV3()
143 const uint64_t Id = in readMemInfoBlocksV4() local
161 Items.push_back({Id, MIB}); in readMemInfoBlocksV4()
195 for (const auto &[Id, Stack] : From) { in mergeStackMap()
196 auto I = To.find(Id); in mergeStackMap()
198 To[Id] = Stack; in mergeStackMap()
281 for (const auto &Id : BuildIds) { in create() local
283 ErrorMessage += Id; in create()
547 for (const auto &[Id, Locs] : PerFunctionCallSites) { in mapRawProfileToRecords()
550 auto Result = FunctionProfileData.insert({Id, IndexedMemProfRecord()}); in mapRawProfileToRecords()
634 for (const uint64_t Id : EntriesToErase) { in symbolizeAndFilterStackFrames() local
635 StackMap.erase(Id); in symbolizeAndFilterStackFrames()
636 if(CallstackProfileData[Id].AccessHistogramSize > 0) in symbolizeAndFilterStackFrames()
637 free((void*) CallstackProfileData[Id].AccessHistogram); in symbolizeAndFilterStackFrames()
638 CallstackProfileData.erase(Id); in symbolizeAndFilterStackFrames()
716 for (const auto &[Id, MIB] : readMemInfoBlocks(Next + Header->MIBOffset)) { in readRawProfile()
717 if (CallstackProfileData.count(Id)) { in readRawProfile()
720 (CallstackProfileData[Id].AccessHistogramSize > 0 || in readRawProfile()
723 if (CallstackProfileData[Id].AccessHistogramSize > in readRawProfile()
727 ShorterHistogram = CallstackProfileData[Id].AccessHistogram; in readRawProfile()
728 CallstackProfileData[Id].Merge(MIB); in readRawProfile()
731 CallstackProfileData[Id].Merge(MIB); in readRawProfile()
734 CallstackProfileData[Id] = MIB; in readRawProfile()
780 auto IdToFrameCallback = [this](const FrameId Id) { in readNextRecord() argument
781 Frame F = this->idToFrame(Id); in readNextRecord()