Home
last modified time | relevance | path

Searched refs:_PySet_NextEntry (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Include/
Dsetobject.h71 PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, Py_hash_t *hash);
/external/python/cpython2/Include/
Dsetobject.h92 PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, long *hash);
/external/python/cpython3/Modules/
D_abc.c781 while (_PySet_NextEntry(impl->_abc_registry, &pos, &key, &hash)) { in subclasscheck_check_registry()
D_pickle.c3416 while (_PySet_NextEntry(obj, &ppos, &item, &hash)) { in save_set()
/external/python/cpython2/Objects/
Dcodeobject.c511 while (_PySet_NextEntry(op, &pos, &item, &hash)) { in _PyCode_ConstantKey()
Dsetobject.c2351 _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, long *hash) in _PySet_NextEntry() function
Ddictobject.c1466 while (_PySet_NextEntry(seq, &pos, &key, &hash)) { in dict_fromkeys()
/external/python/cpython3/Objects/
Dcodeobject.c793 while (_PySet_NextEntry(op, &pos, &item, &hash)) { in _PyCode_ConstantKey()
Dsetobject.c2309 _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, Py_hash_t *hash) in _PySet_NextEntry() function
2430 while (_PySet_NextEntry((PyObject *)dup, &i, &x, &hash)) { in test_c_api()
Ddictobject.c1960 while (_PySet_NextEntry(iterable, &pos, &key, &hash)) { in _PyDict_FromKeys()
/external/python/cpython3/Python/
Dast_opt.c113 while (limit >= 0 && _PySet_NextEntry(obj, &i, &item, &hash)) { in check_complexity()
Dmarshal.c505 while (_PySet_NextEntry(v, &pos, &value, &hash)) { in w_complex_object()
Dcompile.c1265 while (_PySet_NextEntry(o, &pos, &item, &hash)) { in merge_consts_recursive()