/third_party/mesa3d/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 …]
|
/third_party/mbedtls/library/ |
D | hash_info.c | 32 } hash_entry; typedef 34 static const hash_entry hash_table[] = { 62 const hash_entry *entry = hash_table; in mbedtls_hash_info_get_size() 74 const hash_entry *entry = hash_table; in mbedtls_hash_info_get_block_size() 86 const hash_entry *entry = hash_table; in mbedtls_hash_info_psa_from_md() 98 const hash_entry *entry = hash_table; in mbedtls_hash_info_md_from_psa()
|
/third_party/mesa3d/src/compiler/glsl/ |
D | ir_builder_print_visitor.cpp | 259 const struct hash_entry *const he = in print_without_declaration() 268 const struct hash_entry *const he = in visit() 439 const struct hash_entry *const he = in print_without_declaration() 510 const struct hash_entry *const he_lhs = in visit_enter() 524 const struct hash_entry *const he_lhs = in visit_leave() 527 const struct hash_entry *const he_rhs = in visit_leave() 581 const struct hash_entry *const he = in print_without_declaration() 628 const struct hash_entry *const he = in visit_enter() 678 const struct hash_entry *const he = in visit_leave() 705 const struct hash_entry *const he = in visit_leave() [all …]
|
D | string_to_uint_map.h | 114 hash_entry *entry = _mesa_hash_table_search(this->ht, in get() 141 struct hash_entry *entry = _mesa_hash_table_search(this->ht, dup_key); in put()
|
D | ir_variable_refcount.cpp | 45 free_entry(struct hash_entry *entry) in free_entry() 81 struct hash_entry *e = _mesa_hash_table_search(this->ht, var); in get_variable_entry()
|
D | ir_array_refcount.cpp | 44 free_entry(struct hash_entry *entry) in free_entry() 83 struct hash_entry *e = _mesa_hash_table_search(this->ht, var); in get_variable_entry()
|
D | ir_function_detect_recursion.cpp | 173 hash_entry *entry = _mesa_hash_table_search(this->function_hash, sig); in get_function() 264 hash_entry *entry = _mesa_hash_table_search(visitor->function_hash, key); in remove_unlinked_functions()
|
/third_party/mesa3d/src/drm-shim/ |
D | device.c | 143 static void handle_delete_fxn(struct hash_entry *entry) in handle_delete_fxn() 150 struct hash_entry *entry = in drm_shim_fd_unregister() 170 struct hash_entry *entry = in drm_shim_fd_lookup() 244 struct hash_entry *entry = in drm_shim_ioctl_gem_close() 346 struct hash_entry *entry = in drm_shim_bo_lookup()
|
/third_party/mesa3d/src/intel/tools/ |
D | intel_sanitize_gpu.c | 87 struct hash_entry *e = _mesa_hash_table_search(fds_to_bo_sizes, in bo_size_table() 98 struct hash_entry *e = _mesa_hash_table_search(t, (void*)(uintptr_t)handle); in bo_size() 121 struct hash_entry *e = _mesa_hash_table_search(fds_to_bo_sizes, in dup_drm_fd() 132 struct hash_entry *e = _mesa_hash_table_search(fds_to_bo_sizes, in del_drm_fd() 291 struct hash_entry *e = in gem_close()
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | wrgif.c | 64 typedef int hash_entry; /* must hold (code_int << 8) | byte */ typedef 66 #define HASH_ENTRY(prefix, suffix) ((((hash_entry)(prefix)) << 8) | (suffix)) 95 hash_entry *hash_value; /* => hash table of symbol values */ 366 register hash_entry probe_value; in put_LZW_pixel_rows() 567 dest->hash_value = (hash_entry *) in jinit_write_gif() 569 HSIZE * sizeof(hash_entry)); in jinit_write_gif()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | u_live_shader_cache.c | 118 struct hash_entry *entry = _mesa_hash_table_search(cache->hashtable, sha1); in util_live_shader_cache_get() 149 struct hash_entry *entry2 = _mesa_hash_table_search(cache->hashtable, sha1); in util_live_shader_cache_get() 180 struct hash_entry *entry = _mesa_hash_table_search(cache->hashtable, in util_shader_reference()
|
/third_party/mesa3d/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()
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_lower_global_vars_to_local.c | 42 struct hash_entry *entry = in register_var_use() 87 struct hash_entry *entry = _mesa_hash_table_search(var_func_table, var); in nir_lower_global_vars_to_local()
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
D | d3d12_pipeline_state.cpp | 353 struct hash_entry *entry = _mesa_hash_table_search_pre_hashed(ctx->pso_cache, hash, in d3d12_get_gfx_pipeline_state() 381 delete_gfx_entry(struct hash_entry *entry) in delete_gfx_entry() 389 remove_gfx_entry(struct d3d12_context *ctx, struct hash_entry *entry) in remove_gfx_entry() 480 struct hash_entry *entry = _mesa_hash_table_search_pre_hashed(ctx->compute_pso_cache, hash, in d3d12_get_compute_pipeline_state() 508 delete_compute_entry(struct hash_entry *entry) in delete_compute_entry() 516 remove_compute_entry(struct d3d12_context *ctx, struct hash_entry *entry) in remove_compute_entry()
|
D | d3d12_cmd_signature.cpp | 68 struct hash_entry *entry = _mesa_hash_table_search(ctx->cmd_signature_cache, &key); in d3d12_get_cmd_signature() 111 delete_entry(struct hash_entry *entry) in delete_entry()
|
D | d3d12_batch.cpp | 84 delete_bo(hash_entry *entry) in delete_bo() 242 hash_entry *entry = _mesa_hash_table_search(batch->bos, bo); in d3d12_batch_has_references() 254 hash_entry *entry = _mesa_hash_table_search(batch->bos, res->bo); in d3d12_batch_reference_resource()
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/ |
D | lima_nir_split_loads.c | 76 struct hash_entry *entry = in replace_intrinsic() 105 struct hash_entry *entry = in replace_load_const()
|
/third_party/mesa3d/src/mesa/main/ |
D | hash.c | 127 const struct hash_entry *entry; in _mesa_HashLookup_unlocked() 186 struct hash_entry *entry; in _mesa_HashInsert_unlocked() 262 struct hash_entry *entry; in _mesa_HashRemove_unlocked()
|
/third_party/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_qir_lower_uniforms.c | 50 struct hash_entry *entry; in add_uniform() 64 struct hash_entry *entry; in remove_uniform()
|
/third_party/mesa3d/src/mesa/program/ |
D | symbol_table.c | 99 struct hash_entry *hte = _mesa_hash_table_search(table->ht, in _mesa_symbol_table_pop_scope() 136 struct hash_entry *entry = _mesa_hash_table_search(table->ht, name); in find_symbol()
|
/third_party/mesa3d/src/mesa/vbo/ |
D | vbo_minmax_index.c | 70 vbo_minmax_cache_delete_entry(struct hash_entry *entry) in vbo_minmax_cache_delete_entry() 112 struct hash_entry *result; in vbo_get_minmax_cached() 182 struct hash_entry *table_entry; in vbo_minmax_cache_store()
|