Searched refs:_PyDict_GetItem_KnownHash (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Include/cpython/ |
D | dictobject.h | 34 PyAPI_FUNC(PyObject *) _PyDict_GetItem_KnownHash(PyObject *mp, PyObject *key,
|
/external/python/cpython3/Modules/ |
D | _functoolsmodule.c | 884 result = _PyDict_GetItem_KnownHash(self->cache, key, hash); in infinite_lru_cache_wrapper() 985 link = (lru_list_elem *)_PyDict_GetItem_KnownHash(self->cache, key, hash); in bounded_lru_cache_wrapper() 1005 testresult = _PyDict_GetItem_KnownHash(self->cache, key, hash); in bounded_lru_cache_wrapper()
|
D | _asynciomodule.c | 2001 item = _PyDict_GetItem_KnownHash(current_tasks, loop, hash); in enter_task() 2029 item = _PyDict_GetItem_KnownHash(current_tasks, loop, hash); in leave_task()
|
D | _collectionsmodule.c | 2341 oldval = _PyDict_GetItem_KnownHash(mapping, key, hash); in _collections__count_elements_impl()
|
D | _testcapimodule.c | 265 result = _PyDict_GetItem_KnownHash(mp, key, (Py_hash_t)hash); in dict_getitem_knownhash()
|
/external/python/cpython3/Objects/ |
D | dictobject.c | 1433 _PyDict_GetItem_KnownHash(PyObject *op, PyObject *key, Py_hash_t hash) in _PyDict_GetItem_KnownHash() function 1491 return _PyDict_GetItem_KnownHash(dp, kv, hash); in _PyDict_GetItemIdWithError() 2551 else if (_PyDict_GetItem_KnownHash(a, key, hash) == NULL) { in dict_merge()
|
D | odictobject.c | 1099 value = _PyDict_GetItem_KnownHash(od, key, hash); /* borrowed */ in _odict_popkey_hash()
|
D | typeobject.c | 3203 res = _PyDict_GetItem_KnownHash(dict, name, hash); in find_name_in_mro()
|