/freebsd/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 288 OnDiskChainedHashTable(offset_type NumBuckets, offset_type NumEntries, 292 : NumBuckets(NumBuckets), NumEntries(NumEntries), Buckets(Buckets), in NumBuckets() 309 offset_type NumEntries = in readNumBucketsAndEntries() local [all …]
|
H A D | DXILABI.h | 71 NumEntries, enumerator
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_dense_map.h | 40 void reserve(size_type NumEntries) { in reserve() argument 41 auto NumBuckets = getMinBucketToReserveForEntries(NumEntries); in reserve() 56 unsigned NumEntries = getNumEntries(); in clear() local 61 --NumEntries; in clear() 66 CHECK_EQ(NumEntries, 0); in clear() 279 unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument 281 if (NumEntries == 0) in getMinBucketToReserveForEntries() 285 return RoundUpToPowerOfTwo((NumEntries * 4 / 3 + 1) + /* NextPowerOf2 */ 1); in getMinBucketToReserveForEntries() 577 unsigned NumEntries = 0; variable 604 Swap(NumEntries, RHS.NumEntries); in swap() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | DenseMap.h | 103 void reserve(size_type NumEntries) { in reserve() argument 104 auto NumBuckets = getMinBucketToReserveForEntries(NumEntries); in reserve() 127 unsigned NumEntries = getNumEntries(); in clear() local 132 --NumEntries; in clear() 137 assert(NumEntries == 0 && "Node count imbalance!"); in clear() 138 (void)NumEntries; in clear() 429 unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument 431 if (NumEntries == 0) in getMinBucketToReserveForEntries() 435 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries() 766 unsigned NumEntries; variable [all …]
|
H A D | MapVector.h | 62 /// Grow the MapVector so that it can contain at least \p NumEntries items 64 void reserve(size_type NumEntries) { in reserve() argument 65 Map.reserve(NumEntries); in reserve() 66 Vector.reserve(NumEntries); in reserve()
|
/freebsd/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/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/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/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/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_rawprofile.cpp | 162 const u64 NumEntries = StackIds.Size(); in SerializeMIBInfoToBuffer() local 163 Ptr = WriteBytes(NumEntries, Ptr); in SerializeMIBInfoToBuffer() 164 for (u64 i = 0; i < NumEntries; i++) { in SerializeMIBInfoToBuffer()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | InstrProf.cpp | 729 Sum.NumEntries += Counts.size(); in accumulateCounts() 831 Overlap.Overlap.NumEntries += 1; in overlap() 840 FuncLevelOverlap.Overlap.NumEntries = Other.Counts.size(); in overlap() 1533 Mismatch.NumEntries += 1; in addOneMismatch() 1543 Unique.NumEntries += 1; in addOneUnique() 1565 OS << " # of " << EntryName << " overlap: " << Overlap.NumEntries << "\n"; in dump() 1566 if (Mismatch.NumEntries) in dump() 1567 OS << " # of " << EntryName << " mismatch: " << Mismatch.NumEntries in dump() 1569 if (Unique.NumEntries) in dump() 1571 << " only in test_profile: " << Unique.NumEntries << "\n"; in dump() [all …]
|
/freebsd/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/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/contrib/llvm-project/llvm/lib/Target/DirectX/ |
H A D | DXILResource.cpp | 127 case ResourceKind::NumEntries: in printElementType() 134 case ResourceKind::NumEntries: in getKindName() 211 case ResourceKind::NumEntries: in printKind()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | TargetFrameLowering.h | 185 getCalleeSavedSpillSlots(unsigned &NumEntries) const { in getCalleeSavedSpillSlots() argument 186 NumEntries = 0; in getCalleeSavedSpillSlots()
|
H A D | NonRelocatableStringpool.h | 58 unsigned NumEntries = 0; variable
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonFrameLowering.h | 94 const SpillSlot *getCalleeSavedSpillSlots(unsigned &NumEntries) in getCalleeSavedSpillSlots() argument 104 NumEntries = std::size(Offsets); in getCalleeSavedSpillSlots()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | NonRelocatableStringpool.cpp | 18 Entry.Index = NumEntries++; in getEntry()
|
H A D | SwitchLoweringUtils.cpp | 151 int64_t NumEntries = j - i + 1; in findJumpTables() local 153 if (NumEntries == 1) in findJumpTables() 155 else if (NumEntries <= SmallNumberOfEntries) in findJumpTables() 157 else if (NumEntries >= MinJumpTableEntries) in findJumpTables()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Mangle.h | 263 bool IsUnaligned, uint32_t NumEntries, 266 virtual void mangleCXXCatchableTypeArray(QualType T, uint32_t NumEntries,
|
/freebsd/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/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCFrameLowering.h | 168 getCalleeSavedSpillSlots(unsigned &NumEntries) const override;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMFrameLowering.h | 88 getCalleeSavedSpillSlots(unsigned &NumEntries) const override;
|
/freebsd/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/sys/dev/mpi3mr/ |
H A D | mpi3mr_cam.c | 1592 event_data->StartPhyNum, event_data->NumEntries); in mpi3mr_sastopochg_evt_debug() 1593 for (i = 0; i < event_data->NumEntries; i++) { in mpi3mr_sastopochg_evt_debug() 1639 for (i = 0; i < event_data->NumEntries; i++) { in mpi3mr_process_sastopochg_evt() 1719 event_data->StartPortNum, event_data->NumEntries); in mpi3mr_pcietopochg_evt_debug() 1720 for (i = 0; i < event_data->NumEntries; i++) { in mpi3mr_pcietopochg_evt_debug() 1767 for (i = 0; i < event_data->NumEntries; i++) { in mpi3mr_process_pcietopochg_evt()
|