| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | OnDiskHashTable.h | 74 offset_type NumEntries; variable 126 ++NumEntries; in insert() 127 if (4 * NumEntries >= 3 * NumBuckets) in insert() 166 NumEntries <= 2 ? 1 : llvm::bit_ceil(NumEntries * 4 / 3 + 1); in Emit() 217 LE.write<offset_type>(NumEntries); in Emit() 225 NumEntries = 0; in OnDiskChainedHashTableGenerator() 275 const typename Info::offset_type NumEntries; variable 292 : NumBuckets(NumBuckets), NumEntries(NumEntries), Buckets(Buckets), in NumBuckets() 309 offset_type NumEntries = in readNumBucketsAndEntries() local 312 return std::make_pair(NumBuckets, NumEntries); in readNumBucketsAndEntries() [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_dense_map.h | 40 void reserve(size_type NumEntries) { in reserve() argument 56 unsigned NumEntries = getNumEntries(); in clear() local 61 --NumEntries; in clear() 66 CHECK_EQ(NumEntries, 0); in clear() 281 if (NumEntries == 0) in getMinBucketToReserveForEntries() 577 unsigned NumEntries = 0; variable 604 Swap(NumEntries, RHS.NumEntries); in swap() 629 NumEntries = 0; in copyFrom() 639 NumEntries = 0; in init() 662 unsigned getNumEntries() const { return NumEntries; } in getNumEntries() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | DenseMap.h | 132 --NumEntries; in clear() 138 (void)NumEntries; in clear() 750 unsigned NumEntries; variable 789 std::swap(NumEntries, RHS.NumEntries); in swap() 814 NumEntries = 0; in copyFrom() 824 NumEntries = 0; in init() 868 return NumEntries; in getNumEntries() 872 NumEntries = Num; in setNumEntries() 966 RHS.NumEntries = NumEntries; in swap() 1146 return NumEntries; in getNumEntries() [all …]
|
| H A D | MapVector.h | 64 void reserve(size_type NumEntries) { in reserve() argument 65 Map.reserve(NumEntries); in reserve() 66 Vector.reserve(NumEntries); in reserve()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | StringMap.cpp | 22 static inline unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument 24 if (NumEntries == 0) in getMinBucketToReserveForEntries() 28 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries()
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | RetireControlUnitStatistics.cpp | 33 unsigned NumEntries = in onEvent() local 35 EntriesInUse += NumEntries; in onEvent()
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | DwarfCFIEHPrinter.h | 153 unsigned NumEntries = 0; in printEHFrameHdr() local 155 while (Offset + 8 <= EHFramePHdr->p_memsz && NumEntries < FDECount) { in printEHFrameHdr() 156 DictScope D(W, std::string("entry ") + std::to_string(NumEntries)); in printEHFrameHdr() 168 ++NumEntries; in printEHFrameHdr()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | memprof_rawprofile.cpp | 156 const u64 NumEntries = StackIds.Size(); in SerializeMIBInfoToBuffer() local 157 Ptr = WriteBytes(NumEntries, Ptr); in SerializeMIBInfoToBuffer() 159 for (u64 i = 0; i < NumEntries; i++) { in SerializeMIBInfoToBuffer()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/VE/ |
| H A D | VEFrameLowering.h | 58 getCalleeSavedSpillSlots(unsigned &NumEntries) const override { in getCalleeSavedSpillSlots() argument 65 NumEntries = std::size(Offsets); in getCalleeSavedSpillSlots()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | InstrProf.cpp | 631 Sum.NumEntries += Counts.size(); in accumulateCounts() 735 Overlap.Overlap.NumEntries += 1; in overlap() 744 FuncLevelOverlap.Overlap.NumEntries = Other.Counts.size(); in overlap() 1398 Mismatch.NumEntries += 1; in addOneMismatch() 1408 Unique.NumEntries += 1; in addOneUnique() 1431 if (Mismatch.NumEntries) in dump() 1434 if (Unique.NumEntries) in dump() 1440 if (Mismatch.NumEntries) in dump() 1443 if (Unique.NumEntries) in dump() 1469 if (Mismatch.NumEntries) in dump() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/ |
| H A D | OProfileWrapper.cpp | 226 size_t NumEntries, in op_write_debug_line_info() argument 232 return WriteDebugLineInfoFunc(Agent, Code, NumEntries, Info); in op_write_debug_line_info()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | HeaderMapTypes.h | 33 uint32_t NumEntries; // Number of entries in the string table. member
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/DirectX/ |
| H A D | DXILResource.cpp | 128 case Kinds::NumEntries: in printElementType() 135 case Kinds::NumEntries: in getKindName() 211 case Kinds::NumEntries: in printKind()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TargetFrameLowering.h | 184 getCalleeSavedSpillSlots(unsigned &NumEntries) const { in getCalleeSavedSpillSlots() argument 185 NumEntries = 0; in getCalleeSavedSpillSlots()
|
| H A D | NonRelocatableStringpool.h | 61 unsigned NumEntries = 0; variable
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonFrameLowering.h | 90 const SpillSlot *getCalleeSavedSpillSlots(unsigned &NumEntries) in getCalleeSavedSpillSlots() argument 100 NumEntries = std::size(Offsets); in getCalleeSavedSpillSlots()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | NonRelocatableStringpool.cpp | 20 Entry.Index = NumEntries++; in getEntry()
|
| H A D | SwitchLoweringUtils.cpp | 150 int64_t NumEntries = j - i + 1; in findJumpTables() local 152 if (NumEntries == 1) in findJumpTables() 154 else if (NumEntries <= SmallNumberOfEntries) in findJumpTables() 156 else if (NumEntries >= MinJumpTableEntries) in findJumpTables()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Frontend/HLSL/ |
| H A D | HLSLResource.h | 54 NumEntries, enumerator
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Mangle.h | 264 bool IsUnaligned, uint32_t NumEntries, 267 virtual void mangleCXXCatchableTypeArray(QualType T, uint32_t NumEntries,
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | MultiOnDiskHashTable.h | 66 OnDiskTable(file_type File, unsigned NumBuckets, unsigned NumEntries, in OnDiskTable() 70 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {} in OnDiskTable()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCFrameLowering.h | 168 getCalleeSavedSpillSlots(unsigned &NumEntries) const override;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMFrameLowering.h | 87 getCalleeSavedSpillSlots(unsigned &NumEntries) const override;
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cxxdump/ |
| H A D | llvm-cxxdump.cpp | 148 uint32_t NumEntries; in dumpCXXData() member 292 CTA.NumEntries = in dumpCXXData() 427 outs() << CTAName << "[NumEntries]: " << CTA.NumEntries << '\n'; in dumpCXXData()
|
| /freebsd-14.2/sys/dev/mpi3mr/ |
| H A D | mpi3mr_cam.c | 1558 event_data->StartPhyNum, event_data->NumEntries); in mpi3mr_sastopochg_evt_debug() 1559 for (i = 0; i < event_data->NumEntries; i++) { in mpi3mr_sastopochg_evt_debug() 1605 for (i = 0; i < event_data->NumEntries; i++) { in mpi3mr_process_sastopochg_evt() 1685 event_data->StartPortNum, event_data->NumEntries); in mpi3mr_pcietopochg_evt_debug() 1686 for (i = 0; i < event_data->NumEntries; i++) { in mpi3mr_pcietopochg_evt_debug() 1733 for (i = 0; i < event_data->NumEntries; i++) { in mpi3mr_process_pcietopochg_evt()
|