Searched refs:SubSectionSize (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVCodeViewReader.cpp | 334 uint32_t SubType, SubSectionSize; in initializeFileAndStringTables() local 338 if (Error E = Reader.readInteger(SubSectionSize)) in initializeFileAndStringTables() 342 if (Error E = Reader.readFixedString(Contents, SubSectionSize)) in initializeFileAndStringTables() 359 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables() 360 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables() 667 uint32_t SubType, SubSectionSize; in traverseSymbolSection() local 670 if (Error E = consume(Data, SubSectionSize)) in traverseSymbolSection() 677 if (SubSectionSize > Data.size()) in traverseSymbolSection() 679 StringRef Contents = Data.substr(0, SubSectionSize); in traverseSymbolSection() 684 size_t NextOffset = SectionOffset + SubSectionSize; in traverseSymbolSection() [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | COFFDumper.cpp | 1146 uint32_t SubType, SubSectionSize; in initializeFileAndStringTables() local 1150 if (Error E = Reader.readInteger(SubSectionSize)) in initializeFileAndStringTables() 1154 if (Error E = Reader.readFixedString(Contents, SubSectionSize)) in initializeFileAndStringTables() 1171 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables() 1172 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables() 1206 uint32_t SubType, SubSectionSize; in printCodeViewSymbolSection() local 1209 if (Error E = consume(Data, SubSectionSize)) in printCodeViewSymbolSection() 1219 W.printHex("SubSectionSize", SubSectionSize); in printCodeViewSymbolSection() 1222 if (SubSectionSize > Data.size()) in printCodeViewSymbolSection() 1225 StringRef Contents = Data.substr(0, SubSectionSize); in printCodeViewSymbolSection() [all …]
|