Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Ddictobject.h30 PyAPI_FUNC(PyObject *) _PyDict_GetItem_KnownHash(PyObject *mp, PyObject *key,
/third_party/python/Modules/
D_functoolsmodule.c904 result = _PyDict_GetItem_KnownHash(self->cache, key, hash); in infinite_lru_cache_wrapper()
1005 link = (lru_list_elem *)_PyDict_GetItem_KnownHash(self->cache, key, hash); in bounded_lru_cache_wrapper()
1025 testresult = _PyDict_GetItem_KnownHash(self->cache, key, hash); in bounded_lru_cache_wrapper()
D_asynciomodule.c1959 item = _PyDict_GetItem_KnownHash(current_tasks, loop, hash); in enter_task()
1987 item = _PyDict_GetItem_KnownHash(current_tasks, loop, hash); in leave_task()
D_collectionsmodule.c2365 oldval = _PyDict_GetItem_KnownHash(mapping, key, hash); in _collections__count_elements_impl()
D_testcapimodule.c326 result = _PyDict_GetItem_KnownHash(mp, key, (Py_hash_t)hash); in dict_getitem_knownhash()
/third_party/python/Objects/
Ddictobject.c1483 _PyDict_GetItem_KnownHash(PyObject *op, PyObject *key, Py_hash_t hash) in _PyDict_GetItem_KnownHash() function
1541 return _PyDict_GetItem_KnownHash(dp, kv, hash); in _PyDict_GetItemIdWithError()
4565 val1 = _PyDict_GetItem_KnownHash(temp_dict, key, hash); in dictitems_xor()
Dodictobject.c1097 value = _PyDict_GetItem_KnownHash(od, key, hash); /* borrowed */ in _odict_popkey_hash()
Dtypeobject.c3783 res = _PyDict_GetItem_KnownHash(dict, name, hash); in find_name_in_mro()