Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
H A DBitcodeAnalyzer.h74 unsigned NumRecords, NumAbbreviatedRecords; member
79 NumRecords(0), NumAbbreviatedRecords(0) {} in PerBlockIDStats()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTConcept.cpp25 NumRecords{Satisfaction.Details.size()}, in ASTConstraintSatisfaction()
27 for (unsigned I = 0; I < NumRecords; ++I) {
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTConcept.h80 std::size_t NumRecords; member
88 return getTrailingObjects<UnsatisfiedConstraintRecord>() + NumRecords; in end()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp679 O.OS << " Tot/Avg Records: " << Stats.NumRecords << "/" in printStats()
680 << Stats.NumRecords / (double)Stats.NumInstances << "\n"; in printStats()
684 O.OS << " Num Records: " << Stats.NumRecords << "\n"; in printStats()
686 if (Stats.NumRecords) { in printStats()
687 double pct = (Stats.NumAbbreviatedRecords * 100.0) / Stats.NumRecords; in printStats()
846 ++BlockStats.NumRecords; in parseBlock()
H A DBitcodeReader.cpp1708 unsigned NumRecords = 0; in parseTypeTableBody() local
1724 if (NumRecords != TypeList.size()) in parseTypeTableBody()
1885 if (NumRecords >= TypeList.size()) in parseTypeTableBody()
1889 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]); in parseTypeTableBody()
1892 TypeList[NumRecords] = nullptr; in parseTypeTableBody()
1914 if (NumRecords >= TypeList.size()) in parseTypeTableBody()
1918 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]); in parseTypeTableBody()
1921 TypeList[NumRecords] = nullptr; in parseTypeTableBody()
1950 if (NumRecords >= TypeList.size()) in parseTypeTableBody()
1952 if (TypeList[NumRecords]) in parseTypeTableBody()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.cpp57 uint32_t NumRecords) in LazyRandomTypeCollection() argument
58 : LazyRandomTypeCollection(Types, NumRecords, PartialOffsetArray()) {} in LazyRandomTypeCollection()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStream.cpp299 size_t NumRecords = StreamLen / sizeof(object::FpoData); in initializeOldFpoRecords() local
301 if (auto EC = Reader.readArray(OldFpoRecords, NumRecords)) in initializeOldFpoRecords()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DSampleProfReader.cpp482 auto NumRecords = readNumber<uint32_t>(); in readProfile() local
483 if (std::error_code EC = NumRecords.getError()) in readProfile()
486 for (uint32_t I = 0; I < *NumRecords; ++I) { in readProfile()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DStackMaps.rst328 uint32 : NumRecords
337 StkMapRecord[NumRecords] {
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterStmt.cpp404 Record.push_back(Satisfaction.NumRecords); in addConstraintSatisfaction()