Lines Matching refs:SubSectionSize
957 uint32_t SubType, SubSectionSize; in initializeFileAndStringTables() local
961 if (Error E = Reader.readInteger(SubSectionSize)) in initializeFileAndStringTables()
965 if (Error E = Reader.readFixedString(Contents, SubSectionSize)) in initializeFileAndStringTables()
982 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables()
983 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables()
1017 uint32_t SubType, SubSectionSize; in printCodeViewSymbolSection() local
1020 if (Error E = consume(Data, SubSectionSize)) in printCodeViewSymbolSection()
1030 W.printHex("SubSectionSize", SubSectionSize); in printCodeViewSymbolSection()
1033 if (SubSectionSize > Data.size()) in printCodeViewSymbolSection()
1036 StringRef Contents = Data.substr(0, SubSectionSize); in printCodeViewSymbolSection()
1041 size_t NextOffset = SectionOffset + SubSectionSize; in printCodeViewSymbolSection()
1072 if (SubSectionSize < 12) { in printCodeViewSymbolSection()