Searched refs:_PyDict_DelItem_KnownHash (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Include/cpython/ |
D | dictobject.h | 43 PyAPI_FUNC(int) _PyDict_DelItem_KnownHash(PyObject *mp, PyObject *key,
|
/external/python/cpython3/Objects/ |
D | odictobject.c | 1102 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()
|
D | dictobject.c | 1635 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.c | 2041 return _PyDict_DelItem_KnownHash(current_tasks, loop, hash); in leave_task()
|