Home
last modified time | relevance | path

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

12

/NextBSD/contrib/compiler-rt/lib/sanitizer_common/
HDsanitizer_unwind_linux_libcdep.cc43 backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth);
99 u32 max_depth; member
104 CHECK_LT(arg->stack->size, arg->max_depth); in Unwind_Trace()
107 if (arg->stack->size == arg->max_depth) return UNWIND_STOP; in Unwind_Trace()
111 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) { in SlowUnwindStack() argument
112 CHECK_GE(max_depth, 2); in SlowUnwindStack()
114 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)}; in SlowUnwindStack()
131 u32 max_depth) { in SlowUnwindStackWithContext() argument
132 CHECK_GE(max_depth, 2); in SlowUnwindStackWithContext()
134 SlowUnwindStack(pc, max_depth); in SlowUnwindStackWithContext()
[all …]
HDsanitizer_stacktrace_libcdep.cc48 void BufferedStackTrace::Unwind(u32 max_depth, uptr pc, uptr bp, void *context, in Unwind() argument
51 top_frame_bp = (max_depth > 0) ? bp : 0; in Unwind()
53 if (max_depth == 0) { in Unwind()
57 if (max_depth == 1) { in Unwind()
65 SlowUnwindStackWithContext(pc, context, max_depth); in Unwind()
67 SlowUnwindStack(pc, max_depth); in Unwind()
72 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth); in Unwind()
HDsanitizer_stacktrace.h99 void Unwind(u32 max_depth, uptr pc, uptr bp, void *context, uptr stack_top,
104 u32 max_depth);
105 void SlowUnwindStack(uptr pc, u32 max_depth);
107 u32 max_depth);
HDsanitizer_stacktrace.cc73 uptr stack_bottom, u32 max_depth) { in FastUnwindStack() argument
74 CHECK_GE(max_depth, 2); in FastUnwindStack()
85 size < max_depth) { in FastUnwindStack()
HDsanitizer_win.cc546 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) { in SlowUnwindStack() argument
547 CHECK_GE(max_depth, 2); in SlowUnwindStack()
551 size = CaptureStackBackTrace(2, Min(max_depth, kStackTraceMax), in SlowUnwindStack()
562 u32 max_depth) { in SlowUnwindStackWithContext() argument
584 size < Min(max_depth, kStackTraceMax)) { in SlowUnwindStackWithContext()
/NextBSD/sys/contrib/octeon-sdk/
HDcvmx-cmd-queue.c143 cvmx_cmd_queue_result_t cvmx_cmd_queue_initialize(cvmx_cmd_queue_id_t queue_id, int max_depth, int … in cvmx_cmd_queue_initialize() argument
157 if ((max_depth < 0) || (max_depth > 1<<20)) in cvmx_cmd_queue_initialize()
160 else if (max_depth != 0) in cvmx_cmd_queue_initialize()
171 if (max_depth != (int)qstate->max_depth) in cvmx_cmd_queue_initialize()
173 …e_initialize: Queue already initialized with different max_depth (%d).\n", (int)qstate->max_depth); in cvmx_cmd_queue_initialize()
208 qstate->max_depth = max_depth; in cvmx_cmd_queue_initialize()
HDcvmx-cmd-queue.h155 uint32_t max_depth; /**< Maximum outstanding command words */ member
191 cvmx_cmd_queue_result_t cvmx_cmd_queue_initialize(cvmx_cmd_queue_id_t queue_id, int max_depth, int …
365 if (CVMX_CMD_QUEUE_ENABLE_MAX_DEPTH && cvmx_unlikely(qptr->max_depth)) in cvmx_cmd_queue_write()
367 if (cvmx_unlikely(cvmx_cmd_queue_length(queue_id) > (int)qptr->max_depth)) in cvmx_cmd_queue_write()
452 if (CVMX_CMD_QUEUE_ENABLE_MAX_DEPTH && cvmx_unlikely(qptr->max_depth)) in cvmx_cmd_queue_write2()
454 if (cvmx_unlikely(cvmx_cmd_queue_length(queue_id) > (int)qptr->max_depth)) in cvmx_cmd_queue_write2()
542 if (CVMX_CMD_QUEUE_ENABLE_MAX_DEPTH && cvmx_unlikely(qptr->max_depth)) in cvmx_cmd_queue_write3()
544 if (cvmx_unlikely(cvmx_cmd_queue_length(queue_id) > (int)qptr->max_depth)) in cvmx_cmd_queue_write3()
/NextBSD/contrib/compiler-rt/lib/asan/
HDasan_stack.h33 void GetStackTraceWithPcBpAndContext(BufferedStackTrace *stack, uptr max_depth, in GetStackTraceWithPcBpAndContext() argument
37 stack->Unwind(max_depth, pc, bp, context, 0, 0, fast); in GetStackTraceWithPcBpAndContext()
50 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast); in GetStackTraceWithPcBpAndContext()
53 stack->Unwind(max_depth, pc, bp, context, 0, 0, false); in GetStackTraceWithPcBpAndContext()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDOptionGroupValueObjectDisplay.h58 max_depth != UINT32_MAX || in AnyOptionWasSet()
81 uint32_t max_depth; variable
/NextBSD/contrib/ntp/lib/isc/
HDbacktrace.c93 int max_depth; member
106 if (arg->count == arg->max_depth) in btcallback()
122 arg.max_depth = maxaddrs; in isc_backtrace_gettrace()
/NextBSD/contrib/llvm/tools/lldb/source/Interpreter/
HDOptionGroupValueObjectDisplay.cpp91 max_depth = StringConvert::ToUInt32 (option_arg, UINT32_MAX, 0, &success); in SetOptionValue()
142 max_depth = UINT32_MAX; in OptionParsingStarting()
170 options.SetMaximumDepth(max_depth) in GetAsDumpOptions()
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/tests/
HDsanitizer_stacktrace_test.cc24 bool TryFastUnwind(uptr max_depth) { in TryFastUnwind() argument
27 trace.Unwind(max_depth, start_pc, (uptr)&fake_stack[0], 0, fake_top, in TryFastUnwind()
/NextBSD/sys/dev/bce/
HDif_bce.c10287 u32 cmd, ctl, cur_depth, max_depth, valid_cnt, val; in bce_dump_ftqs() local
10328 max_depth = (ctl & BCE_RLUP_FTQ_CTL_MAX_DEPTH) >> 12; in bce_dump_ftqs()
10331 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs()
10337 max_depth = (ctl & BCE_RXP_FTQ_CTL_MAX_DEPTH) >> 12; in bce_dump_ftqs()
10340 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs()
10346 max_depth = (ctl & BCE_RXP_CFTQ_CTL_MAX_DEPTH) >> 12; in bce_dump_ftqs()
10349 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs()
10355 max_depth = (ctl & BCE_RV2P_PFTQ_CTL_MAX_DEPTH) >> 12; in bce_dump_ftqs()
10358 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs()
10364 max_depth = (ctl & BCE_RV2P_MFTQ_CTL_MAX_DEPTH) >> 12; in bce_dump_ftqs()
[all …]
/NextBSD/crypto/heimdal/lib/hx509/
HDcert.c63 unsigned int max_depth; member
406 c->max_depth = HX509_VERIFY_MAX_DEPTH; in hx509_verify_init_ctx()
510 hx509_verify_set_max_depth(hx509_verify_ctx ctx, unsigned int max_depth) in hx509_verify_set_max_depth() argument
512 ctx->max_depth = max_depth; in hx509_verify_set_max_depth()
1239 unsigned int max_depth, in _hx509_calculate_path() argument
1247 if (max_depth == 0) in _hx509_calculate_path()
1248 max_depth = HX509_VERIFY_MAX_DEPTH; in _hx509_calculate_path()
1269 if (path->len > max_depth) { in _hx509_calculate_path()
2016 anchors, ctx->max_depth, in hx509_verify_path()
/NextBSD/contrib/gcc/
HDipa-inline.c576 int max_depth = PARAM_VALUE (PARAM_MAX_INLINE_RECURSIVE_DEPTH_AUTO); in cgraph_decide_recursive_inlining() local
587 max_depth = PARAM_VALUE (PARAM_MAX_INLINE_RECURSIVE_DEPTH); in cgraph_decide_recursive_inlining()
591 if (!max_depth in cgraph_decide_recursive_inlining()
627 if (depth > max_depth) in cgraph_decide_recursive_inlining()
HDgenrecog.c166 static int max_depth; variable
909 if (depth > max_depth) in add_to_sequence()
910 max_depth = depth; in add_to_sequence()
2442 for (i = 1; i <= max_depth; i++) in write_subroutine()
/NextBSD/contrib/libarchive/libarchive/
HDarchive_write_set_format_iso9660.c732 int max_depth; member
1072 iso9660->primary.max_depth = 0; in archive_write_set_format_iso9660()
1076 iso9660->joliet.max_depth = 0; in archive_write_set_format_iso9660()
2130 for (i = 0; i < iso9660->primary.max_depth; i++) in iso9660_free()
2136 for (i = 0; i < iso9660->joliet.max_depth; i++) in iso9660_free()
4196 for (depth = 0; depth < vdd->max_depth; depth++) { in calculate_path_table_size()
4300 for (depth = 0; depth < vdd->max_depth; depth++) { in write_path_table()
4326 !iso9660->opt.rr && depth + 1 >= vdd->max_depth)) in calculate_directory_descriptors()
4372 !iso9660->opt.rr && depth + 1 >= vdd->max_depth)) { in _write_directory_descriptors()
4441 if (np->subdirs.first != NULL && depth + 1 < vdd->max_depth) { in write_directory_descriptors()
[all …]
/NextBSD/sys/dev/acpica/
HDacpi_if.m144 # int max_depth: number of levels to traverse (i.e., 1 means just the
156 int max_depth;
HDacpi.c143 int max_depth, acpi_scan_cb_t user_fn, void *arg);
1759 acpi_device_scan_children(device_t bus, device_t dev, int max_depth, in acpi_device_scan_children() argument
1775 return (AcpiWalkNamespace(ACPI_TYPE_ANY, h, max_depth, in acpi_device_scan_children()
/NextBSD/contrib/ofed/management/opensm/opensm/
HDosm_mcast_mgr.c750 uint8_t max_depth = 0; in __osm_mcast_mgr_build_spanning_tree() local
835 &port_list, 0, 0, &max_depth); in __osm_mcast_mgr_build_spanning_tree()
839 cl_ntoh16(osm_mgrp_get_mlid(p_mgrp)), count, max_depth); in __osm_mcast_mgr_build_spanning_tree()
/NextBSD/contrib/gcclibs/libmudflap/
HDmf-runtime.c113 unsigned max_depth; member
2344 if (sp->depth > sp->max_depth) in mfsplay_tree_splay_helper()
2510 sp->max_depth = 2500; in mfsplay_tree_splay()
HDChangeLog449 num_keys, max_depth, depth, rebalance_p.
/NextBSD/sys/kern/
HDsubr_sleepqueue.c141 SYSCTL_UINT(_debug_sleepq, OID_AUTO, max_depth, CTLFLAG_RD, &sleepq_max_depth,
HDsubr_turnstile.c146 SYSCTL_UINT(_debug_turnstile, OID_AUTO, max_depth, CTLFLAG_RD,
/NextBSD/contrib/subversion/subversion/libsvn_wc/
HDwc_db.c14434 int max_depth; in wclock_obtain_cb() local
14466 max_depth = lock_depth + levels_to_lock; in wclock_obtain_cb()
14479 && relpath_depth(lock_relpath) > max_depth) in wclock_obtain_cb()

12