Lines Matching defs:SubSectionSize
1143 // |SubSectionType|SubSectionSize|Contents...|
1144 uint32_t SubType, SubSectionSize;
1148 if (Error E = Reader.readInteger(SubSectionSize))
1152 if (Error E = Reader.readFixedString(Contents, SubSectionSize))
1169 uint32_t PaddedSize = alignTo(SubSectionSize, 4);
1170 if (Error E = Reader.skip(PaddedSize - SubSectionSize))
1203 // |SubSectionType|SubSectionSize|Contents...|
1204 uint32_t SubType, SubSectionSize;
1207 if (Error E = consume(Data, SubSectionSize))
1217 W.printHex("SubSectionSize", SubSectionSize);
1220 if (SubSectionSize > Data.size())
1223 StringRef Contents = Data.substr(0, SubSectionSize);
1225 // Add SubSectionSize to the current offset and align that offset to find
1228 size_t NextOffset = SectionOffset + SubSectionSize;
1259 if (SubSectionSize < 12) {