Home
last modified time | relevance | path

Searched refs:hash_entry (Results 1 – 25 of 168) sorted by relevance

1234567

/third_party/mesa3d/src/util/
Dhash_table.h41 struct hash_entry { struct
48 struct hash_entry *table; argument
81 void (*delete_function)(struct hash_entry *entry));
83 void (*delete_function)(struct hash_entry *entry));
92 struct hash_entry *
94 struct hash_entry *
97 struct hash_entry *
99 struct hash_entry *
103 struct hash_entry *entry);
107 struct hash_entry *_mesa_hash_table_next_entry(struct hash_table *ht,
[all …]
Dhash_table.c131 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/gettext/gnulib-local/lib/
Dmem-hash-map.c41 typedef struct hash_entry struct
47 struct hash_entry *next; argument
49 hash_entry; typedef
98 htab->table = XCALLOC (init_size + 1, hash_entry); in hash_init()
153 hash_entry *table = htab->table; in lookup()
193 hash_entry *table = htab->table; in hash_find_entry()
212 hash_entry *table = htab->table; in insert_entry_2()
241 hash_entry *table = htab->table; in resize()
247 htab->table = XCALLOC (1 + htab->size, hash_entry); in resize()
271 hash_entry *table = htab->table; in hash_insert_entry()
[all …]
Dmem-hash-map.h25 struct hash_entry;
31 struct hash_entry *first; /* Pointer to head of list of entries. */
32 struct hash_entry *table; /* Pointer to array of entries. */
/third_party/weston/xwayland/
Dhash.c42 struct hash_entry { struct
48 struct hash_entry *table; argument
104 entry_is_free(struct hash_entry *entry) in entry_is_free()
110 entry_is_deleted(struct hash_entry *entry) in entry_is_deleted()
116 entry_is_present(struct hash_entry *entry) in entry_is_present()
174 struct hash_entry *entry = ht->table + hash_address; in hash_table_search()
194 struct hash_entry *entry; in hash_table_for_each()
207 struct hash_entry *entry; in hash_table_lookup()
220 struct hash_entry *table, *entry; in hash_table_rehash()
269 struct hash_entry *entry = ht->table + hash_address; in hash_table_insert()
[all …]
/third_party/e2fsprogs/e2fsck/
Drehash.c83 struct hash_entry *harray;
91 struct hash_entry { struct
128 struct hash_entry *ent; in fill_dir_block()
200 retval = ext2fs_resize_array(sizeof(struct hash_entry), in fill_dir_block()
236 const struct hash_entry *he_a = (const struct hash_entry *) a; in ino_cmp()
237 const struct hash_entry *he_b = (const struct hash_entry *) b; in ino_cmp()
262 const struct hash_entry *he_a = (const struct hash_entry *) a; in name_cmp()
263 const struct hash_entry *he_b = (const struct hash_entry *) b; in name_cmp()
288 const struct hash_entry *he_a = (const struct hash_entry *) a; in name_cf_cmp()
289 const struct hash_entry *he_b = (const struct hash_entry *) b; in name_cf_cmp()
[all …]
/third_party/mesa3d/src/compiler/glsl/
Dir_builder_print_visitor.cpp259 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()
512 const struct hash_entry *const he_lhs = in visit_enter()
526 const struct hash_entry *const he_lhs = in visit_leave()
529 const struct hash_entry *const he_rhs = in visit_leave()
584 const struct hash_entry *const he = in print_without_declaration()
631 const struct hash_entry *const he = in visit_enter()
681 const struct hash_entry *const he = in visit_leave()
708 const struct hash_entry *const he = in visit_leave()
[all …]
Dstring_to_uint_map.h114 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()
Dir_variable_refcount.cpp45 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()
Dir_array_refcount.cpp44 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()
Dir_function_detect_recursion.cpp173 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/intel/tools/
Dintel_sanitize_gpu.c87 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/
Dwrgif.c64 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/util/tests/hash_table/
Drandom_entry.c50 uint32_t_key_is_even(struct hash_entry *entry) in uint32_t_key_is_even()
59 struct hash_entry *entry; in main()
Dcollision.c35 static void entry_free(struct hash_entry *entry) in entry_free()
47 struct hash_entry *entry1, *entry2; in main()
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_live_shader_cache.c118 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/compiler/nir/
Dnir_lower_global_vars_to_local.c42 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/compiler/glsl/tests/
Dvaryings_test.cpp133 hash_entry *entry = _mesa_hash_table_search(consumer_inputs, "a"); in TEST_F()
211 hash_entry *entry = _mesa_hash_table_search(consumer_interface_inputs, in TEST_F()
245 hash_entry *entry = _mesa_hash_table_search(consumer_interface_inputs, in TEST_F()
/third_party/mesa3d/src/gallium/drivers/lima/ir/
Dlima_nir_split_loads.c76 struct hash_entry *entry = in replace_intrinsic()
105 struct hash_entry *entry = in replace_load_const()
/third_party/mesa3d/src/drm-shim/
Ddevice.c144 struct hash_entry *entry = in drm_shim_fd_lookup()
206 struct hash_entry *entry = in drm_shim_ioctl_gem_close()
303 struct hash_entry *entry = in drm_shim_bo_lookup()
/third_party/mesa3d/src/gallium/drivers/vc4/
Dvc4_qir_lower_uniforms.c50 struct hash_entry *entry; in add_uniform()
64 struct hash_entry *entry; in remove_uniform()
/third_party/mesa3d/src/mesa/main/
Dhash.c127 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/zink/
Dzink_framebuffer.c61 struct hash_entry *he = _mesa_hash_table_search_pre_hashed(&fb->objects, hash, rp); in zink_init_framebuffer_imageless()
188 struct hash_entry *entry = _mesa_hash_table_search(&ctx->framebuffer_cache, &state); in zink_get_framebuffer_imageless()
208 struct hash_entry *he = _mesa_hash_table_search_pre_hashed(&fb->objects, hash, rp); in zink_init_framebuffer()
354 struct hash_entry *entry = _mesa_hash_table_search(&screen->framebuffer_cache, &state); in zink_get_framebuffer()
/third_party/mesa3d/src/mesa/program/
Dsymbol_table.c99 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/gallium/drivers/d3d12/
Dd3d12_pipeline_state.cpp295 struct hash_entry *entry = _mesa_hash_table_search_pre_hashed(ctx->pso_cache, hash, in d3d12_get_gfx_pipeline_state()
323 delete_entry(struct hash_entry *entry) in delete_entry()
331 remove_entry(struct d3d12_context *ctx, struct hash_entry *entry) in remove_entry()

1234567