Searched refs:_PyDict_SetItem_KnownHash (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Include/cpython/ |
H A D | dictobject.h | 39 PyAPI_FUNC(int) _PyDict_SetItem_KnownHash(PyObject *mp, PyObject *key,
|
/third_party/python/Modules/ |
H A D | _functoolsmodule.c | 922 if (_PyDict_SetItem_KnownHash(self->cache, key, result, hash) < 0) { in infinite_lru_cache_wrapper() 1068 if (_PyDict_SetItem_KnownHash(self->cache, key, (PyObject *)link, in bounded_lru_cache_wrapper() 1137 if (_PyDict_SetItem_KnownHash(self->cache, key, (PyObject *)link, in bounded_lru_cache_wrapper()
|
H A D | _collectionsmodule.c | 2343 if (_PyDict_SetItem_KnownHash(mapping, key, one, hash) < 0) in _collections__count_elements_impl() 2349 if (_PyDict_SetItem_KnownHash(mapping, key, newval, hash) < 0) in _collections__count_elements_impl()
|
H A D | _asynciomodule.c | 1961 return _PyDict_SetItem_KnownHash(current_tasks, loop, task, hash); in enter_task()
|
/third_party/python/Objects/ |
H A D | odictobject.c | 1600 int res = _PyDict_SetItem_KnownHash(od, key, value, hash); in _PyODict_SetItem_KnownHash()
|
H A D | dictobject.c | 1910 _PyDict_SetItem_KnownHash(PyObject *op, PyObject *key, PyObject *value, in _PyDict_SetItem_KnownHash() function
|
/third_party/python/Modules/_sre/ |
H A D | sre.c | 2223 status = _PyDict_SetItem_KnownHash(result, key, value, hash); in _sre_SRE_Match_groupdict_impl()
|
Completed in 30 milliseconds