HomeSort by relevance Sort by last modified time
    Searched defs:Cutoff (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/IR/
ProfileSummary.h 30 // The profile summary is one or more (Cutoff, MinCount, NumCounts) triplets.
37 uint32_t Cutoff; ///< The required percentile of counts.
42 : Cutoff(TheCutoff), MinCount(TheMinCount), NumCounts(TheNumCounts) {}
  /external/llvm/lib/Target/Hexagon/
HexagonGenExtract.cpp 27 static cl::opt<unsigned> ExtractCutoff("extract-cutoff", cl::init(~0U),
28 cl::Hidden, cl::desc("Cutoff for generating \"extract\""
221 unsigned Cutoff = ExtractCutoff;
226 if (HasCutoff && (ExtractCount >= Cutoff))
  /external/llvm/lib/ProfileData/
SampleProfReader.cpp 426 auto Cutoff = readNumber<uint64_t>();
427 if (std::error_code EC = Cutoff.getError())
438 Entries.emplace_back(*Cutoff, *MinBlockCount, *NumBlocks);
  /external/llvm/include/llvm/ProfileData/
InstrProf.h 812 uint64_t Cutoff; ///< The required percentile of total execution count.
840 // The number of Cutoff Entries (Summary::Entry) following summary fields.
    [all...]

Completed in 629 milliseconds