Home
last modified time | relevance | path

Searched refs:NumRecords (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTConcept.cpp46 : NumRecords{Satisfaction.Details.size()}, in ASTConstraintSatisfaction()
49 for (unsigned I = 0; I < NumRecords; ++I)
57 : NumRecords{Satisfaction.NumRecords}, in ASTConstraintSatisfaction()
60 for (unsigned I = 0; I < NumRecords; ++I)
79 totalSizeToAlloc<UnsatisfiedConstraintRecord>(Satisfaction.NumRecords); in Rebuild()
/openbsd-src/gnu/llvm/llvm/include/llvm/Bitcode/
H A DBitcodeAnalyzer.h77 unsigned NumRecords, NumAbbreviatedRecords; member
82 NumRecords(0), NumAbbreviatedRecords(0) {} in PerBlockIDStats()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DASTConcept.h87 std::size_t NumRecords; member
96 return getTrailingObjects<UnsatisfiedConstraintRecord>() + NumRecords; in end()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.cpp56 uint32_t NumRecords) in LazyRandomTypeCollection() argument
57 : LazyRandomTypeCollection(Types, NumRecords, PartialOffsetArray()) {} in LazyRandomTypeCollection()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp680 O.OS << " Tot/Avg Records: " << Stats.NumRecords << "/" in printStats()
681 << Stats.NumRecords / (double)Stats.NumInstances << "\n"; in printStats()
685 O.OS << " Num Records: " << Stats.NumRecords << "\n"; in printStats()
687 if (Stats.NumRecords) { in printStats()
688 double pct = (Stats.NumAbbreviatedRecords * 100.0) / Stats.NumRecords; in printStats()
844 ++BlockStats.NumRecords; in parseBlock()
H A DBitcodeReader.cpp2263 unsigned NumRecords = 0; in parseTypeTableBody() local
2279 if (NumRecords != TypeList.size()) in parseTypeTableBody()
2448 if (NumRecords >= TypeList.size()) in parseTypeTableBody()
2452 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]); in parseTypeTableBody()
2455 TypeList[NumRecords] = nullptr; in parseTypeTableBody()
2478 if (NumRecords >= TypeList.size()) in parseTypeTableBody()
2482 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]); in parseTypeTableBody()
2485 TypeList[NumRecords] = nullptr; in parseTypeTableBody()
2496 if (NumRecords >= TypeList.size()) in parseTypeTableBody()
2545 if (NumRecords >= TypeList.size()) in parseTypeTableBody()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStream.cpp297 size_t NumRecords = StreamLen / sizeof(object::FpoData); in initializeOldFpoRecords() local
299 if (auto EC = Reader.readArray(OldFpoRecords, NumRecords)) in initializeOldFpoRecords()
/openbsd-src/gnu/llvm/llvm/lib/ProfileData/
H A DSampleProfReader.cpp585 auto NumRecords = readNumber<uint32_t>(); in readProfile() local
586 if (std::error_code EC = NumRecords.getError()) in readProfile()
589 for (uint32_t I = 0; I < *NumRecords; ++I) { in readProfile()
/openbsd-src/gnu/llvm/llvm/docs/
H A DStackMaps.rst328 uint32 : NumRecords
337 StkMapRecord[NumRecords] {
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriterStmt.cpp407 Record.push_back(Satisfaction.NumRecords); in addConstraintSatisfaction()