HomeSort by relevance Sort by last modified time
    Searched refs:key_hash (Results 1 - 12 of 12) sorted by null

  /external/libnl/lib/
hashtable.c 90 uint32_t key_hash; local
92 nl_object_keygen(obj, &key_hash, ht->size);
93 node = ht->nodes[key_hash];
120 uint32_t key_hash; local
122 nl_object_keygen(obj, &key_hash, ht->size);
123 node = ht->nodes[key_hash];
134 obj, ht, key_hash);
141 node->key = key_hash;
143 node->next = ht->nodes[key_hash];
144 ht->nodes[key_hash] = node
164 uint32_t key_hash; local
    [all...]
  /external/libdrm/amdgpu/
util_hash_table.c 99 void *key, unsigned key_hash)
104 iter = util_hash_find(ht->head, key_hash);
117 void *key, unsigned key_hash)
122 iter = util_hash_find(ht->head, key_hash);
136 unsigned key_hash; local
144 key_hash = ht->make_hash(key);
146 item = util_hash_table_find_item(ht, key, key_hash);
160 iter = util_hash_insert(ht->head, key_hash, item);
169 unsigned key_hash; local
176 key_hash = ht->make_hash(key)
187 unsigned key_hash; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_hash_table.c 104 unsigned key_hash)
109 iter = cso_hash_find(ht->cso, key_hash);
124 unsigned key_hash)
129 iter = cso_hash_find(ht->cso, key_hash);
146 unsigned key_hash; local
154 key_hash = ht->hash(key);
156 item = util_hash_table_find_item(ht, key, key_hash);
170 iter = cso_hash_insert(ht->cso, key_hash, item);
184 unsigned key_hash; local
191 key_hash = ht->hash(key)
205 unsigned key_hash; local
    [all...]
u_keymap.c 148 unsigned key_hash)
153 iter = cso_hash_find(map->cso, key_hash);
167 unsigned key_hash)
169 struct cso_hash_iter iter = hash_table_find_iter(map, key, key_hash);
191 unsigned key_hash; local
199 key_hash = hash(key, map->key_size);
201 item = hash_table_find_item(map, key, key_hash);
216 iter = cso_hash_insert(map->cso, key_hash, item);
234 unsigned key_hash; local
241 key_hash = hash(key, map->key_size)
259 unsigned key_hash; local
    [all...]
  /external/python/cpython3/Modules/
hashtable.c 256 Py_uhash_t key_hash; local
262 key_hash = ht->hash_func(ht, pkey);
263 index = key_hash & (ht->num_buckets - 1);
266 if (entry->key_hash == key_hash && ht->compare_func(ht, pkey, entry))
278 Py_uhash_t key_hash; local
284 key_hash = ht->hash_func(ht, pkey);
285 index = key_hash & (ht->num_buckets - 1);
289 if (entry->key_hash == key_hash && ht->compare_func(ht, pkey, entry)
315 Py_uhash_t key_hash; local
    [all...]
hashtable.h 27 Py_uhash_t key_hash; member in struct:__anon33452
  /external/mesa3d/src/util/tests/hash_table/
clear.c 36 static uint32_t key_hash(const void *key) function
61 ht = _mesa_hash_table_create(NULL, key_hash, key_equal);
  /external/wpa_supplicant_8/src/tls/
tlsv1_client_ocsp.c 51 struct x509_name *name, const u8 *key_hash)
53 if (key_hash) {
60 return os_memcmp(hash, key_hash, SHA1_MAC_LEN) == 0;
119 const u8 *name_hash, *key_hash; local
200 key_hash = hdr.payload;
202 wpa_hexdump(MSG_DEBUG, "OCSP: issuerKeyHash", key_hash, key_hash_len);
208 os_memcmp(key_hash, hash, hash_len) != 0) {
359 const u8 *resp_data, *sign_value, *key_hash = NULL, *responses; local
366 struct x509_name name; /* used if key_hash == NULL */
549 key_hash = hdr.payload
    [all...]
  /external/tensorflow/tensorflow/core/framework/
rendezvous.cc 155 uint64 key_hash = KeyHash(key.FullKey()); variable
156 VLOG(2) << "Send " << this << " " << key_hash << " " << key.FullKey();
166 ItemQueue* queue = &table_[key_hash];
198 uint64 key_hash = KeyHash(key.FullKey()); variable
199 VLOG(2) << "Recv " << this << " " << key_hash << " " << key.FullKey();
210 ItemQueue* queue = &table_[key_hash];
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
hash.h 65 uint32_t key_hash,
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_batch_cache.c 97 key_hash(const void *_key) function
118 cache->ht = _mesa_hash_table_create(NULL, key_hash, key_equals);
316 uint32_t hash = key_hash(key);
  /external/tensorflow/tensorflow/core/kernels/
lookup_table_op.cc 369 const uint64 key_hash = HashKey(key_matrix, i); local
370 if (empty_key_hash_ == key_hash &&
375 int64 bucket_index = key_hash & bit_mask;
519 const uint64 key_hash = HashKey(key_matrix, i); local
520 if (empty_key_hash_ == key_hash &&
528 int64 bucket_index = key_hash & bit_mask;
    [all...]

Completed in 487 milliseconds