Lines Matching defs:blob
86 struct blob *blob)
91 blob_write_bytes(blob, cached_blob->data, cached_blob->size);
114 struct blob_reader *blob)
116 size_t data_size = blob->end - blob->current;
120 blob_read_bytes(blob, data_size),
138 VK_MULTIALLOC_DECL(&ma, struct dzn_cached_blob, blob, 1);
145 memcpy(blob->hash, hash, sizeof(blob->hash));
147 vk_pipeline_cache_object_init(device, &blob->base,
149 blob->hash, sizeof(blob->hash));
153 blob->data = copy;
154 blob->size = data_size;
156 return &blob->base;
355 struct blob dxil_blob;