Lines Matching refs:SubSectionSize
928 uint32_t SubType, SubSectionSize; in initializeFileAndStringTables() local
930 error(Reader.readInteger(SubSectionSize)); in initializeFileAndStringTables()
933 error(Reader.readFixedString(Contents, SubSectionSize)); in initializeFileAndStringTables()
947 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables()
948 error(Reader.skip(PaddedSize - SubSectionSize)); in initializeFileAndStringTables()
978 uint32_t SubType, SubSectionSize; in printCodeViewSymbolSection() local
980 error(consume(Data, SubSectionSize)); in printCodeViewSymbolSection()
984 W.printHex("SubSectionSize", SubSectionSize); in printCodeViewSymbolSection()
987 if (SubSectionSize > Data.size()) in printCodeViewSymbolSection()
989 StringRef Contents = Data.substr(0, SubSectionSize); in printCodeViewSymbolSection()
994 size_t NextOffset = SectionOffset + SubSectionSize; in printCodeViewSymbolSection()
1024 if (SubSectionSize < 12) { in printCodeViewSymbolSection()