Home
last modified time | relevance | path

Searched defs:hash (Results 1 – 25 of 919) sorted by relevance

12345678910>>...37

/external/icu/icu4c/source/common/
Duhash.cpp122 #define HASH_DELETE_KEY_VALUE(hash, keypointer, valuepointer) \ argument
143 _uhash_setElement(UHashtable *hash, UHashElement* e, in _uhash_setElement()
183 _uhash_internalRemoveElement(UHashtable *hash, UHashElement* e) { in _uhash_internalRemoveElement()
192 _uhash_internalSetResizePolicy(UHashtable *hash, enum UHashResizePolicy policy) { in _uhash_internalSetResizePolicy()
210 _uhash_allocate(UHashtable *hash, in _uhash_allocate()
333 _uhash_find(const UHashtable *hash, UHashTok key, in _uhash_find()
395 _uhash_rehash(UHashtable *hash, UErrorCode *status) { in _uhash_rehash()
438 _uhash_remove(UHashtable *hash, in _uhash_remove()
463 _uhash_put(UHashtable *hash, in _uhash_put()
590 uhash_close(UHashtable *hash) { in uhash_close()
[all …]
/external/kmod/shared/
Dhash.c39 struct hash { struct
44 struct hash_bucket buckets[]; argument
47 struct hash *hash_new(unsigned int n_buckets, in hash_new() argument
50 struct hash *hash; in hash_new() local
67 void hash_free(struct hash *hash) in hash_free()
95 unsigned int tmp, hash = len, rem = len & 3; in hash_superfast() local
146 int hash_add(struct hash *hash, const char *key, const void *value) in hash_add()
189 int hash_add_unique(struct hash *hash, const char *key, const void *value) in hash_add_unique()
234 void *hash_find(const struct hash *hash, const char *key) in hash_find()
252 int hash_del(struct hash *hash, const char *key) in hash_del()
[all …]
/external/freetype/src/base/
Dfthash.c107 FT_Hash hash ) in hash_bucket()
132 hash_rehash( FT_Hash hash, in hash_rehash()
166 hash_init( FT_Hash hash, in hash_init()
196 ft_hash_str_init( FT_Hash hash, in ft_hash_str_init()
204 ft_hash_num_init( FT_Hash hash, in ft_hash_num_init()
212 ft_hash_str_free( FT_Hash hash, in ft_hash_str_free()
236 FT_Hash hash, in hash_insert()
274 FT_Hash hash, in ft_hash_str_insert()
289 FT_Hash hash, in ft_hash_num_insert()
303 FT_Hash hash ) in hash_lookup()
[all …]
/external/mesa3d/src/gallium/auxiliary/cso_cache/
Dcso_hash.c86 static void *cso_data_allocate_node(struct cso_hash_data *hash) in cso_data_allocate_node()
97 cso_hash_create_node(struct cso_hash *hash, in cso_hash_create_node()
115 static void cso_data_rehash(struct cso_hash_data *hash, int hint) in cso_data_rehash()
164 static void cso_data_might_grow(struct cso_hash_data *hash) in cso_data_might_grow()
170 static void cso_data_has_shrunk(struct cso_hash_data *hash) in cso_data_has_shrunk()
179 static struct cso_node *cso_data_first_node(struct cso_hash_data *hash) in cso_data_first_node()
192 static struct cso_node **cso_hash_find_node(struct cso_hash *hash, unsigned akey) in cso_hash_find_node()
207 struct cso_hash_iter cso_hash_insert(struct cso_hash *hash, in cso_hash_insert()
229 struct cso_hash *hash = MALLOC_STRUCT(cso_hash); in cso_hash_create() local
250 void cso_hash_delete(struct cso_hash *hash) in cso_hash_delete()
[all …]
Dcso_cache.c51 unsigned hash = 0, i; in hash_key() local
85 struct cso_hash *hash; in _cso_hash_for_type() local
156 struct cso_hash *hash, in sanitize_hash()
165 static inline void sanitize_cb(struct cso_hash *hash, enum cso_cache_type type, in sanitize_cb()
190 struct cso_hash *hash = _cso_hash_for_type(sc, type); in cso_insert_state() local
200 struct cso_hash *hash = _cso_hash_for_type(sc, type); in cso_find_state() local
206 void *cso_hash_find_data_from_template( struct cso_hash *hash, in cso_hash_find_data_from_template()
242 struct cso_hash *hash = _cso_hash_for_type(sc, type); in cso_take_state() local
266 struct cso_hash *hash = _cso_hash_for_type(sc, type); in cso_for_each_state() local
/external/pdfium/xfa/fxfa/parser/
Dcxfa_node_statics.cpp319 uint32_t hash; member
632 uint32_t hash; member
887 uint32_t hash = FX_HashCode_GetW(name.AsStringView(), false); in NameToElement() local
890 [](const ElementNameInfo& a, uint32_t hash) { return a.hash < hash; }); in NameToElement()
898 uint32_t hash = FX_HashCode_GetW(name, false); in NameToAttribute() local
902 [](const AttributeNameInfo& a, uint32_t hash) { return a.hash < hash; }); in NameToAttribute()
/external/libdrm/amdgpu/
Dutil_hash.c96 static void *util_data_allocate_node(struct util_hash_data *hash) in util_data_allocate_node()
107 util_hash_create_node(struct util_hash *hash, in util_hash_create_node()
125 static void util_data_rehash(struct util_hash_data *hash, int hint) in util_data_rehash()
174 static void util_data_might_grow(struct util_hash_data *hash) in util_data_might_grow()
180 static void util_data_has_shrunk(struct util_hash_data *hash) in util_data_has_shrunk()
189 static struct util_node *util_data_first_node(struct util_hash_data *hash) in util_data_first_node()
202 static struct util_node **util_hash_find_node(struct util_hash *hash, unsigned akey) in util_hash_find_node()
218 util_hash_insert(struct util_hash *hash, unsigned key, void *data) in util_hash_insert()
239 struct util_hash *hash = malloc(sizeof(struct util_hash)); in util_hash_create() local
260 drm_private void util_hash_delete(struct util_hash *hash) in util_hash_delete()
[all …]
/external/virglrenderer/src/gallium/auxiliary/cso_cache/
Dcso_hash.c97 static void *cso_data_allocate_node(struct cso_hash_data *hash) in cso_data_allocate_node()
108 cso_hash_create_node(struct cso_hash *hash, in cso_hash_create_node()
126 static void cso_data_rehash(struct cso_hash_data *hash, int hint) in cso_data_rehash()
175 static void cso_data_might_grow(struct cso_hash_data *hash) in cso_data_might_grow()
181 static void cso_data_has_shrunk(struct cso_hash_data *hash) in cso_data_has_shrunk()
190 static struct cso_node *cso_data_first_node(struct cso_hash_data *hash) in cso_data_first_node()
203 static struct cso_node **cso_hash_find_node(struct cso_hash *hash, unsigned akey) in cso_hash_find_node()
218 struct cso_hash_iter cso_hash_insert(struct cso_hash *hash, in cso_hash_insert()
240 struct cso_hash *hash = MALLOC_STRUCT(cso_hash); in cso_hash_create() local
261 void cso_hash_delete(struct cso_hash *hash) in cso_hash_delete()
[all …]
Dcso_cache.c51 unsigned hash = 0, i; in hash_key() local
85 struct cso_hash *hash; in _cso_hash_for_type() local
156 struct cso_hash *hash, in sanitize_hash()
165 static inline void sanitize_cb(struct cso_hash *hash, enum cso_cache_type type, in sanitize_cb()
190 struct cso_hash *hash = _cso_hash_for_type(sc, type); in cso_insert_state() local
200 struct cso_hash *hash = _cso_hash_for_type(sc, type); in cso_find_state() local
206 void *cso_hash_find_data_from_template( struct cso_hash *hash, in cso_hash_find_data_from_template()
242 struct cso_hash *hash = _cso_hash_for_type(sc, type); in cso_take_state() local
266 struct cso_hash *hash = _cso_hash_for_type(sc, type); in cso_for_each_state() local
/external/libcxx/test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/
Dhash.pass.cpp23 template <> struct hash<X> struct
41 auto h = std::hash<P>(); in main()
/external/e2fsprogs/lib/e2p/
Dhashstr.c21 struct hash { struct
26 static struct hash hash_list[] = { argument
/external/deqp/framework/delibs/decpp/
DdeSha1.cpp31 deSha1 hash; in parse() local
41 deSha1 hash; in compute() local
59 deSha1 hash; in finalize() local
/external/mesa3d/src/compiler/nir/
Dnir_instr_set.c27 #define HASH(hash, data) _mesa_fnv32_1a_accumulate((hash), (data)) argument
30 hash_src(uint32_t hash, const nir_src *src) in hash_src()
38 hash_alu_src(uint32_t hash, const nir_alu_src *src, unsigned num_components) in hash_alu_src()
51 hash_alu(uint32_t hash, const nir_alu_instr *instr) in hash_alu()
82 hash_load_const(uint32_t hash, const nir_load_const_instr *instr) in hash_load_const()
101 hash_phi(uint32_t hash, const nir_phi_instr *instr) in hash_phi()
124 hash_intrinsic(uint32_t hash, const nir_intrinsic_instr *instr) in hash_intrinsic()
143 hash_tex(uint32_t hash, const nir_tex_instr *instr) in hash_tex()
179 uint32_t hash = _mesa_fnv32_1a_offset_bias; in hash_instr() local
/external/deqp/framework/delibs/debase/
DdeSha1.c155 void deSha1Stream_finalize (deSha1Stream* stream, deSha1* hash) in deSha1Stream_finalize()
184 void deSha1_compute (deSha1* hash, size_t size, const void* data) in deSha1_compute()
193 void deSha1_render (const deSha1* hash, char* buffer) in deSha1_render()
209 deBool deSha1_parse (deSha1* hash, const char* buffer) in deSha1_parse()
267 const char* const hash; in deSha1_selfTest() member
287 deSha1 hash; in deSha1_selfTest() local
299 deSha1 hash; in deSha1_selfTest() local
358 deSha1 hash; in deSha1_selfTest() local
/external/libchrome/base/containers/
Dhash_tables.h27 struct hash { struct
28 std::size_t operator()(const T& value) const { return std::hash<T>()(value); } in operator() argument
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
Dp6.cpp17 template<typename T> struct hash { }; struct
32 template<> struct hash<S> { struct
33 int operator()(const S& k) const { in operator ()()
/external/google-fruit/include/fruit/impl/data_structures/
Dsemistatic_map.defn.h29 inline typename SemistaticMap<Key, Value>::Unsigned SemistaticMap<Key, Value>::HashFunction::hash(U… in hash() function
34 inline typename SemistaticMap<Key, Value>::Unsigned SemistaticMap<Key, Value>::hash(const Key& key)… in hash() function
/external/toybox/toys/lsb/
Dmd5sum.c252 struct hash { in do_lib_hash() struct
253 char *name; in do_lib_hash()
254 int (*init)(void *); in do_lib_hash()
255 int (*update)(void *, void *, size_t); in do_lib_hash()
256 int (*final)(void *, void *); in do_lib_hash()
257 int digest_length; in do_lib_hash()
267 }, * hash; in do_lib_hash() local
/external/skqp/tests/
DDynamicHashTest.cpp48 Hash hash; in DEF_TEST() local
76 Hash hash; in DEF_TEST() local
102 Hash hash; in DEF_TEST() local
114 Hash hash; in DEF_TEST() local
149 Hash hash; in DEF_TEST() local
175 Hash hash; in TestIter() local
228 Hash hash; in TestResetOrRewind() local
/external/skia/tests/
DDynamicHashTest.cpp48 Hash hash; in DEF_TEST() local
76 Hash hash; in DEF_TEST() local
102 Hash hash; in DEF_TEST() local
114 Hash hash; in DEF_TEST() local
149 Hash hash; in DEF_TEST() local
175 Hash hash; in TestIter() local
228 Hash hash; in TestResetOrRewind() local
/external/grpc-grpc-java/context/src/main/java/io/grpc/
DPersistentHashArrayMappedTrie.java88 public V get(K key, int hash, int bitsConsumed) { in get()
97 public Node<K,V> put(K key, V value, int hash, int bitsConsumed) { in put()
145 public V get(K key, int hash, int bitsConsumed) { in get()
155 public Node<K,V> put(K key, V value, int hash, int bitsConsumed) { in put()
222 public V get(K key, int hash, int bitsConsumed) { in get()
232 public Node<K,V> put(K key, V value, int hash, int bitsConsumed) { in put()
299 private static int uncompressedIndex(int hash, int bitsConsumed) { in uncompressedIndex()
303 private static int indexBit(int hash, int bitsConsumed) { in indexBit()
310 V get(K key, int hash, int bitsConsumed); in get()
312 Node<K,V> put(K key, V value, int hash, int bitsConsumed); in put()
/external/skia/src/opts/
DSkChecksum_opts.h35 uint64_t hash = seed; in hash_fn() local
87 /*not static*/ inline uint32_t hash_fn(const void* vdata, size_t bytes, uint32_t hash) { in hash_fn()
131 /*not static*/ inline uint32_t hash_fn(const void* vdata, size_t bytes, uint32_t hash) { in hash_fn()
176 /*not static*/ inline uint32_t hash_fn(const void* vdata, size_t bytes, uint32_t hash) { in hash_fn()
/external/skqp/src/opts/
DSkChecksum_opts.h35 uint64_t hash = seed; in hash_fn() local
87 /*not static*/ inline uint32_t hash_fn(const void* vdata, size_t bytes, uint32_t hash) { in hash_fn()
131 /*not static*/ inline uint32_t hash_fn(const void* vdata, size_t bytes, uint32_t hash) { in hash_fn()
176 /*not static*/ inline uint32_t hash_fn(const void* vdata, size_t bytes, uint32_t hash) { in hash_fn()
/external/icu/icu4c/source/test/cintltst/
Dchashtst.c106 UHashtable *hash; in TestBasic() local
156 UHashtable *hash; in TestOtherAPI() local
290 UHashtable *hash; in hashIChars() local
338 static void _put(UHashtable* hash, in _put()
357 static void _get(UHashtable* hash, in _get()
374 static void _remove(UHashtable* hash, in _remove()
/external/libdrm/tests/
Dmeson.build59 hash = executable( variable
84 test('hash', hash) test

12345678910>>...37