/third_party/mesa3d/src/util/tests/ |
H A D | cache_test.cpp | 100 result = disk_cache_get(cache, key, NULL); in does_cache_contain() 122 void *result = disk_cache_get(cache, key, NULL); in cache_exists() 248 /* Ensure that disk_cache_get returns nothing before anything is added. */ in test_put_and_get() 249 result = (char *) disk_cache_get(cache, blob_key, &size); in test_put_and_get() 250 EXPECT_EQ(result, nullptr) << "disk_cache_get with non-existent item (pointer)"; in test_put_and_get() 251 EXPECT_EQ(size, 0) << "disk_cache_get with non-existent item (size)"; in test_put_and_get() 259 result = (char *) disk_cache_get(cache, blob_key, &size); in test_put_and_get() 260 EXPECT_STREQ(blob, result) << "disk_cache_get of existing item (pointer)"; in test_put_and_get() 261 EXPECT_EQ(size, sizeof(blob)) << "disk_cache_get of existing item (size)"; in test_put_and_get() 272 result = (char *) disk_cache_get(cach in test_put_and_get() [all...] |
/third_party/mesa3d/src/util/ |
H A D | disk_cache.h | 162 * disk_cache_get(). 203 * The item can be retrieved later with disk_cache_get(), (unless the item has 217 * The item can be retrieved later with disk_cache_get(), (unless the item has 244 disk_cache_get(struct disk_cache *cache, const cache_key key, size_t *size); 319 disk_cache_get(struct disk_cache *cache, const cache_key key, size_t *size) in disk_cache_get() function
|
H A D | disk_cache.c | 419 disk_cache_get(struct disk_cache *cache, const cache_key key, size_t *size) in disk_cache_get() function
|
/third_party/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_disk_cache.c | 110 void *buffer = disk_cache_get(cache, cache_key, &size); in lima_vs_disk_cache_retrieve() 162 void *buffer = disk_cache_get(cache, cache_key, &size); in lima_fs_disk_cache_retrieve()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | shader_cache.cpp | 215 uint8_t *buffer = (uint8_t *) disk_cache_get(cache, prog->data->sha1, in shader_cache_read_program_metadata()
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_disk_cache.c | 141 void *buffer = disk_cache_get(compiler->disk_cache, cache_key, &size); in etna_disk_cache_retrieve()
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_disk_cache.c | 233 void *buffer = disk_cache_get(shader->compiler->disk_cache, cache_key, &size); in ir3_disk_cache_retrieve()
|
/third_party/mesa3d/src/gallium/drivers/v3d/ |
H A D | v3d_disk_cache.c | 125 void *buffer = disk_cache_get(cache, cache_key, &buffer_size); in v3d_disk_cache_retrieve()
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_disk_cache.c | 169 void *buffer = disk_cache_get(screen->disk_cache, cache_key, &size); in iris_disk_cache_retrieve()
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_disk_cache.c | 155 void *buffer = disk_cache_get(screen->disk_cache, cache_key, &size); in crocus_disk_cache_retrieve()
|
/third_party/mesa3d/src/compiler/spirv/ |
H A D | nir_load_libclc.c | 319 uint8_t *buffer = disk_cache_get(disk_cache, cache_key, &buffer_size); in nir_load_libclc_shader()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_screen.c | 968 uint8_t *buffer = disk_cache_get(screen->disk_shader_cache, sha1, &binary_size); in lp_disk_cache_find_shader()
|
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_pipeline_cache.c | 345 uint8_t *data = disk_cache_get(disk_cache, cache_key, &data_size); in vk_pipeline_cache_lookup_object()
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_pipeline_cache.c | 345 (struct cache_entry *)disk_cache_get(device->physical_device->disk_cache, disk_sha1, NULL); in radv_create_shaders_from_pipeline_cache()
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_pipeline_cache.c | 313 uint8_t *buffer = disk_cache_get(disk_cache, cache_key, &buffer_size); in v3dv_pipeline_cache_search_for_pipeline()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
H A D | nvc0_program.c | 651 cached_data = disk_cache_get(disk_shader_cache, key, &cache_size); in nvc0_program_translate()
|
/third_party/mesa3d/src/gallium/auxiliary/nir/ |
H A D | tgsi_to_nir.c | 2573 * which we'll check after disk_cache_get(). in save_nir_to_disk_cache() 2599 uint32_t *buffer = (uint32_t *)disk_cache_get(cache, key, &size); in load_nir_from_disk_cache() 2604 * disk_cache_get is supposed to do that for us. in load_nir_from_disk_cache() 2606 * as we cannot fully trust disk_cache_get (EGL_ANDROID_blob_cache) */ in load_nir_from_disk_cache()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_screen.c | 266 pcci.pInitialData = disk_cache_get(screen->disk_cache, key, &pg->pipeline_cache_size); in cache_get_job()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_state_shaders.cpp | 433 uint32_t *buffer = (uint32_t*)disk_cache_get(sscreen->disk_shader_cache, sha1, &total_size); in si_shader_cache_load_shader()
|