Searched refs:akey (Results 1 – 5 of 5) sorted by relevance
/external/libdrm/amdgpu/ |
D | util_hash.c | 112 unsigned akey, void *avalue, in util_hash_create_node() argument 120 node->key = akey; in util_hash_create_node() 206 static struct util_node **util_hash_find_node(struct util_hash *hash, unsigned akey) in util_hash_find_node() argument 211 node = (struct util_node **)(&hash->data.d->buckets[akey % hash->data.d->numBuckets]); in util_hash_find_node() 213 while (*node != hash->data.e && (*node)->key != akey) in util_hash_find_node() 348 drm_private void *util_hash_take(struct util_hash *hash, unsigned akey) in util_hash_take() argument 350 struct util_node **node = util_hash_find_node(hash, akey); in util_hash_take()
|
/external/mesa3d/src/gallium/auxiliary/cso_cache/ |
D | cso_hash.c | 111 unsigned akey, void *avalue, in cso_hash_create_node() argument 119 node->key = akey; in cso_hash_create_node() 205 static struct cso_node **cso_hash_find_node(struct cso_hash *hash, unsigned akey) in cso_hash_find_node() argument 210 node = (struct cso_node **)(&hash->data.d->buckets[akey % hash->data.d->numBuckets]); in cso_hash_find_node() 212 while (*node != hash->data.e && (*node)->key != akey) in cso_hash_find_node() 385 unsigned akey) in cso_hash_take() argument 387 struct cso_node **node = cso_hash_find_node(hash, akey); in cso_hash_take()
|
/external/python/cpython2/Objects/ |
D | dictobject.c | 1751 PyObject *akey = NULL; /* smallest key in a s.t. a[akey] != b[akey] */ in characterize() local 1762 if (akey != NULL) { in characterize() 1763 cmp = PyObject_RichCompareBool(akey, thiskey, Py_LT); in characterize() 1802 Py_XDECREF(akey); in characterize() 1804 akey = thiskey; in characterize() 1813 return akey; in characterize() 1816 Py_XDECREF(akey); in characterize()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | AMutableDictionary.m | 103 //ACBKey *akey = [ACBKey newKey:aKey];
|
/external/icu/icu4c/source/i18n/ |
D | dtptngen.cpp | 96 const char *akey = ures_getKey(aiter->entries[i].item); in ures_a_open() local 97 int32_t len = uprv_strlen(akey)+1; in ures_a_open() 99 u_charsToUChars(akey, aiter->entries[i].key, len); in ures_a_open()
|