Home
last modified time | relevance | path

Searched refs:starting_recursion_depth (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/python/cpython3/Python/
Dast.c997 int starting_recursion_depth; in _PyAST_Validate() local
1006 starting_recursion_depth = (recursion_depth< INT_MAX / COMPILER_STACK_FRAME_SCALE) ? in _PyAST_Validate()
1008 state.recursion_depth = starting_recursion_depth; in _PyAST_Validate()
1035 if (res && state.recursion_depth != starting_recursion_depth) { in _PyAST_Validate()
1038 starting_recursion_depth, state.recursion_depth); in _PyAST_Validate()
Dast_opt.c1083 int starting_recursion_depth; in _PyAST_Optimize() local
1092 starting_recursion_depth = (recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ? in _PyAST_Optimize()
1094 state->recursion_depth = starting_recursion_depth; in _PyAST_Optimize()
1102 if (ret && state->recursion_depth != starting_recursion_depth) { in _PyAST_Optimize()
1105 starting_recursion_depth, state->recursion_depth); in _PyAST_Optimize()
Dsymtable.c282 int starting_recursion_depth; in _PySymtable_Build() local
302 starting_recursion_depth = (recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ? in _PySymtable_Build()
304 st->recursion_depth = starting_recursion_depth; in _PySymtable_Build()
344 if (st->recursion_depth != starting_recursion_depth) { in _PySymtable_Build()
347 starting_recursion_depth, st->recursion_depth); in _PySymtable_Build()
DPython-ast.c12319 int starting_recursion_depth; in PyAST_mod2obj() local
12329 starting_recursion_depth = (recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ? in PyAST_mod2obj()
12331 state->recursion_depth = starting_recursion_depth; in PyAST_mod2obj()
12336 if (result && state->recursion_depth != starting_recursion_depth) { in PyAST_mod2obj()
12339 starting_recursion_depth, state->recursion_depth); in PyAST_mod2obj()