Searched refs:_PyDict_SetItem_KnownHash (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Include/cpython/ |
D | dictobject.h | 41 PyAPI_FUNC(int) _PyDict_SetItem_KnownHash(PyObject *mp, PyObject *key,
|
/external/python/cpython3/Modules/ |
D | _functoolsmodule.c | 901 if (_PyDict_SetItem_KnownHash(self->cache, key, result, hash) < 0) { in infinite_lru_cache_wrapper() 1047 if (_PyDict_SetItem_KnownHash(self->cache, key, (PyObject *)link, in bounded_lru_cache_wrapper() 1116 if (_PyDict_SetItem_KnownHash(self->cache, key, (PyObject *)link, in bounded_lru_cache_wrapper()
|
D | _collectionsmodule.c | 2345 if (_PyDict_SetItem_KnownHash(mapping, key, _PyLong_One, hash) < 0) in _collections__count_elements_impl() 2351 if (_PyDict_SetItem_KnownHash(mapping, key, newval, hash) < 0) in _collections__count_elements_impl()
|
D | _sre.c | 2093 status = _PyDict_SetItem_KnownHash(result, key, value, hash); in _sre_SRE_Match_groupdict_impl()
|
D | _asynciomodule.c | 2015 return _PyDict_SetItem_KnownHash(current_tasks, loop, task, hash); in enter_task()
|
/external/python/cpython3/Objects/ |
D | odictobject.c | 1654 int res = _PyDict_SetItem_KnownHash(od, key, value, hash); in _PyODict_SetItem_KnownHash()
|
D | dictobject.c | 1577 _PyDict_SetItem_KnownHash(PyObject *op, PyObject *key, PyObject *value, in _PyDict_SetItem_KnownHash() function
|