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

  /external/mesa3d/src/gallium/auxiliary/translate/
translate_cache.c 82 unsigned hash_key; local
86 hash_key = cso_construct_key(key, size);
87 return hash_key;
93 unsigned hash_key = create_key(key); local
96 hash_key,
102 cso_hash_insert(cache->hash, hash_key, translate);
  /system/bt/osi/test/
hash_map_test.cpp 31 hash_index_t hash_key = (hash_index_t)key; local
32 return hash_key;
  /external/mesa3d/src/mesa/program/
prog_cache.c 58 hash_key(const void *key, GLuint key_size) function
182 const GLuint hash = hash_key(key, keysize);
203 const GLuint hash = hash_key(key, keysize);
231 const GLuint hash = hash_key(key, keysize);
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_cache.c 48 static unsigned hash_key(const void *key, unsigned key_size) function
63 static unsigned hash_key(const unsigned char *p, int n) function
80 return hash_key((item), item_size);
187 unsigned hash_key, enum cso_cache_type type,
193 return cso_hash_insert(hash, hash_key, state);
198 unsigned hash_key, enum cso_cache_type type)
202 return cso_hash_find(hash, hash_key);
207 unsigned hash_key,
211 struct cso_hash_iter iter = cso_hash_find(hash, hash_key);
226 unsigned hash_key, enum cso_cache_type type
    [all...]
cso_context.c 372 unsigned key_size, hash_key; local
379 hash_key = cso_construct_key((void*)templ, key_size);
380 iter = cso_find_state_template(ctx->cache, hash_key, CSO_BLEND,
394 iter = cso_insert_state(ctx->cache, hash_key, CSO_BLEND, cso);
435 unsigned hash_key = cso_construct_key((void*)templ, key_size); local
437 hash_key,
455 iter = cso_insert_state(ctx->cache, hash_key,
498 unsigned hash_key = cso_construct_key((void*)templ, key_size); local
500 hash_key,
516 iter = cso_insert_state(ctx->cache, hash_key, CSO_RASTERIZER, cso)
821 unsigned key_size, hash_key; local
978 unsigned hash_key = cso_construct_key((void*)templ, key_size); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_cache.c 54 hash_key(struct brw_cache_item *item) function
146 hash = hash_key(&lookup);
282 hash = hash_key(item);
  /system/bt/osi/src/
hash_map.c 117 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket; local
118 list_t *hash_bucket_list = hash_map->bucket[hash_key].list;
128 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket; local
130 if (hash_map->bucket[hash_key].list == NULL) {
131 hash_map->bucket[hash_key].list = list_new_internal(bucket_free_, hash_map->allocator);
132 if (hash_map->bucket[hash_key].list == NULL)
135 list_t *hash_bucket_list = hash_map->bucket[hash_key].list;
160 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket; local
161 list_t *hash_bucket_list = hash_map->bucket[hash_key].list;
176 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket local
    [all...]
  /external/mesa3d/src/glsl/
glsl_types.cpp 516 char hash_key[128]; local
519 size = snprintf(hash_key, sizeof(hash_key), "%08x", key->length);
522 if (size >= sizeof(hash_key))
525 size += snprintf(& hash_key[size], sizeof(hash_key) - size,
529 return hash_table_string_hash(& hash_key);
  /external/vboot_reference/tests/
vb21_api_tests.c 66 const struct vb2_private_key *hash_key; local
92 vb2_private_key_hash(&hash_key, mock_hash_alg);
106 hash_key, NULL);
  /external/libvncserver/libvncserver/
tight.c 1361 int hash_key, idx, new_idx, count; local
    [all...]
  /external/libvncserver/x11vnc/misc/turbovnc/
tight.c 1197 int hash_key, idx, new_idx, count; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_vbuf.c 200 unsigned key_size, hash_key; local
210 hash_key = cso_construct_key((void*)&velems_state, key_size);
211 iter = cso_find_state_template(mgr->cso_cache, hash_key, CSO_VELEMENTS,
221 iter = cso_insert_state(mgr->cso_cache, hash_key, CSO_VELEMENTS, cso);
    [all...]

Completed in 1126 milliseconds