Searched refs:NumSamples (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/ProfileData/ |
| H A D | SampleProfReader.cpp | 157 uint64_t &NumSamples, uint64_t &NumHeadSamples) { in ParseHead() argument 163 if (Input.substr(n1 + 1, n2 - n1 - 1).getAsInteger(10, NumSamples)) in ParseHead() 214 uint64_t &NumSamples, uint32_t &LineOffset, in ParseLine() argument 247 if (Rest.getAsInteger(10, NumSamples)) in ParseLine() 250 if (Rest.substr(0, n3).getAsInteger(10, NumSamples)) in ParseLine() 304 if (Rest.substr(n3 + 1).getAsInteger(10, NumSamples)) in ParseLine() 345 uint64_t NumSamples, NumHeadSamples; in readImpl() local 347 if (!ParseHead(*LineIt, FName, NumSamples, NumHeadSamples)) { in readImpl() 359 MergeResult(Result, FProfile.addTotalSamples(NumSamples)); in readImpl() 364 uint64_t NumSamples; in readImpl() local [all …]
|
| H A D | SampleProf.cpp | 135 OS << NumSamples; in print()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/ |
| H A D | SampleProf.h | 348 NumSamples = SaturatingMultiplyAdd(S, Weight, NumSamples, &Overflowed); 356 if (S > NumSamples) 357 S = NumSamples; 358 NumSamples -= S; 392 uint64_t getSamples() const { return NumSamples; } 431 uint64_t NumSamples = 0;
|