HomeSort by: relevance | last modified time | path
    Searched refs:MinBlockCount (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/MSF/
MSFBuilder.h 33 /// \param MinBlockCount Causes the builder to reserve up front space for
34 /// at least `MinBlockCount` blocks. This is useful when using `MSFBuilder`
54 /// is specified, or `MinBlockCount` does not leave enough room for the
58 uint32_t MinBlockCount = 0,
121 MSFBuilder(uint32_t BlockSize, uint32_t MinBlockCount, bool CanGrow,
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
MSFBuilder.cpp 39 MSFBuilder::MSFBuilder(uint32_t BlockSize, uint32_t MinBlockCount, bool CanGrow,
43 BlockMapAddr(kDefaultBlockMapAddr), FreeBlocks(MinBlockCount, true) {
52 uint32_t MinBlockCount, bool CanGrow) {
58 std::max(MinBlockCount, msf::getMinimumBlockCount()),
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProf.h 1014 MinBlockCount; ///< The minimum execution count for this percentile.
1083 ER.MinBlockCount = E.MinCount;
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
SampleProfReader.cpp 1226 auto MinBlockCount = readNumber<uint64_t>();
1227 if (std::error_code EC = MinBlockCount.getError())
1234 Entries.emplace_back(*Cutoff, *MinBlockCount, *NumBlocks);
InstrProfReader.cpp 780 DetailedSummary.emplace_back((uint32_t)Ent.Cutoff, Ent.MinBlockCount,

Completed in 26 milliseconds