Lines Matching defs:SubSectionSize
1100 // |SubSectionType|SubSectionSize|Contents...|
1101 uint32_t SubType, SubSectionSize;
1105 if (Error E = Reader.readInteger(SubSectionSize))
1109 if (Error E = Reader.readFixedString(Contents, SubSectionSize))
1126 uint32_t PaddedSize = alignTo(SubSectionSize, 4);
1127 if (Error E = Reader.skip(PaddedSize - SubSectionSize))
1160 // |SubSectionType|SubSectionSize|Contents...|
1161 uint32_t SubType, SubSectionSize;
1164 if (Error E = consume(Data, SubSectionSize))
1174 W.printHex("SubSectionSize", SubSectionSize);
1177 if (SubSectionSize > Data.size())
1180 StringRef Contents = Data.substr(0, SubSectionSize);
1182 // Add SubSectionSize to the current offset and align that offset to find
1185 size_t NextOffset = SectionOffset + SubSectionSize;
1216 if (SubSectionSize < 12) {