Searched refs:_PySet_NextEntry (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython3/Include/ |
D | setobject.h | 71 PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, Py_hash_t *hash);
|
/external/python/cpython2/Include/ |
D | setobject.h | 92 PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, long *hash);
|
/external/python/cpython3/Modules/ |
D | _abc.c | 781 while (_PySet_NextEntry(impl->_abc_registry, &pos, &key, &hash)) { in subclasscheck_check_registry()
|
D | _pickle.c | 3416 while (_PySet_NextEntry(obj, &ppos, &item, &hash)) { in save_set()
|
/external/python/cpython2/Objects/ |
D | codeobject.c | 511 while (_PySet_NextEntry(op, &pos, &item, &hash)) { in _PyCode_ConstantKey()
|
D | setobject.c | 2351 _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, long *hash) in _PySet_NextEntry() function
|
D | dictobject.c | 1466 while (_PySet_NextEntry(seq, &pos, &key, &hash)) { in dict_fromkeys()
|
/external/python/cpython3/Objects/ |
D | codeobject.c | 793 while (_PySet_NextEntry(op, &pos, &item, &hash)) { in _PyCode_ConstantKey()
|
D | setobject.c | 2309 _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()
|
D | dictobject.c | 1960 while (_PySet_NextEntry(iterable, &pos, &key, &hash)) { in _PyDict_FromKeys()
|
/external/python/cpython3/Python/ |
D | ast_opt.c | 113 while (limit >= 0 && _PySet_NextEntry(obj, &i, &item, &hash)) { in check_complexity()
|
D | marshal.c | 505 while (_PySet_NextEntry(v, &pos, &value, &hash)) { in w_complex_object()
|
D | compile.c | 1265 while (_PySet_NextEntry(o, &pos, &item, &hash)) { in merge_consts_recursive()
|