Home
last modified time | relevance | path

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

/third_party/python/Include/
Dsetobject.h71 PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, Py_hash_t *hash);
/third_party/python/Modules/
D_abc.c847 while (_PySet_NextEntry(impl->_abc_registry, &pos, &key, &hash)) { in subclasscheck_check_registry()
D_pickle.c3412 while (_PySet_NextEntry(obj, &ppos, &item, &hash)) { in save_set()
/third_party/python/Objects/
Dsetobject.c2302 _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()
Dcodeobject.c878 while (_PySet_NextEntry(op, &pos, &item, &hash)) { in _PyCode_ConstantKey()
Ddictobject.c2010 while (_PySet_NextEntry(iterable, &pos, &key, &hash)) { in _PyDict_FromKeys()
/third_party/python/Python/
Dast_opt.c125 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()
Dpylifecycle.c2620 while (_PySet_NextEntry(stdlib_module_names, &i, &item, &hash)) { in _Py_DumpExtensionModules()
Dcompile.c1371 while (_PySet_NextEntry(o, &pos, &item, &hash)) { in merge_consts_recursive()