| /freebsd-13.1/contrib/llvm-project/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-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | DenseMap.h | 133 --NumEntries; in clear() 388 if (NumEntries == 0) in getMinBucketToReserveForEntries() 723 unsigned NumEntries; variable 762 std::swap(NumEntries, RHS.NumEntries); in swap() 787 NumEntries = 0; in copyFrom() 797 NumEntries = 0; in init() 841 return NumEntries; in getNumEntries() 845 NumEntries = Num; in setNumEntries() 937 RHS.NumEntries = NumEntries; in swap() 1117 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-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | StringMap.cpp | 22 static unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument 24 if (NumEntries == 0) in getMinBucketToReserveForEntries() 28 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries()
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | InstrProf.cpp | 506 Sum.NumEntries += Counts.size(); in accumulateCounts() 610 Overlap.Overlap.NumEntries += 1; in overlap() 619 FuncLevelOverlap.Overlap.NumEntries = Other.Counts.size(); in overlap() 1203 Mismatch.NumEntries += 1; in addOneMismatch() 1213 Unique.NumEntries += 1; in addOneUnique() 1236 if (Mismatch.NumEntries) in dump() 1239 if (Unique.NumEntries) in dump() 1245 if (Mismatch.NumEntries) in dump() 1248 if (Unique.NumEntries) in dump() 1274 if (Mismatch.NumEntries) in dump() [all …]
|
| H A D | InstrProfWriter.cpp | 203 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()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/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-13.1/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-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TargetFrameLowering.h | 178 getCalleeSavedSpillSlots(unsigned &NumEntries) const { in getCalleeSavedSpillSlots() argument 179 NumEntries = 0; in getCalleeSavedSpillSlots()
|
| H A D | NonRelocatableStringpool.h | 61 unsigned NumEntries = 0; variable
|
| /freebsd-13.1/contrib/llvm-project/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 | 22 Entry.Index = NumEntries++; in getEntry()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Mangle.h | 243 bool IsUnaligned, uint32_t NumEntries, 246 virtual void mangleCXXCatchableTypeArray(QualType T, uint32_t NumEntries,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCFrameLowering.h | 168 getCalleeSavedSpillSlots(unsigned &NumEntries) const override;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMFrameLowering.h | 79 getCalleeSavedSpillSlots(unsigned &NumEntries) const override;
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | combined.h | 1007 static const uptr NumEntries = 2; member 1009 static const uptr NumEntries = 32768; member 1011 Entry Entries[NumEntries]; 1212 &RingBuffer.Entries[Pos % AllocationRingBuffer::NumEntries]; in storeRingBufferEntry() 1358 for (uptr I = Pos - 1; I != Pos - 1 - AllocationRingBuffer::NumEntries && in getRingBufferErrorInfo() 1361 auto *Entry = &RingBuffer->Entries[I % AllocationRingBuffer::NumEntries]; in getRingBufferErrorInfo()
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | InstrProf.h | 598 uint64_t NumEntries; member 601 CountSumOrPercent() : NumEntries(0), CountSum(0.0f), ValueCounts() {} in CountSumOrPercent() 603 NumEntries = 0; in reset()
|
| /freebsd-13.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-13.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()
|