Home
last modified time | relevance | path

Searched refs:temp_free (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
Dsymtable.c739 PyObject *temp_bound = NULL, *temp_global = NULL, *temp_free = NULL; in analyze_child_block() local
753 temp_free = PyDict_New(); in analyze_child_block()
754 if (!temp_free) in analyze_child_block()
756 if (PyDict_Update(temp_free, free) < 0) in analyze_child_block()
764 if (!analyze_block(entry, temp_bound, temp_free, temp_global)) in analyze_child_block()
766 if (PyDict_Update(child_free, temp_free) < 0) in analyze_child_block()
769 Py_DECREF(temp_free); in analyze_child_block()
774 Py_XDECREF(temp_free); in analyze_child_block()
/external/python/cpython3/Python/
Dsymtable.c900 PyObject *temp_bound = NULL, *temp_global = NULL, *temp_free = NULL; in analyze_child_block() local
913 temp_free = PySet_New(free); in analyze_child_block()
914 if (!temp_free) in analyze_child_block()
920 if (!analyze_block(entry, temp_bound, temp_free, temp_global)) in analyze_child_block()
922 temp = PyNumber_InPlaceOr(child_free, temp_free); in analyze_child_block()
927 Py_DECREF(temp_free); in analyze_child_block()
932 Py_XDECREF(temp_free); in analyze_child_block()