| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | OnDiskHashTable.h | 75 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 293 : NumBuckets(NumBuckets), NumEntries(NumEntries), Buckets(Buckets), in NumBuckets() 309 offset_type NumEntries = in readNumBucketsAndEntries() local 311 return std::make_pair(NumBuckets, NumEntries); in readNumBucketsAndEntries() [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | DenseMap.h | 159 --NumEntries; in clear() 384 if (NumEntries == 0) in getMinBucketToReserveForEntries() 718 unsigned NumEntries; variable 757 std::swap(NumEntries, RHS.NumEntries); in swap() 782 NumEntries = 0; in copyFrom() 792 NumEntries = 0; in init() 833 return NumEntries; in getNumEntries() 837 NumEntries = Num; in setNumEntries() 925 RHS.NumEntries = NumEntries; in swap() 1104 return NumEntries; in getNumEntries() [all …]
|
| H A D | MapVector.h | 65 void reserve(size_type NumEntries) { in reserve() argument 66 Map.reserve(NumEntries); in reserve() 67 Vector.reserve(NumEntries); in reserve()
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | StringMap.cpp | 25 static unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument 27 if (NumEntries == 0) in getMinBucketToReserveForEntries() 31 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-mca/Views/ |
| H A D | RetireControlUnitStatistics.cpp | 34 unsigned NumEntries = in onEvent() local 36 EntriesInUse += NumEntries; in onEvent()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-readobj/ |
| H A D | DwarfCFIEHPrinter.h | 151 unsigned NumEntries = 0; in printEHFrameHdr() local 153 while (Offset + 8 <= EHFrameHdrSize && NumEntries < FDECount) { in printEHFrameHdr() 154 DictScope D(W, std::string("entry ") + std::to_string(NumEntries)); in printEHFrameHdr() 165 ++NumEntries; in printEHFrameHdr()
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/OProfileJIT/ |
| H A D | OProfileWrapper.cpp | 227 size_t NumEntries, in op_write_debug_line_info() argument 233 return WriteDebugLineInfoFunc(Agent, Code, NumEntries, Info); in op_write_debug_line_info()
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | TargetFrameLowering.h | 137 getCalleeSavedSpillSlots(unsigned &NumEntries) const { in getCalleeSavedSpillSlots() argument 138 NumEntries = 0; in getCalleeSavedSpillSlots()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/ |
| H A D | HeaderMapTypes.h | 34 uint32_t NumEntries; // Number of entries in the string table. member
|
| /freebsd-12.1/contrib/llvm/lib/Target/Hexagon/ |
| H A D | HexagonFrameLowering.h | 85 const SpillSlot *getCalleeSavedSpillSlots(unsigned &NumEntries) in getCalleeSavedSpillSlots() argument 95 NumEntries = array_lengthof(Offsets); in getCalleeSavedSpillSlots()
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/ |
| H A D | SystemZFrameLowering.h | 28 const SpillSlot *getCalleeSavedSpillSlots(unsigned &NumEntries) const
|
| H A D | SystemZFrameLowering.cpp | 60 SystemZFrameLowering::getCalleeSavedSpillSlots(unsigned &NumEntries) const { in getCalleeSavedSpillSlots() 61 NumEntries = array_lengthof(SpillOffsetTable); in getCalleeSavedSpillSlots()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Mangle.h | 214 bool IsUnaligned, uint32_t NumEntries, 217 virtual void mangleCXXCatchableTypeArray(QualType T, uint32_t NumEntries,
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | PPCFrameLowering.h | 145 getCalleeSavedSpillSlots(unsigned &NumEntries) const override;
|
| H A D | PPCFrameLowering.cpp | 104 unsigned &NumEntries) const { in getCalleeSavedSpillSlots() 106 NumEntries = 1; in getCalleeSavedSpillSlots() 118 NumEntries = 0; in getCalleeSavedSpillSlots() 268 NumEntries = array_lengthof(Offsets64); in getCalleeSavedSpillSlots() 272 NumEntries = array_lengthof(Offsets); in getCalleeSavedSpillSlots()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | MultiOnDiskHashTable.h | 67 OnDiskTable(file_type File, unsigned NumBuckets, unsigned NumEntries, in OnDiskTable() 71 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {} in OnDiskTable()
|
| /freebsd-12.1/contrib/llvm/tools/lld/ELF/ |
| H A D | SyntheticSections.cpp | 600 NumEntries += Target->GotHeaderEntriesNum; in GotSection() 604 Sym.GotIndex = NumEntries; in addEntry() 605 ++NumEntries; in addEntry() 611 Sym.GlobalDynIndex = NumEntries; in addDynTlsEntry() 613 NumEntries += 2; in addDynTlsEntry() 622 TlsIndexOff = NumEntries * Config->Wordsize; in addTlsIndex() 623 NumEntries += 2; in addTlsIndex() 636 Size = NumEntries * Config->Wordsize; in finalizeContents() 643 return NumEntries == 0 && !HasGotOffRel && in empty() 2281 NumEntries += In.DynSymTab->getNumSymbols(); in finalizeContents() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/llvm-cxxdump/ |
| H A D | llvm-cxxdump.cpp | 143 uint32_t NumEntries; in dumpCXXData() member 284 CTA.NumEntries = in dumpCXXData() 419 outs() << CTAName << "[NumEntries]: " << CTA.NumEntries << '\n'; in dumpCXXData()
|
| /freebsd-12.1/contrib/llvm/lib/ProfileData/ |
| H A D | InstrProfWriter.cpp | 285 uint32_t NumEntries = ProfileSummaryBuilder::DefaultCutoffs.size(); in writeImpl() local 286 uint32_t SummarySize = Summary::getSize(Summary::NumKinds, NumEntries); in writeImpl()
|
| /freebsd-12.1/sys/dev/mpr/ |
| H A D | mpr_table.c | 403 MPR_PRINTFIELD(sc, data, NumEntries, %d); in mpr_print_evt_sas() 409 for (i = 0; i < data->NumEntries; i++) { in mpr_print_evt_sas()
|
| /freebsd-12.1/sys/dev/mps/ |
| H A D | mps_table.c | 382 MPS_PRINTFIELD(sc, data, NumEntries, %d); in mps_print_evt_sas() 388 for (i = 0; i < data->NumEntries; i++) { in mps_print_evt_sas()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/ |
| H A D | HeaderMap.cpp | 178 << ", " << getEndianAdjustedWord(Hdr.NumEntries) << "\n"; in dump()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | MicrosoftCXXABI.cpp | 331 unsigned NumEntries = 1 + SrcRD->getNumVBases(); in getAddrOfVirtualDisplacementMap() local 332 SmallVector<llvm::Constant *, 4> Map(NumEntries, in getAddrOfVirtualDisplacementMap() 696 llvm::StructType *getCatchableTypeArrayType(uint32_t NumEntries) { in getCatchableTypeArrayType() argument 698 CatchableTypeArrayTypeMap[NumEntries]; in getCatchableTypeArrayType() 703 CTATypeName += llvm::utostr(NumEntries); in getCatchableTypeArrayType() 708 llvm::ArrayType::get(CTType, NumEntries) // CatchableTypes in getCatchableTypeArrayType() 4151 uint32_t NumEntries = CatchableTypes.size(); in getCatchableTypeArray() local 4154 llvm::ArrayType *AT = llvm::ArrayType::get(CTType, NumEntries); in getCatchableTypeArray() 4155 llvm::StructType *CTAType = getCatchableTypeArrayType(NumEntries); in getCatchableTypeArray() 4188 uint32_t NumEntries = in getThrowInfo() local [all …]
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFVerifier.cpp | 1234 unsigned NumEntries = 0; in verifyNameIndexEntries() local 1238 for (; EntryOr; ++NumEntries, EntryID = NextEntryID, in verifyNameIndexEntries() 1284 if (NumEntries > 0) in verifyNameIndexEntries()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | MicrosoftMangle.cpp | 156 bool IsUnaligned, uint32_t NumEntries, 158 void mangleCXXCatchableTypeArray(QualType T, uint32_t NumEntries, 3121 uint32_t NumEntries, in mangleCXXThrowInfo() argument 3132 Mangler.getStream() << NumEntries; in mangleCXXThrowInfo() 3137 QualType T, uint32_t NumEntries, raw_ostream &Out) { in mangleCXXCatchableTypeArray() argument 3141 Mangler.getStream() << NumEntries; in mangleCXXCatchableTypeArray()
|