Home
last modified time | relevance | path

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

/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dvtable-verify.c551 int *recursion_depth) in var_is_used_for_virtual_call_p() argument
563 if (*recursion_depth > 25) in var_is_used_for_virtual_call_p()
569 *recursion_depth = *recursion_depth + 1; in var_is_used_for_virtual_call_p()
594 recursion_depth); in var_is_used_for_virtual_call_p()
617 recursion_depth); in var_is_used_for_virtual_call_p()
674 int recursion_depth = 0; in verify_bb_vtables() local
678 &recursion_depth)) in verify_bb_vtables()
/dflybsd-src/contrib/mdocml/
H A Dread.c556 static int recursion_depth; in mparse_readfd() local
565 if (recursion_depth > 64) { in mparse_readfd()
568 } else if (recursion_depth == 0 && in mparse_readfd()
602 recursion_depth++; in mparse_readfd()
604 if (--recursion_depth == 0) in mparse_readfd()
/dflybsd-src/contrib/gdb-7/gdb/
H A Ddwarf2expr.c362 int old_recursion_depth = ctx->recursion_depth; in dwarf_expr_eval()
368 gdb_assert (ctx->recursion_depth == old_recursion_depth); in dwarf_expr_eval()
651 if (ctx->recursion_depth > ctx->max_recursion_depth) in execute_stack_op()
653 ctx->recursion_depth); in execute_stack_op()
654 ctx->recursion_depth++; in execute_stack_op()
1500 ctx->recursion_depth--; in execute_stack_op()
1501 gdb_assert (ctx->recursion_depth >= 0); in execute_stack_op()
H A Ddwarf2expr.h160 int recursion_depth, max_recursion_depth; member