Searched refs:max_depth (Results 1 - 22 of 22) sorted by relevance

/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_libcdep.cc48 void BufferedStackTrace::Unwind(u32 max_depth, uptr pc, uptr bp, void *context, argument
51 top_frame_bp = (max_depth > 0) ? bp : 0;
52 // Avoid doing any work for small max_depth.
53 if (max_depth == 0) {
57 if (max_depth == 1) {
65 SlowUnwindStackWithContext(pc, context, max_depth);
67 SlowUnwindStack(pc, max_depth);
72 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth);
H A Dsanitizer_unwind_linux_libcdep.cc43 backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth);
99 u32 max_depth; member in struct:__sanitizer::UnwindTraceArg
104 CHECK_LT(arg->stack->size, arg->max_depth);
107 if (arg->stack->size == arg->max_depth) return UNWIND_STOP;
111 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) { argument
112 CHECK_GE(max_depth, 2);
114 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)};
131 u32 max_depth) {
132 CHECK_GE(max_depth, 2);
134 SlowUnwindStack(pc, max_depth);
130 SlowUnwindStackWithContext(uptr pc, void *context, u32 max_depth) argument
[all...]
H A Dsanitizer_stacktrace.h97 void Unwind(u32 max_depth, uptr pc, uptr bp, void *context, uptr stack_top,
102 u32 max_depth);
103 void SlowUnwindStack(uptr pc, u32 max_depth);
105 u32 max_depth);
H A Dsanitizer_stacktrace.cc73 uptr stack_bottom, u32 max_depth) {
74 CHECK_GE(max_depth, 2);
85 size < max_depth) {
72 FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom, u32 max_depth) argument
H A Dsanitizer_win.cc635 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) { argument
636 CHECK_GE(max_depth, 2);
640 size = CaptureStackBackTrace(2, Min(max_depth, kStackTraceMax),
651 u32 max_depth) {
673 size < Min(max_depth, kStackTraceMax)) {
650 SlowUnwindStackWithContext(uptr pc, void *context, u32 max_depth) argument
/freebsd-11.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-cmd-queue.c137 * @param max_depth Maximum outstanding commands that can be queued.
143 cvmx_cmd_queue_result_t cvmx_cmd_queue_initialize(cvmx_cmd_queue_id_t queue_id, int max_depth, int fpa_pool, int pool_size) argument
154 /* We artificially limit max_depth to 1<<20 words. It is an arbitrary limit */
157 if ((max_depth < 0) || (max_depth > 1<<20))
160 else if (max_depth != 0)
171 if (max_depth != (int)qstate->max_depth)
173 cvmx_dprintf("ERROR: cvmx_cmd_queue_initialize: Queue already initialized with different max_depth (%d).\n", (int)qstate->max_depth);
[all...]
H A Dcvmx-cmd-queue.h155 uint32_t max_depth; /**< Maximum outstanding command words */ member in struct:__anon8443
185 * @param max_depth Maximum outstanding commands that can be queued.
191 cvmx_cmd_queue_result_t cvmx_cmd_queue_initialize(cvmx_cmd_queue_id_t queue_id, int max_depth, int fpa_pool, int pool_size);
365 if (CVMX_CMD_QUEUE_ENABLE_MAX_DEPTH && cvmx_unlikely(qptr->max_depth))
367 if (cvmx_unlikely(cvmx_cmd_queue_length(queue_id) > (int)qptr->max_depth))
452 if (CVMX_CMD_QUEUE_ENABLE_MAX_DEPTH && cvmx_unlikely(qptr->max_depth))
454 if (cvmx_unlikely(cvmx_cmd_queue_length(queue_id) > (int)qptr->max_depth))
542 if (CVMX_CMD_QUEUE_ENABLE_MAX_DEPTH && cvmx_unlikely(qptr->max_depth))
544 if (cvmx_unlikely(cvmx_cmd_queue_length(queue_id) > (int)qptr->max_depth))
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionGroupValueObjectDisplay.h55 max_depth != UINT32_MAX ||
78 uint32_t max_depth; member in class:lldb_private::OptionGroupValueObjectDisplay
/freebsd-11.0-release/contrib/compiler-rt/lib/asan/
H A Dasan_stack.h34 void GetStackTraceWithPcBpAndContext(BufferedStackTrace *stack, uptr max_depth, argument
38 stack->Unwind(max_depth, pc, bp, context, 0, 0, fast);
51 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast);
54 stack->Unwind(max_depth, pc, bp, context, 0, 0, false);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionGroupValueObjectDisplay.cpp91 max_depth = StringConvert::ToUInt32 (option_arg, UINT32_MAX, 0, &success);
142 max_depth = UINT32_MAX;
170 options.SetMaximumDepth(max_depth)
/freebsd-11.0-release/contrib/ntp/lib/isc/
H A Dbacktrace.c93 int max_depth; member in struct:__anon4811
106 if (arg->count == arg->max_depth)
122 arg.max_depth = maxaddrs;
/freebsd-11.0-release/sys/dev/bce/
H A Dif_bce.c10287 u32 cmd, ctl, cur_depth, max_depth, valid_cnt, val; local
10328 max_depth = (ctl & BCE_RLUP_FTQ_CTL_MAX_DEPTH) >> 12;
10331 cmd, ctl, cur_depth, max_depth, valid_cnt);
10337 max_depth = (ctl & BCE_RXP_FTQ_CTL_MAX_DEPTH) >> 12;
10340 cmd, ctl, cur_depth, max_depth, valid_cnt);
10346 max_depth = (ctl & BCE_RXP_CFTQ_CTL_MAX_DEPTH) >> 12;
10349 cmd, ctl, cur_depth, max_depth, valid_cnt);
10355 max_depth = (ctl & BCE_RV2P_PFTQ_CTL_MAX_DEPTH) >> 12;
10358 cmd, ctl, cur_depth, max_depth, valid_cnt);
10364 max_depth
[all...]
/freebsd-11.0-release/contrib/gcc/
H A Dipa-inline.c576 int max_depth = PARAM_VALUE (PARAM_MAX_INLINE_RECURSIVE_DEPTH_AUTO); local
587 max_depth = PARAM_VALUE (PARAM_MAX_INLINE_RECURSIVE_DEPTH);
591 if (!max_depth
627 if (depth > max_depth)
H A Dgenrecog.c166 static int max_depth; variable
912 if (depth > max_depth)
913 max_depth = depth;
2449 for (i = 1; i <= max_depth; i++)
/freebsd-11.0-release/crypto/heimdal/lib/hx509/
H A Dcert.c63 unsigned int max_depth; member in struct:hx509_verify_ctx_data
406 c->max_depth = HX509_VERIFY_MAX_DEPTH;
503 * @param max_depth maxium depth of the certificate chain, include
510 hx509_verify_set_max_depth(hx509_verify_ctx ctx, unsigned int max_depth) argument
512 ctx->max_depth = max_depth;
1239 unsigned int max_depth,
1247 if (max_depth == 0)
1248 max_depth = HX509_VERIFY_MAX_DEPTH;
1269 if (path->len > max_depth) {
1235 _hx509_calculate_path(hx509_context context, int flags, time_t time_now, hx509_certs anchors, unsigned int max_depth, hx509_cert cert, hx509_certs pool, hx509_path *path) argument
[all...]
/freebsd-11.0-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_iso9660.c732 int max_depth; member in struct:iso9660::vdd
1072 iso9660->primary.max_depth = 0;
1076 iso9660->joliet.max_depth = 0;
2130 for (i = 0; i < iso9660->primary.max_depth; i++)
2136 for (i = 0; i < iso9660->joliet.max_depth; i++)
4206 for (depth = 0; depth < vdd->max_depth; depth++) {
4310 for (depth = 0; depth < vdd->max_depth; depth++) {
4336 !iso9660->opt.rr && depth + 1 >= vdd->max_depth))
4382 !iso9660->opt.rr && depth + 1 >= vdd->max_depth)) {
4451 if (np->subdirs.first != NULL && depth + 1 < vdd->max_depth) {
6958 isoent_alloc_path_table(struct archive_write *a, struct vdd *vdd, int max_depth) argument
[all...]
/freebsd-11.0-release/contrib/ofed/management/opensm/opensm/
H A Dosm_mcast_mgr.c750 uint8_t max_depth = 0; local
835 &port_list, 0, 0, &max_depth);
839 cl_ntoh16(osm_mgrp_get_mlid(p_mgrp)), count, max_depth);
/freebsd-11.0-release/contrib/gcclibs/libmudflap/
H A Dmf-runtime.c113 unsigned max_depth; member in struct:mfsplay_tree_s
2344 if (sp->depth > sp->max_depth)
2510 sp->max_depth = 2500;
/freebsd-11.0-release/sys/kern/
H A Dsubr_sleepqueue.c144 SYSCTL_UINT(_debug_sleepq, OID_AUTO, max_depth, CTLFLAG_RD, &sleepq_max_depth,
192 "max_depth", CTLFLAG_RD, &sleepq_chains[i].sc_max_depth, 0,
H A Dsubr_turnstile.c146 SYSCTL_UINT(_debug_turnstile, OID_AUTO, max_depth, CTLFLAG_RD,
390 "max_depth", CTLFLAG_RD, &turnstile_chains[i].tc_max_depth,
/freebsd-11.0-release/sys/dev/acpica/
H A Dacpi.c145 int max_depth, acpi_scan_cb_t user_fn, void *arg);
1765 acpi_device_scan_children(device_t bus, device_t dev, int max_depth, argument
1781 return (AcpiWalkNamespace(ACPI_TYPE_ANY, h, max_depth,
/freebsd-11.0-release/contrib/subversion/subversion/libsvn_wc/
H A Dwc_db.c14434 int max_depth; local
14466 max_depth = lock_depth + levels_to_lock;
14479 && relpath_depth(lock_relpath) > max_depth)

Completed in 256 milliseconds