Home
last modified time | relevance | path

Searched refs:_PyDict_GetItem_KnownHash (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Include/cpython/
Ddictobject.h34 PyAPI_FUNC(PyObject *) _PyDict_GetItem_KnownHash(PyObject *mp, PyObject *key,
/external/python/cpython3/Modules/
D_functoolsmodule.c884 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.c2001 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.c2341 oldval = _PyDict_GetItem_KnownHash(mapping, key, hash); in _collections__count_elements_impl()
D_testcapimodule.c265 result = _PyDict_GetItem_KnownHash(mp, key, (Py_hash_t)hash); in dict_getitem_knownhash()
/external/python/cpython3/Objects/
Ddictobject.c1433 _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()
Dodictobject.c1099 value = _PyDict_GetItem_KnownHash(od, key, hash); /* borrowed */ in _odict_popkey_hash()
Dtypeobject.c3203 res = _PyDict_GetItem_KnownHash(dict, name, hash); in find_name_in_mro()