Home
last modified time | relevance | path

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

/hardware/google/gfxstream/guest/mesa/src/vulkan/runtime/
Dvk_pipeline_cache.c159 _mesa_set_search_pre_hashed(cache->object_cache, hash, object); in vk_pipeline_cache_remove_object()
165 _mesa_set_remove(cache->object_cache, entry); in vk_pipeline_cache_remove_object()
287 if (cache->object_cache == NULL) in vk_pipeline_cache_insert_object()
295 cache->object_cache, hash, object, &found); in vk_pipeline_cache_insert_object()
346 if (cache != NULL && cache->object_cache != NULL) { in vk_pipeline_cache_lookup_object()
349 _mesa_set_search_pre_hashed(cache->object_cache, hash, &key); in vk_pipeline_cache_lookup_object()
360 if (!cache->skip_disk_cache && disk_cache && cache->object_cache) { in vk_pipeline_cache_lookup_object()
644 cache->object_cache = _mesa_set_create(NULL, object_key_hash, in vk_pipeline_cache_create()
648 if (cache->object_cache && pCreateInfo->initialDataSize > 0) { in vk_pipeline_cache_create()
660 if (cache->object_cache) { in vk_pipeline_cache_destroy()
[all …]
Dvk_pipeline_cache.h164 struct set *object_cache; member