Searched defs:NumCounters (Results 1 - 3 of 3) sorted by relevance

/external/compiler-rt/lib/profile/
H A DInstrProfiling.h34 const uint32_t NumCounters; member in struct:__llvm_profile_data
/external/llvm/lib/ProfileData/
H A DInstrProfReader.cpp103 uint64_t NumCounters;
106 if ((Line++)->getAsInteger(10, NumCounters))
108 if (NumCounters == 0)
113 Counts.reserve(NumCounters);
114 for (uint64_t I = 0; I < NumCounters; ++I) {
246 uint32_t NumCounters = swap(Data->NumCounters); local
247 if (NumCounters == 0)
249 auto RawCounts = makeArrayRef(getCounter(Data->CounterPtr), NumCounters);
/external/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h147 const uint32_t NumCounters; member in struct:llvm::RawInstrProfReader::ProfileData
249 unsigned NumCounters = N / sizeof(uint64_t) - 1; local
251 CountBuffer.reserve(NumCounters - 1);
252 for (unsigned I = 0; I < NumCounters; ++I)

Completed in 195 milliseconds