Searched refs:_PyDict_GetItem_KnownHash (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Include/cpython/ |
D | dictobject.h | 30 PyAPI_FUNC(PyObject *) _PyDict_GetItem_KnownHash(PyObject *mp, PyObject *key,
|
/third_party/python/Modules/ |
D | _functoolsmodule.c | 904 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.c | 1959 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.c | 2365 oldval = _PyDict_GetItem_KnownHash(mapping, key, hash); in _collections__count_elements_impl()
|
D | _testcapimodule.c | 326 result = _PyDict_GetItem_KnownHash(mp, key, (Py_hash_t)hash); in dict_getitem_knownhash()
|
/third_party/python/Objects/ |
D | dictobject.c | 1483 _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()
|
D | odictobject.c | 1097 value = _PyDict_GetItem_KnownHash(od, key, hash); /* borrowed */ in _odict_popkey_hash()
|
D | typeobject.c | 3783 res = _PyDict_GetItem_KnownHash(dict, name, hash); in find_name_in_mro()
|