Home
last modified time | relevance | path

Searched refs:compressed_data (Results 1 – 2 of 2) sorted by relevance

/hardware/google/gfxstream/guest/mesa/src/util/
Ddisk_cache_os.c661 void *compressed_data; in create_cache_item_header_and_blob() local
665 compressed_data = dc_job->data; in create_cache_item_header_and_blob()
667 compressed_data = malloc(max_buf); in create_cache_item_header_and_blob()
668 if (compressed_data == NULL) in create_cache_item_header_and_blob()
672 compressed_data, max_buf); in create_cache_item_header_and_blob()
707 cf_data.crc32 = util_hash_crc32(compressed_data, compressed_size); in create_cache_item_header_and_blob()
714 if (!blob_write_bytes(cache_blob, compressed_data, compressed_size)) in create_cache_item_header_and_blob()
718 free(compressed_data); in create_cache_item_header_and_blob()
724 free(compressed_data); in create_cache_item_header_and_blob()
Ddisk_cache.c460 uint8_t compressed_data[]; member
478 util_compress_deflate(data, size, entry->compressed_data, max_buf); in blob_put_compressed()
524 bool ret = util_compress_inflate(entry->compressed_data, compressed_size, in blob_get_compressed()