Lines Matching defs:blob
2575 "expected hex string blob for key '" + key + "'");
2577 // Extract the alignment of the blob data, which gets stored at the
2581 "expected hex string blob for key '" + key +
2588 "expected hex string blob for key '" + key +
2594 // Get the data portion of the blob.
2599 // Allocate memory for the blob using the provided allocator and copy the
2601 AsmResourceBlob blob = allocator(data.size(), align);
2602 assert(llvm::isAddrAligned(llvm::Align(align), blob.getData().data()) &&
2603 blob.isMutable() &&
2604 "blob allocator did not return a properly aligned address");
2605 memcpy(blob.getMutableData().data(), data.data(), data.size());
2606 return blob;