Home
last modified time | relevance | path

Searched refs:recursion_depth (Results 1 – 25 of 25) sorted by relevance

/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-sanitize.hh126 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/
Dast.c13 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 …]
Dast_opt.c707 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 …]
Dsymtable.c301 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()
Derrors.c312 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()
DPython-ast.c1854 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/
Dunicode_format.h37 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/
Dstring.py198 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/
Dpycore_compile.h32 int recursion_depth; /* current recursion depth */ member
Dpycore_symtable.h40 int recursion_depth; /* current recursion depth */ member
Dpycore_ast_state.h15 int recursion_depth; member
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
Ddemangle.cc179 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/
Djson_stream_parser.h94 int recursion_depth() { return recursion_depth_; } in recursion_depth() function
Djson_stream_parser_test.cc120 EXPECT_EQ(parser.recursion_depth(), 0); in RunTest()
/third_party/libunwind/libunwind/tests/
DGia64-test-stack.c49 extern void touch_all (unsigned long recursion_depth);
/third_party/node/deps/v8/src/regexp/
Dregexp-compiler.h529 inline int recursion_depth() { return recursion_depth_; } in recursion_depth() function
Dregexp-compiler.cc1363 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/
Dinstruction-selector.h687 bool ZeroExtendsWord32ToWord64(Node* node, int recursion_depth = 0);
Dinstruction-selector.cc3227 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/
Dtest_sys.py314 recursion_depth = get_recursion_depth()
315 if recursion_depth >= depth:
/third_party/python/Doc/whatsnew/
D3.9.rst1308 access ``PyThreadState.recursion_depth`` field (the structure is opaque in
D3.11.rst2502 * ``recursion_depth``: removed,
/third_party/python/Misc/
DNEWS16487 with the limited API which cannot access ``PyThreadState.recursion_depth``
/third_party/libabigail/tests/data/test-diff-filter/
Dtest-PR27569-v1.abi72513 …<var-decl name="recursion_depth" type-id="f0981eeb" visibility="default" filepath="include/linux/b…
Dtest-PR27569-v0.abi72499 …<var-decl name="recursion_depth" type-id="f0981eeb" visibility="default" filepath="include/linux/b…