Home | History | Annotate | Download | only in Reader

Lines Matching full:blob

61   case BitCodeAbbrevOp::Blob:
82 case BitCodeAbbrevOp::Blob:
120 Op.getEncoding() != BitCodeAbbrevOp::Blob) {
137 report_fatal_error("Array element type can't be an Array or a Blob");
156 assert(Op.getEncoding() == BitCodeAbbrevOp::Blob);
157 // Blob case. Read the number of bytes as a vbr6.
161 // Figure out where the end of this blob will be including tail padding.
171 // Skip over the blob.
178 StringRef *Blob) {
197 CodeOp.getEncoding() == BitCodeAbbrevOp::Blob)
198 report_fatal_error("Abbreviation starts with an Array or a Blob");
210 Op.getEncoding() != BitCodeAbbrevOp::Blob) {
230 report_fatal_error("Array element type can't be an Array or a Blob");
246 assert(Op.getEncoding() == BitCodeAbbrevOp::Blob);
247 // Blob case. Read the number of bytes as a vbr6.
251 // Figure out where the end of this blob will be including tail padding.
264 // over tail padding first, in case jumping to NewEnd invalidates the Blob
270 if (Blob) {
271 *Blob = StringRef(Ptr, NumElts);