Searched refs:_PyDict_DelItem_KnownHash (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Include/cpython/ |
D | dictobject.h | 39 PyAPI_FUNC(int) _PyDict_DelItem_KnownHash(PyObject *mp, PyObject *key,
|
/third_party/python/Objects/ |
D | odictobject.c | 1100 if (_PyDict_DelItem_KnownHash(od, key, hash) < 0) { in _odict_popkey_hash() 1659 (void) _PyDict_DelItem_KnownHash(od, key, hash); in _PyODict_SetItem_KnownHash() 1685 return _PyDict_DelItem_KnownHash(od, key, hash); in PyODict_DelItem()
|
D | dictobject.c | 1685 return _PyDict_DelItem_KnownHash(op, key, hash); in PyDict_DelItem() 1689 _PyDict_DelItem_KnownHash(PyObject *op, PyObject *key, Py_hash_t hash) in _PyDict_DelItem_KnownHash() function 4583 if (_PyDict_DelItem_KnownHash(temp_dict, key, hash) < 0) { in dictitems_xor()
|
/third_party/python/Modules/ |
D | _asynciomodule.c | 1999 return _PyDict_DelItem_KnownHash(current_tasks, loop, hash); in leave_task()
|