Lines Matching refs:blob_length
194 * | 32 bit blob_length |
206 // write blob_length
207 auto blob_length = blob.size();
208 if (blob_length > std::numeric_limits<uint32_t>::max()) {
212 buffer = blob_length;
218 uint32_t(offset) + uint32_t(blob_length) < uint32_t(offset)) { // overflow check
226 if(blob_length)
227 out.indirect.write(reinterpret_cast<const char*>(&blob[0]), blob_length);
326 uint32_t blob_length = 0;
328 in.elements.read(reinterpret_cast<char*>(&blob_length), sizeof(uint32_t));
329 blob->resize(blob_length);