/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 142 if (++state->recursion_depth > state->recursion_limit) { in validate_constant() 171 --state->recursion_depth; in validate_constant() 187 if (++state->recursion_depth > state->recursion_limit) { in validate_expr() 367 state->recursion_depth--; in validate_expr() 509 if (++state->recursion_depth > state->recursion_limit) { in validate_pattern() 647 state->recursion_depth--; in validate_pattern() 679 if (++state->recursion_depth > state->recursion_limit) { in validate_stmt() 861 state->recursion_depth--; in validate_stmt() 936 starting_recursion_depth = (tstate->recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ? in _PyAST_Validate() [all …]
|
D | ast_opt.c | 492 if (++state->recursion_depth > state->recursion_limit) { in astfold_expr() 595 state->recursion_depth--; in astfold_expr() 608 state->recursion_depth--; in astfold_expr() 655 if (++state->recursion_depth > state->recursion_limit) { in astfold_stmt() 769 state->recursion_depth--; in astfold_stmt() 801 if (++state->recursion_depth > state->recursion_limit) { in astfold_pattern() 837 state->recursion_depth--; in astfold_pattern() 871 starting_recursion_depth = (tstate->recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ? in _PyAST_Optimize() 872 tstate->recursion_depth * COMPILER_STACK_FRAME_SCALE : tstate->recursion_depth; in _PyAST_Optimize() 873 state->recursion_depth = starting_recursion_depth; in _PyAST_Optimize() [all …]
|
D | symtable.c | 308 starting_recursion_depth = (tstate->recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ? in _PySymtable_Build() 309 tstate->recursion_depth * COMPILER_STACK_FRAME_SCALE : tstate->recursion_depth; 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() 1139 return --(ST)->recursion_depth,(X) 1202 if (++st->recursion_depth > st->recursion_limit) { in symtable_visit_stmt() 1582 if (++st->recursion_depth > st->recursion_limit) { in symtable_visit_expr() 1745 if (++st->recursion_depth > st->recursion_limit) { in symtable_visit_pattern()
|
D | errors.c | 319 int recursion_depth = 0; in _PyErr_NormalizeException() local 385 recursion_depth++; in _PyErr_NormalizeException() 386 if (recursion_depth == Py_NORMALIZE_RECURSION_LIMIT) { in _PyErr_NormalizeException() 408 if (recursion_depth >= Py_NORMALIZE_RECURSION_LIMIT + 2) { in _PyErr_NormalizeException()
|
D | ceval.c | 867 --tstate->recursion_depth; in _Py_CheckRecursiveCall() 873 if (tstate->recursion_depth > recursion_limit + 50) { in _Py_CheckRecursiveCall() 879 if (tstate->recursion_depth > recursion_limit) { in _Py_CheckRecursiveCall() 885 --tstate->recursion_depth; in _Py_CheckRecursiveCall() 5015 ++tstate->recursion_depth; in _PyEval_MakeFrameVector() 5017 --tstate->recursion_depth; in _PyEval_MakeFrameVector() 5077 ++tstate->recursion_depth; in _PyEval_Vector() 5079 --tstate->recursion_depth; in _PyEval_Vector()
|
D | sysmodule.c | 1200 if (tstate->recursion_depth >= new_limit) { in sys_setrecursionlimit_impl() 1204 new_limit, tstate->recursion_depth); in sys_setrecursionlimit_impl()
|
D | pystate.c | 625 tstate->recursion_depth = 0; in new_threadstate()
|
/third_party/python/Include/internal/ |
D | pycore_ceval.h | 74 return (++tstate->recursion_depth > tstate->interp->ceval.recursion_limit in _Py_MakeRecCheck() 79 return (++tstate->recursion_depth > tstate->interp->ceval.recursion_limit); in _Py_MakeRecCheck() 100 tstate->recursion_depth--; in _Py_LeaveRecursiveCall()
|
D | pycore_compile.h | 32 int recursion_depth; /* current recursion depth */ member
|
D | pycore_symtable.h | 40 int recursion_depth; /* current recursion depth */ member
|
/third_party/gstreamer/gstplugins_bad/gst/rtmp2/rtmp/ |
D | amf.c | 528 guint recursion_depth) in dump_node() argument 557 dump_indent (string, indent, recursion_depth + 1); in dump_node() 561 dump_node (string, field->value, indent, recursion_depth + 1); in dump_node() 566 dump_indent (string, indent, recursion_depth); in dump_node() 578 dump_indent (string, indent, recursion_depth + 1); in dump_node() 579 dump_node (string, value, indent, recursion_depth + 1); in dump_node() 584 dump_indent (string, indent, recursion_depth); in dump_node() 620 guint8 recursion_depth; member 846 parser->recursion_depth++; in parse_value() 847 if (parser->recursion_depth > MAX_RECURSION_DEPTH) { in parse_value() [all …]
|
/third_party/python/Objects/stringlib/ |
D | unicode_format.h | 35 int recursion_depth, AutoNumber *auto_number); 807 int recursion_depth, AutoNumber *auto_number) in output_markup() argument 833 tmp = build_string(format_spec, args, kwargs, recursion_depth-1, in output_markup() 867 _PyUnicodeWriter *writer, int recursion_depth, AutoNumber *auto_number) in do_markup() argument 896 args, kwargs, recursion_depth, auto_number)) in do_markup() 910 int recursion_depth, AutoNumber *auto_number) in build_string() argument 915 if (recursion_depth <= 0) { in build_string() 925 if (!do_markup(input, args, kwargs, &writer, recursion_depth, in build_string() 948 int recursion_depth = 2; in do_string_format() local 957 return build_string(&input, args, kwargs, recursion_depth, &auto_number); in do_string_format()
|
/third_party/python/Lib/ |
D | string.py | 169 def _vformat(self, format_string, args, kwargs, used_args, recursion_depth, argument 171 if recursion_depth < 0: 214 used_args, recursion_depth-1,
|
/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/python/Include/cpython/ |
D | pystate.h | 69 int recursion_depth; member
|
/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/tests/ |
D | Gia64-test-stack.c | 49 extern void touch_all (unsigned long recursion_depth);
|
/third_party/python/Modules/ |
D | _testinternalcapi.c | 37 return PyLong_FromLong(tstate->recursion_depth - 1); in get_recursion_depth()
|
/third_party/python/Lib/test/ |
D | test_sys.py | 249 recursion_depth = get_recursion_depth() 250 if recursion_depth >= depth:
|
/third_party/python/Doc/whatsnew/ |
D | 3.9.rst | 1293 access ``PyThreadState.recursion_depth`` field (the structure is opaque in
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 5466 access ``PyThreadState.recursion_depth`` field. Remove
|
/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…
|