Home
last modified time | relevance | path

Searched refs:NumEntries (Results 1 – 25 of 38) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DOnDiskHashTable.h75 offset_type NumEntries; variable
127 ++NumEntries; in insert()
128 if (4 * NumEntries >= 3 * NumBuckets) in insert()
167 NumEntries <= 2 ? 1 : NextPowerOf2(NumEntries * 4 / 3); in Emit()
218 LE.write<offset_type>(NumEntries); in Emit()
226 NumEntries = 0; in OnDiskChainedHashTableGenerator()
276 const typename Info::offset_type NumEntries; variable
289 OnDiskChainedHashTable(offset_type NumBuckets, offset_type NumEntries,
293 : NumBuckets(NumBuckets), NumEntries(NumEntries), Buckets(Buckets), in NumBuckets()
309 offset_type NumEntries = in readNumBucketsAndEntries() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DDenseMap.h104 void reserve(size_type NumEntries) { in reserve() argument
105 auto NumBuckets = getMinBucketToReserveForEntries(NumEntries); in reserve()
128 unsigned NumEntries = getNumEntries(); in clear() local
133 --NumEntries; in clear()
138 assert(NumEntries == 0 && "Node count imbalance!"); in clear()
386 unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument
388 if (NumEntries == 0) in getMinBucketToReserveForEntries()
392 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries()
723 unsigned NumEntries; variable
762 std::swap(NumEntries, RHS.NumEntries); in swap()
[all …]
H A DMapVector.h64 void reserve(size_type NumEntries) { in reserve() argument
65 Map.reserve(NumEntries); in reserve()
66 Vector.reserve(NumEntries); in reserve()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DInstrProf.cpp505 Sum.NumEntries += Counts.size(); in accumulateCounts()
609 Overlap.Overlap.NumEntries += 1; in overlap()
618 FuncLevelOverlap.Overlap.NumEntries = Other.Counts.size(); in overlap()
1202 Mismatch.NumEntries += 1; in addOneMismatch()
1212 Unique.NumEntries += 1; in addOneUnique()
1234 OS << " # of " << EntryName << " overlap: " << Overlap.NumEntries << "\n"; in dump()
1235 if (Mismatch.NumEntries) in dump()
1236 OS << " # of " << EntryName << " mismatch: " << Mismatch.NumEntries in dump()
1238 if (Unique.NumEntries) in dump()
1240 << " only in test_profile: " << Unique.NumEntries << "\n"; in dump()
[all …]
H A DInstrProfWriter.cpp203 Overlap.Overlap.NumEntries += 1; in overlapRecord()
332 uint32_t NumEntries = ProfileSummaryBuilder::DefaultCutoffs.size(); in writeImpl() local
333 uint32_t SummarySize = Summary::getSize(Summary::NumKinds, NumEntries); in writeImpl()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DStringMap.cpp22 static unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument
24 if (NumEntries == 0) in getMinBucketToReserveForEntries()
28 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DDwarfCFIEHPrinter.h154 unsigned NumEntries = 0; in printEHFrameHdr() local
156 while (Offset + 8 <= EHFramePHdr->p_memsz && NumEntries < FDECount) { in printEHFrameHdr()
157 DictScope D(W, std::string("entry ") + std::to_string(NumEntries)); in printEHFrameHdr()
169 ++NumEntries; in printEHFrameHdr()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
H A DRetireControlUnitStatistics.cpp33 unsigned NumEntries = in onEvent() local
35 EntriesInUse += NumEntries; in onEvent()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/VE/
H A DVEFrameLowering.h58 getCalleeSavedSpillSlots(unsigned &NumEntries) const override { in getCalleeSavedSpillSlots() argument
65 NumEntries = array_lengthof(Offsets); in getCalleeSavedSpillSlots()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp226 size_t NumEntries, in op_write_debug_line_info() argument
232 return WriteDebugLineInfoFunc(Agent, Code, NumEntries, Info); in op_write_debug_line_info()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp149 int64_t NumEntries = j - i + 1; in findJumpTables() local
151 if (NumEntries == 1) in findJumpTables()
153 else if (NumEntries <= SmallNumberOfEntries) in findJumpTables()
155 else if (NumEntries >= MinJumpTableEntries) in findJumpTables()
H A DNonRelocatableStringpool.cpp22 Entry.Index = NumEntries++; in getEntry()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DHeaderMapTypes.h33 uint32_t NumEntries; // Number of entries in the string table. member
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DTargetFrameLowering.h177 getCalleeSavedSpillSlots(unsigned &NumEntries) const { in getCalleeSavedSpillSlots() argument
178 NumEntries = 0; in getCalleeSavedSpillSlots()
H A DNonRelocatableStringpool.h61 unsigned NumEntries = 0; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.h90 const SpillSlot *getCalleeSavedSpillSlots(unsigned &NumEntries) in getCalleeSavedSpillSlots() argument
100 NumEntries = array_lengthof(Offsets); in getCalleeSavedSpillSlots()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DMangle.h238 bool IsUnaligned, uint32_t NumEntries,
241 virtual void mangleCXXCatchableTypeArray(QualType T, uint32_t NumEntries,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h66 OnDiskTable(file_type File, unsigned NumBuckets, unsigned NumEntries, in OnDiskTable()
70 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {} in OnDiskTable()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCFrameLowering.h168 getCalleeSavedSpillSlots(unsigned &NumEntries) const override;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMFrameLowering.h79 getCalleeSavedSpillSlots(unsigned &NumEntries) const override;
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp147 uint32_t NumEntries; in dumpCXXData() member
291 CTA.NumEntries = in dumpCXXData()
426 outs() << CTAName << "[NumEntries]: " << CTA.NumEntries << '\n'; in dumpCXXData()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DInstrProf.h598 uint64_t NumEntries; member
601 CountSumOrPercent() : NumEntries(0), CountSum(0.0f), ValueCounts() {} in CountSumOrPercent()
603 NumEntries = 0; in reset()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DHeaderMap.cpp177 << ", " << getEndianAdjustedWord(Hdr.NumEntries) << "\n"; in dump()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp343 unsigned NumEntries = 1 + SrcRD->getNumVBases(); in getAddrOfVirtualDisplacementMap() local
344 SmallVector<llvm::Constant *, 4> Map(NumEntries, in getAddrOfVirtualDisplacementMap()
714 llvm::StructType *getCatchableTypeArrayType(uint32_t NumEntries) { in getCatchableTypeArrayType() argument
716 CatchableTypeArrayTypeMap[NumEntries]; in getCatchableTypeArrayType()
721 CTATypeName += llvm::utostr(NumEntries); in getCatchableTypeArrayType()
726 llvm::ArrayType::get(CTType, NumEntries) // CatchableTypes in getCatchableTypeArrayType()
4254 uint32_t NumEntries = CatchableTypes.size(); in getCatchableTypeArray() local
4257 llvm::ArrayType *AT = llvm::ArrayType::get(CTType, NumEntries); in getCatchableTypeArray()
4258 llvm::StructType *CTAType = getCatchableTypeArrayType(NumEntries); in getCatchableTypeArray()
4260 llvm::ConstantInt::get(CGM.IntTy, NumEntries), // NumEntries in getCatchableTypeArray()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp1272 unsigned NumEntries = 0; in verifyNameIndexEntries() local
1276 for (; EntryOr; ++NumEntries, EntryID = NextEntryID, in verifyNameIndexEntries()
1322 if (NumEntries > 0) in verifyNameIndexEntries()

12