Home
last modified time | relevance | path

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

/third_party/python/Python/
Dast_opt.c863 int starting_recursion_depth; in _PyAST_Optimize() local
871 starting_recursion_depth = (tstate->recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ? in _PyAST_Optimize()
873 state->recursion_depth = starting_recursion_depth; in _PyAST_Optimize()
881 if (ret && state->recursion_depth != starting_recursion_depth) { in _PyAST_Optimize()
884 starting_recursion_depth, state->recursion_depth); in _PyAST_Optimize()
Dast.c928 int starting_recursion_depth; in _PyAST_Validate() local
936 starting_recursion_depth = (tstate->recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ? in _PyAST_Validate()
938 state.recursion_depth = starting_recursion_depth; in _PyAST_Validate()
965 if (res && state.recursion_depth != starting_recursion_depth) { in _PyAST_Validate()
968 starting_recursion_depth, state.recursion_depth); in _PyAST_Validate()
Dsymtable.c289 int starting_recursion_depth; in _PySymtable_Build() local
308 starting_recursion_depth = (tstate->recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ? in _PySymtable_Build()
310 st->recursion_depth = starting_recursion_depth; in _PySymtable_Build()
351 if (st->recursion_depth != starting_recursion_depth) { in _PySymtable_Build()
354 starting_recursion_depth, st->recursion_depth); in _PySymtable_Build()