/hardware/google/gfxstream/guest/mesa/src/util/ |
D | hash_table.h | 40 struct hash_entry { struct 47 struct hash_entry *table; argument 80 void (*delete_function)(struct hash_entry *entry)); 82 void (*delete_function)(struct hash_entry *entry)); 91 struct hash_entry * 93 struct hash_entry * 96 struct hash_entry * 98 struct hash_entry * 102 struct hash_entry *entry); 106 struct hash_entry *_mesa_hash_table_next_entry(struct hash_table *ht, [all …]
|
D | hash_table.c | 131 entry_is_free(const struct hash_entry *entry) in entry_is_free() 137 entry_is_deleted(const struct hash_table *ht, struct hash_entry *entry) in entry_is_deleted() 143 entry_is_present(const struct hash_table *ht, struct hash_entry *entry) in entry_is_present() 163 ht->table = rzalloc_array(mem_ctx, struct hash_entry, ht->size); in _mesa_hash_table_init() 225 ht->table = ralloc_array(ht, struct hash_entry, ht->size); in _mesa_hash_table_clone() 231 memcpy(ht->table, src->table, ht->size * sizeof(struct hash_entry)); in _mesa_hash_table_clone() 244 void (*delete_function)(struct hash_entry *entry)) in _mesa_hash_table_destroy() 260 memset(ht->table, 0, sizeof(struct hash_entry) * hash_sizes[ht->size_index].size); in hash_table_clear_fast() 272 void (*delete_function)(struct hash_entry *entry)) in _mesa_hash_table_clear() 277 struct hash_entry *entry; in _mesa_hash_table_clear() [all …]
|
D | mesa_cache_db.c | 252 struct mesa_index_db_hash_entry *hash_entry; in mesa_db_update_index() local 272 hash_entry = ralloc(db->mem_ctx, struct mesa_index_db_hash_entry); in mesa_db_update_index() 273 if (!hash_entry) in mesa_db_update_index() 276 hash_entry->cache_db_file_offset = index_entry.cache_db_file_offset; in mesa_db_update_index() 277 hash_entry->index_db_file_offset = db->index.offset; in mesa_db_update_index() 278 hash_entry->last_access_time = index_entry.last_access_time; in mesa_db_update_index() 279 hash_entry->size = index_entry.size; in mesa_db_update_index() 281 _mesa_hash_table_u64_insert(db->index_db, index_entry.hash, hash_entry); in mesa_db_update_index() 690 struct mesa_index_db_hash_entry *hash_entry; in mesa_cache_db_read_entry() local 705 hash_entry = _mesa_hash_table_u64_search(db->index_db, hash); in mesa_cache_db_read_entry() [all …]
|
D | u_hash_table.c | 103 struct hash_entry *entry = _mesa_hash_table_search(ht, key); in util_hash_table_get()
|
D | u_debug_stack_android.cpp | 45 hash_entry *entry = in intern_symbol()
|
D | u_debug_symbol.c | 269 struct hash_entry *entry = _mesa_hash_table_search(symbols_hash, addr); in debug_symbol_name_cached()
|
D | u_debug_stack.c | 67 struct hash_entry *entry = _mesa_hash_table_search(symbols_hash, addr); in symbol_name_cached()
|
D | os_misc.c | 226 struct hash_entry *entry = _mesa_hash_table_search(options_tbl, name); in os_get_option_cached()
|
/hardware/google/gfxstream/guest/mesa/src/util/tests/hash_table/ |
D | random_entry.c | 50 uint32_t_key_is_even(struct hash_entry *entry) in uint32_t_key_is_even() 59 struct hash_entry *entry; in main()
|
D | collision.c | 35 static void entry_free(struct hash_entry *entry) in entry_free() 47 struct hash_entry *entry1, *entry2; in main()
|
D | destroy_callback.c | 41 delete_callback(struct hash_entry *entry) in delete_callback()
|
D | insert_and_lookup.c | 41 struct hash_entry *entry; in main()
|
D | replacement.c | 41 struct hash_entry *entry; in main()
|
D | remove_key.c | 38 struct hash_entry *entry; in main()
|
D | delete_and_lookup.c | 51 struct hash_entry *entry; in main()
|
D | insert_many.c | 53 struct hash_entry *entry; in main()
|
D | delete_management.c | 53 struct hash_entry *entry; in main()
|
D | clear.c | 50 static void delete_function(struct hash_entry *entry) in delete_function()
|
/hardware/google/gfxstream/guest/mesa/src/util/perf/ |
D | u_perfetto_renderpass.h | 123 struct hash_entry *entry = _mesa_hash_table_search(debug_markers, name); in debug_marker_stage()
|
/hardware/google/gfxstream/guest/mesa/src/vulkan/runtime/ |
D | vk_meta.c | 153 struct hash_entry *entry = in vk_meta_lookup_object() 184 struct hash_entry *entry = in vk_meta_cache_object()
|
D | vk_object.c | 188 struct hash_entry *entry = in get_swapchain_private_data_locked()
|
/hardware/google/gfxstream/guest/mesa/src/vulkan/device-select-layer/ |
D | device_select_layer.c | 97 struct hash_entry *entry; in device_select_layer_get_instance()
|
/hardware/google/gfxstream/guest/mesa/src/vulkan/wsi/ |
D | wsi_common_x11.c | 412 struct hash_entry *entry = _mesa_hash_table_search(wsi->connections, conn); in wsi_x11_get_connection()
|