| /third_party/skia/third_party/externals/harfbuzz/src/ |
| D | hb-sanitize.hh | 126 recursion_depth (0), in hb_sanitize_context_t() 209 this->recursion_depth = 0; in start_processing() 285 if (unlikely (recursion_depth >= max_depth)) return false; in check_start_recursion() 286 return ++recursion_depth; in check_start_recursion() 291 recursion_depth--; in end_recursion() 406 int recursion_depth; member
|
| /third_party/python/Python/ |
| D | ast.c | 13 int recursion_depth; /* current recursion depth */ member 167 if (++state->recursion_depth > state->recursion_limit) { in validate_constant() 196 --state->recursion_depth; in validate_constant() 214 if (++state->recursion_depth > state->recursion_limit) { in validate_expr() 394 state->recursion_depth--; in validate_expr() 540 if (++state->recursion_depth > state->recursion_limit) { in validate_pattern() 686 state->recursion_depth--; in validate_pattern() 721 if (++state->recursion_depth > state->recursion_limit) { in validate_stmt() 929 state->recursion_depth--; in validate_stmt() 1005 int recursion_depth = tstate->recursion_limit - tstate->recursion_remaining; in _PyAST_Validate() local [all …]
|
| D | ast_opt.c | 707 if (++state->recursion_depth > state->recursion_limit) { in astfold_expr() 810 state->recursion_depth--; in astfold_expr() 823 state->recursion_depth--; in astfold_expr() 870 if (++state->recursion_depth > state->recursion_limit) { in astfold_stmt() 990 state->recursion_depth--; in astfold_stmt() 1022 if (++state->recursion_depth > state->recursion_limit) { in astfold_pattern() 1058 state->recursion_depth--; in astfold_pattern() 1091 int recursion_depth = tstate->recursion_limit - tstate->recursion_remaining; in _PyAST_Optimize() local 1092 starting_recursion_depth = (recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ? in _PyAST_Optimize() 1093 recursion_depth * COMPILER_STACK_FRAME_SCALE : recursion_depth; in _PyAST_Optimize() [all …]
|
| D | symtable.c | 301 int recursion_depth = tstate->recursion_limit - tstate->recursion_remaining; in _PySymtable_Build() local 302 starting_recursion_depth = (recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ? in _PySymtable_Build() 303 recursion_depth * COMPILER_STACK_FRAME_SCALE : recursion_depth; 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() 1128 return --(ST)->recursion_depth,(X) 1191 if (++st->recursion_depth > st->recursion_limit) { in symtable_visit_stmt() 1577 if (++st->recursion_depth > st->recursion_limit) { in symtable_visit_expr() 1737 if (++st->recursion_depth > st->recursion_limit) { in symtable_visit_pattern()
|
| D | errors.c | 312 int recursion_depth = 0; in _PyErr_NormalizeException() local 378 recursion_depth++; in _PyErr_NormalizeException() 379 if (recursion_depth == Py_NORMALIZE_RECURSION_LIMIT) { in _PyErr_NormalizeException() 401 if (recursion_depth >= Py_NORMALIZE_RECURSION_LIMIT + 2) { in _PyErr_NormalizeException()
|
| D | Python-ast.c | 1854 state->recursion_depth = 0; in init_types() 3615 if (++state->recursion_depth > state->recursion_limit) { in ast2obj_mod() 3675 state->recursion_depth--; in ast2obj_mod() 3692 if (++state->recursion_depth > state->recursion_limit) { in ast2obj_stmt() 4240 state->recursion_depth--; in ast2obj_stmt() 4257 if (++state->recursion_depth > state->recursion_limit) { in ast2obj_expr() 4723 state->recursion_depth--; in ast2obj_expr() 4866 if (++state->recursion_depth > state->recursion_limit) { in ast2obj_comprehension() 4894 state->recursion_depth--; in ast2obj_comprehension() 4911 if (++state->recursion_depth > state->recursion_limit) { in ast2obj_excepthandler() [all …]
|
| /third_party/python/Objects/stringlib/ |
| D | unicode_format.h | 37 int recursion_depth, AutoNumber *auto_number); 809 int recursion_depth, AutoNumber *auto_number) in output_markup() argument 835 tmp = build_string(format_spec, args, kwargs, recursion_depth-1, in output_markup() 869 _PyUnicodeWriter *writer, int recursion_depth, AutoNumber *auto_number) in do_markup() argument 898 args, kwargs, recursion_depth, auto_number)) in do_markup() 912 int recursion_depth, AutoNumber *auto_number) in build_string() argument 917 if (recursion_depth <= 0) { in build_string() 927 if (!do_markup(input, args, kwargs, &writer, recursion_depth, in build_string() 950 int recursion_depth = 2; in do_string_format() local 959 return build_string(&input, args, kwargs, recursion_depth, &auto_number); in do_string_format()
|
| /third_party/python/Lib/ |
| D | string.py | 198 def _vformat(self, format_string, args, kwargs, used_args, recursion_depth, argument 200 if recursion_depth < 0: 243 used_args, recursion_depth-1,
|
| /third_party/python/Include/internal/ |
| D | pycore_compile.h | 32 int recursion_depth; /* current recursion depth */ member
|
| D | pycore_symtable.h | 40 int recursion_depth; /* current recursion depth */ member
|
| D | pycore_ast_state.h | 15 int recursion_depth; member
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/ |
| D | demangle.cc | 179 int recursion_depth; // For stack exhaustion prevention. member 190 ++state->recursion_depth; in ComplexityGuard() 193 ~ComplexityGuard() { --state_->recursion_depth; } in ~ComplexityGuard() 217 return state_->recursion_depth > kRecursionDepthLimit || in IsTooComplex() 261 state->recursion_depth = 0; in InitState()
|
| /third_party/protobuf/src/google/protobuf/util/internal/ |
| D | json_stream_parser.h | 94 int recursion_depth() { return recursion_depth_; } in recursion_depth() function
|
| D | json_stream_parser_test.cc | 120 EXPECT_EQ(parser.recursion_depth(), 0); in RunTest()
|
| /third_party/libunwind/libunwind/tests/ |
| D | Gia64-test-stack.c | 49 extern void touch_all (unsigned long recursion_depth);
|
| /third_party/node/deps/v8/src/regexp/ |
| D | regexp-compiler.h | 529 inline int recursion_depth() { return recursion_depth_; } in recursion_depth() function
|
| D | regexp-compiler.cc | 1363 compiler->recursion_depth() <= RegExpCompiler::kMaxRecursion; in KeepRecursing() 2577 int recursion_depth = 0; in GreedyLoopTextLengthForAlternative() local 2579 if (recursion_depth++ > RegExpCompiler::kMaxRecursion) { in GreedyLoopTextLengthForAlternative()
|
| /third_party/node/deps/v8/src/compiler/backend/ |
| D | instruction-selector.h | 687 bool ZeroExtendsWord32ToWord64(Node* node, int recursion_depth = 0);
|
| D | instruction-selector.cc | 3227 int recursion_depth) { in ZeroExtendsWord32ToWord64() argument 3249 if (recursion_depth >= kMaxRecursionDepth) { in ZeroExtendsWord32ToWord64() 3261 if (!ZeroExtendsWord32ToWord64(input, recursion_depth + 1)) { in ZeroExtendsWord32ToWord64()
|
| /third_party/python/Lib/test/ |
| D | test_sys.py | 314 recursion_depth = get_recursion_depth() 315 if recursion_depth >= depth:
|
| /third_party/python/Doc/whatsnew/ |
| D | 3.9.rst | 1308 access ``PyThreadState.recursion_depth`` field (the structure is opaque in
|
| D | 3.11.rst | 2502 * ``recursion_depth``: removed,
|
| /third_party/python/Misc/ |
| D | NEWS | 16487 with the limited API which cannot access ``PyThreadState.recursion_depth``
|
| /third_party/libabigail/tests/data/test-diff-filter/ |
| D | test-PR27569-v1.abi | 72513 …<var-decl name="recursion_depth" type-id="f0981eeb" visibility="default" filepath="include/linux/b…
|
| D | test-PR27569-v0.abi | 72499 …<var-decl name="recursion_depth" type-id="f0981eeb" visibility="default" filepath="include/linux/b…
|