Home
last modified time | relevance | path

Searched refs:_PyDict_DelItem_KnownHash (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Include/cpython/
Ddictobject.h43 PyAPI_FUNC(int) _PyDict_DelItem_KnownHash(PyObject *mp, PyObject *key,
/external/python/cpython3/Objects/
Dodictobject.c1102 if (_PyDict_DelItem_KnownHash(od, key, hash) < 0) { in _odict_popkey_hash()
1661 (void) _PyDict_DelItem_KnownHash(od, key, hash); in _PyODict_SetItem_KnownHash()
1687 return _PyDict_DelItem_KnownHash(od, key, hash); in PyODict_DelItem()
Ddictobject.c1635 return _PyDict_DelItem_KnownHash(op, key, hash); in PyDict_DelItem()
1639 _PyDict_DelItem_KnownHash(PyObject *op, PyObject *key, Py_hash_t hash) in _PyDict_DelItem_KnownHash() function
/external/python/cpython3/Modules/
D_asynciomodule.c2041 return _PyDict_DelItem_KnownHash(current_tasks, loop, hash); in leave_task()