| /NextBSD/contrib/compiler-rt/lib/sanitizer_common/ |
| HD | sanitizer_unwind_linux_libcdep.cc | 43 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 …]
|
| HD | sanitizer_stacktrace_libcdep.cc | 48 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()
|
| HD | sanitizer_stacktrace.h | 99 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);
|
| HD | sanitizer_stacktrace.cc | 73 uptr stack_bottom, u32 max_depth) { in FastUnwindStack() argument 74 CHECK_GE(max_depth, 2); in FastUnwindStack() 85 size < max_depth) { in FastUnwindStack()
|
| HD | sanitizer_win.cc | 546 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/ |
| HD | cvmx-cmd-queue.c | 143 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()
|
| HD | cvmx-cmd-queue.h | 155 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/ |
| HD | asan_stack.h | 33 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/ |
| HD | OptionGroupValueObjectDisplay.h | 58 max_depth != UINT32_MAX || in AnyOptionWasSet() 81 uint32_t max_depth; variable
|
| /NextBSD/contrib/ntp/lib/isc/ |
| HD | backtrace.c | 93 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/ |
| HD | OptionGroupValueObjectDisplay.cpp | 91 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/ |
| HD | sanitizer_stacktrace_test.cc | 24 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/ |
| HD | if_bce.c | 10287 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/ |
| HD | cert.c | 63 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/ |
| HD | ipa-inline.c | 576 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()
|
| HD | genrecog.c | 166 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/ |
| HD | archive_write_set_format_iso9660.c | 732 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/ |
| HD | acpi_if.m | 144 # int max_depth: number of levels to traverse (i.e., 1 means just the 156 int max_depth;
|
| HD | acpi.c | 143 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/ |
| HD | osm_mcast_mgr.c | 750 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/ |
| HD | mf-runtime.c | 113 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()
|
| HD | ChangeLog | 449 num_keys, max_depth, depth, rebalance_p.
|
| /NextBSD/sys/kern/ |
| HD | subr_sleepqueue.c | 141 SYSCTL_UINT(_debug_sleepq, OID_AUTO, max_depth, CTLFLAG_RD, &sleepq_max_depth,
|
| HD | subr_turnstile.c | 146 SYSCTL_UINT(_debug_turnstile, OID_AUTO, max_depth, CTLFLAG_RD,
|
| /NextBSD/contrib/subversion/subversion/libsvn_wc/ |
| HD | wc_db.c | 14434 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()
|