Home
last modified time | relevance | path

Searched refs:SubSectionSize (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp339 uint32_t SubType, SubSectionSize; in initializeFileAndStringTables() local
343 if (Error E = Reader.readInteger(SubSectionSize)) in initializeFileAndStringTables()
347 if (Error E = Reader.readFixedString(Contents, SubSectionSize)) in initializeFileAndStringTables()
364 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables()
365 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables()
672 uint32_t SubType, SubSectionSize; in traverseSymbolSection() local
675 if (Error E = consume(Data, SubSectionSize)) in traverseSymbolSection()
682 if (SubSectionSize > Data.size()) in traverseSymbolSection()
684 StringRef Contents = Data.substr(0, SubSectionSize); in traverseSymbolSection()
689 size_t NextOffset = SectionOffset + SubSectionSize; in traverseSymbolSection()
[all …]
/src/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1101 uint32_t SubType, SubSectionSize; in initializeFileAndStringTables() local
1105 if (Error E = Reader.readInteger(SubSectionSize)) in initializeFileAndStringTables()
1109 if (Error E = Reader.readFixedString(Contents, SubSectionSize)) in initializeFileAndStringTables()
1126 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables()
1127 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables()
1161 uint32_t SubType, SubSectionSize; in printCodeViewSymbolSection() local
1164 if (Error E = consume(Data, SubSectionSize)) in printCodeViewSymbolSection()
1174 W.printHex("SubSectionSize", SubSectionSize); in printCodeViewSymbolSection()
1177 if (SubSectionSize > Data.size()) in printCodeViewSymbolSection()
1180 StringRef Contents = Data.substr(0, SubSectionSize); in printCodeViewSymbolSection()
[all …]