Lines Matching refs:data
43 const void *data;
50 const void *data, size_t data_size);
59 blob_write_bytes(blob, data_obj->data, data_obj->data_size);
73 * serialize the data size separately.
77 const void *data = blob_read_bytes(blob, data_size);
80 raw_data_object_create(device, key_data, key_size, data, data_size);
103 const void *data, size_t data_size)
117 data_obj->data = obj_data;
121 memcpy(obj_data, data, data_size);
230 * and we already know the data size of the allocation. This should make
231 * the first GetPipelineCacheData() call to get the data size faster in the
235 if (blob->data == NULL && blob->fixed_allocation) {
258 "Insufficient memory for pipeline cache data");
271 const void *data, size_t data_size,
284 blob_reader_init(&reader, data, data_size);
345 uint8_t *data = disk_cache_get(disk_cache, cache_key, &data_size);
346 if (data) {
349 data, data_size,
351 free(data);
373 data_obj->data,
434 disk_cache_put(disk_cache, cache_key, blob.data, blob.size, NULL);
461 blob_reader_init(&blob, data_obj->data, data_obj->data_size);
492 blob.data, blob.size);
533 const void *data, size_t size)
536 blob_reader_init(&blob, data, size);
553 const void *data = blob_read_bytes(&blob, data_size);
563 data, data_size, ops);