Searched refs:_PySet_NextEntry (Results 1 – 10 of 10) sorted by relevance
/third_party/python/Include/ |
D | setobject.h | 71 PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, Py_hash_t *hash);
|
/third_party/python/Modules/ |
D | _abc.c | 847 while (_PySet_NextEntry(impl->_abc_registry, &pos, &key, &hash)) { in subclasscheck_check_registry()
|
D | _pickle.c | 3412 while (_PySet_NextEntry(obj, &ppos, &item, &hash)) { in save_set()
|
/third_party/python/Objects/ |
D | setobject.c | 2302 _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, Py_hash_t *hash) in _PySet_NextEntry() function 2423 while (_PySet_NextEntry((PyObject *)dup, &i, &x, &hash)) { in test_c_api()
|
D | codeobject.c | 878 while (_PySet_NextEntry(op, &pos, &item, &hash)) { in _PyCode_ConstantKey()
|
D | dictobject.c | 2010 while (_PySet_NextEntry(iterable, &pos, &key, &hash)) { in _PyDict_FromKeys()
|
/third_party/python/Python/ |
D | ast_opt.c | 125 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 | pylifecycle.c | 2620 while (_PySet_NextEntry(stdlib_module_names, &i, &item, &hash)) { in _Py_DumpExtensionModules()
|
D | compile.c | 1371 while (_PySet_NextEntry(o, &pos, &item, &hash)) { in merge_consts_recursive()
|