Searched refs:SubSectionSize (Results 1 – 2 of 2) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVCodeViewReader.cpp | 339 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 …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | COFFDumper.cpp | 1098 uint32_t SubType, SubSectionSize; in initializeFileAndStringTables() local 1102 if (Error E = Reader.readInteger(SubSectionSize)) in initializeFileAndStringTables() 1123 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables() 1124 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables() 1158 uint32_t SubType, SubSectionSize; in printCodeViewSymbolSection() local 1161 if (Error E = consume(Data, SubSectionSize)) in printCodeViewSymbolSection() 1171 W.printHex("SubSectionSize", SubSectionSize); in printCodeViewSymbolSection() 1174 if (SubSectionSize > Data.size()) in printCodeViewSymbolSection() 1177 StringRef Contents = Data.substr(0, SubSectionSize); in printCodeViewSymbolSection() 1182 size_t NextOffset = SectionOffset + SubSectionSize; in printCodeViewSymbolSection() [all …]
|