| /llvm-project-15.0.7/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 …]
|
| /llvm-project-15.0.7/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 …]
|
| /llvm-project-15.0.7/compiler-rt/lib/gwp_asan/tests/ |
| H A D | compression.cpp | 137 void runPackUnpack(uintptr_t *Test, size_t NumEntries) { in runPackUnpack() argument 140 static_cast<uintptr_t *>(alloca(NumEntries * sizeof(uintptr_t))); in runPackUnpack() 141 size_t CompressedBufferSize = NumEntries * kBytesForLargestVarInt; in runPackUnpack() 147 pack(Test, NumEntries, Compressed, CompressedBufferSize); in runPackUnpack() 152 EXPECT_EQ(NumEntries, in runPackUnpack() 153 unpack(Compressed, BytesUsedForPacking, Uncompressed, NumEntries)); in runPackUnpack() 156 for (size_t i = 0; i < NumEntries; ++i) { in runPackUnpack()
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | DenseMap.h | 134 --NumEntries; in clear() 140 (void)NumEntries; in clear() 725 unsigned NumEntries; variable 764 std::swap(NumEntries, RHS.NumEntries); in swap() 789 NumEntries = 0; in copyFrom() 799 NumEntries = 0; in init() 843 return NumEntries; in getNumEntries() 847 NumEntries = Num; in setNumEntries() 941 RHS.NumEntries = NumEntries; in swap() 1121 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()
|
| /llvm-project-15.0.7/bolt/lib/Profile/ |
| H A D | BoltAddressTranslation.cpp | 102 const uint32_t NumEntries = Map.size(); in write() local 103 LLVM_DEBUG(dbgs() << "Writing " << NumEntries << " entries for 0x" in write() 106 OS.write(reinterpret_cast<const char *>(&NumEntries), 4); in write() 157 const uint32_t NumEntries = DE.getU32(&Offset); in parse() local 160 LLVM_DEBUG(dbgs() << "Parsing " << NumEntries << " entries for 0x" in parse() 162 if (Buf.size() - Offset < 8 * NumEntries) in parse() 164 for (uint32_t J = 0; J < NumEntries; ++J) { in parse()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | StringMap.cpp | 21 static inline unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument 23 if (NumEntries == 0) in getMinBucketToReserveForEntries() 27 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries()
|
| /llvm-project-15.0.7/llvm/tools/llvm-mca/Views/ |
| H A D | RetireControlUnitStatistics.cpp | 33 unsigned NumEntries = in onEvent() local 35 EntriesInUse += NumEntries; in onEvent()
|
| /llvm-project-15.0.7/llvm/lib/ProfileData/ |
| H A D | InstrProf.cpp | 537 Sum.NumEntries += Counts.size(); in accumulateCounts() 641 Overlap.Overlap.NumEntries += 1; in overlap() 650 FuncLevelOverlap.Overlap.NumEntries = Other.Counts.size(); in overlap() 1220 Mismatch.NumEntries += 1; in addOneMismatch() 1230 Unique.NumEntries += 1; in addOneUnique() 1253 if (Mismatch.NumEntries) in dump() 1256 if (Unique.NumEntries) in dump() 1262 if (Mismatch.NumEntries) in dump() 1265 if (Unique.NumEntries) in dump() 1291 if (Mismatch.NumEntries) in dump() [all …]
|
| /llvm-project-15.0.7/llvm/tools/llvm-readobj/ |
| H A D | DwarfCFIEHPrinter.h | 154 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()
|
| /llvm-project-15.0.7/compiler-rt/lib/memprof/ |
| H A D | memprof_rawprofile.cpp | 150 const u64 NumEntries = StackIds.Size(); in SerializeMIBInfoToBuffer() local 151 Ptr = WriteBytes(NumEntries, Ptr); in SerializeMIBInfoToBuffer() 153 for (u64 i = 0; i < NumEntries; i++) { in SerializeMIBInfoToBuffer()
|
| /llvm-project-15.0.7/llvm/lib/Target/VE/ |
| H A D | VEFrameLowering.h | 58 getCalleeSavedSpillSlots(unsigned &NumEntries) const override { in getCalleeSavedSpillSlots() argument 65 NumEntries = array_lengthof(Offsets); in getCalleeSavedSpillSlots()
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/openmp/libomptarget/plugins/generic-elf-64bit/src/ |
| H A D | rtl.cpp | 138 size_t NumEntries = (size_t)(Image->EntriesEnd - Image->EntriesBegin); in __tgt_rtl_load_binary() local 139 DP("Expecting to have %zd entries defined.\n", NumEntries); in __tgt_rtl_load_binary() 237 __tgt_offload_entry *EntriesEnd = EntriesBegin + NumEntries; in __tgt_rtl_load_binary()
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-cxxdump/ |
| H A D | eh.test | 119 COFF-I386: __CTA1?AW4E@@[NumEntries]: 1 121 COFF-I386: __CTA1PQS@@H[NumEntries]: 1 123 COFF-I386: __CTA2PAW4E@@[NumEntries]: 2 126 COFF-I386: __CTA2PAX[NumEntries]: 2 129 COFF-I386: __CTA3?AUM@@[NumEntries]: 3 133 COFF-I386: __CTA3?AUS@@[NumEntries]: 3 137 COFF-I386: __CTA4PAUS@@[NumEntries]: 4
|
| /llvm-project-15.0.7/clang/include/clang/Lex/ |
| H A D | HeaderMapTypes.h | 33 uint32_t NumEntries; // Number of entries in the string table. member
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | TargetFrameLowering.h | 181 getCalleeSavedSpillSlots(unsigned &NumEntries) const { in getCalleeSavedSpillSlots() argument 182 NumEntries = 0; in getCalleeSavedSpillSlots()
|
| H A D | NonRelocatableStringpool.h | 61 unsigned NumEntries = 0; variable
|
| /llvm-project-15.0.7/bolt/lib/Passes/ |
| H A D | IndirectCallPromotion.cpp | 828 const size_t NumEntries = in fixCFG() local 830 for (size_t I = 0; I < NumEntries; ++I) { in fixCFG() 832 BinaryBranchInfo{(Target.Branches + NumEntries - 1) / NumEntries, in fixCFG() 833 (Target.Mispreds + NumEntries - 1) / NumEntries}); in fixCFG() 836 (NumEntries * TotalIndirectBranches)), in fixCFG() 838 (NumEntries * TotalIndirectBranches))}); in fixCFG() 848 const size_t NumEntries = in fixCFG() local 850 for (size_t I = 0; I < NumEntries; ++I) in fixCFG()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | SwitchLoweringUtils.cpp | 149 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 D | NonRelocatableStringpool.cpp | 23 Entry.Index = NumEntries++; in getEntry()
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/ |
| H A D | HexagonFrameLowering.h | 90 const SpillSlot *getCalleeSavedSpillSlots(unsigned &NumEntries) in getCalleeSavedSpillSlots() argument 100 NumEntries = array_lengthof(Offsets); in getCalleeSavedSpillSlots()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Mangle.h | 252 bool IsUnaligned, uint32_t NumEntries, 255 virtual void mangleCXXCatchableTypeArray(QualType T, uint32_t NumEntries,
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/ |
| H A D | ARMFrameLowering.h | 80 getCalleeSavedSpillSlots(unsigned &NumEntries) const override;
|
| /llvm-project-15.0.7/clang/unittests/Lex/ |
| H A D | HeaderMapTestUtils.h | 79 ++File.Header.NumEntries; in addBucket()
|