Searched refs:_PyDict_GetItem_KnownHash (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Include/cpython/ |
H A D | dictobject.h | 31 PyAPI_FUNC(PyObject *) _PyDict_GetItem_KnownHash(PyObject *mp, PyObject *key,
|
/third_party/python/Modules/ |
H A D | _functoolsmodule.c | 905 result = _PyDict_GetItem_KnownHash(self->cache, key, hash); in infinite_lru_cache_wrapper() 1006 link = (lru_list_elem *)_PyDict_GetItem_KnownHash(self->cache, key, hash); in bounded_lru_cache_wrapper() 1026 testresult = _PyDict_GetItem_KnownHash(self->cache, key, hash); in bounded_lru_cache_wrapper()
|
H A D | _asynciomodule.c | 1947 item = _PyDict_GetItem_KnownHash(current_tasks, loop, hash); in enter_task() 1975 item = _PyDict_GetItem_KnownHash(current_tasks, loop, hash); in leave_task()
|
H A D | _collectionsmodule.c | 2339 oldval = _PyDict_GetItem_KnownHash(mapping, key, hash); in _collections__count_elements_impl()
|
H A D | _testcapimodule.c | 336 result = _PyDict_GetItem_KnownHash(mp, key, (Py_hash_t)hash); in dict_getitem_knownhash()
|
/third_party/python/Objects/ |
H A D | dictobject.c | 1749 _PyDict_GetItem_KnownHash(PyObject *op, PyObject *key, Py_hash_t hash) in _PyDict_GetItem_KnownHash() function 1802 return _PyDict_GetItem_KnownHash(dp, kv, hash); in _PyDict_GetItemWithError() 1814 return _PyDict_GetItem_KnownHash(dp, kv, hash); in _PyDict_GetItemIdWithError() 4923 val1 = _PyDict_GetItem_KnownHash(temp_dict, key, hash); in dictitems_xor()
|
H A D | typeobject.c | 3796 res = _PyDict_GetItem_KnownHash(dict, name, hash); in find_name_in_mro()
|
Completed in 42 milliseconds