Searched refs:max_depth (Results 1 - 25 of 35) sorted by last modified time

12

/freebsd-11-stable/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++)
4211 for (depth = 0; depth < vdd->max_depth; depth++) {
4315 for (depth = 0; depth < vdd->max_depth; depth++) {
4341 !iso9660->opt.rr && depth + 1 >= vdd->max_depth))
4387 !iso9660->opt.rr && depth + 1 >= vdd->max_depth)) {
4456 if (np->subdirs.first != NULL && depth + 1 < vdd->max_depth) {
6961 isoent_alloc_path_table(struct archive_write *a, struct vdd *vdd, int max_depth) argument
[all...]
/freebsd-11-stable/sys/kern/
H A Dsubr_sleepqueue.c146 SYSCTL_UINT(_debug_sleepq, OID_AUTO, max_depth, CTLFLAG_RD, &sleepq_max_depth,
194 "max_depth", CTLFLAG_RD, &sleepq_chains[i].sc_max_depth, 0,
/freebsd-11-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc_db.c14382 int max_depth; local
14414 max_depth = lock_depth + levels_to_lock;
14427 && relpath_depth(lock_relpath) > max_depth)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupValueObjectDisplay.cpp107 if (option_arg.getAsInteger(0, max_depth)) {
108 max_depth = UINT32_MAX;
169 max_depth = UINT32_MAX;
197 options.SetMaximumDepth(max_depth)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_signals_standalone.cpp41 void ubsan_GetStackTrace(BufferedStackTrace *stack, uptr max_depth,
H A Dubsan_diag_standalone.cpp20 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) {
25 Unwind(max_depth, pc, bp, nullptr, top, bottom, true);
27 Unwind(max_depth, pc, bp, context, 0, 0, false);
19 UnwindImpl( uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) argument
H A Dubsan_diag.cpp35 void ubsan_GetStackTrace(BufferedStackTrace *stack, uptr max_depth, argument
41 stack->Unwind(max_depth, pc, bp, nullptr, top, bottom, true);
43 stack->Unwind(max_depth, pc, bp, context, 0, 0, false);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_stack_trace.cpp54 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) {
59 Unwind(max_depth, pc, bp, nullptr, top, bottom, true);
61 Unwind(max_depth, pc, 0, context, 0, 0, false);
53 UnwindImpl( uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_unwind_win.cpp27 void BufferedStackTrace::UnwindSlow(uptr pc, u32 max_depth) { argument
28 CHECK_GE(max_depth, 2);
32 size = CaptureStackBackTrace(1, Min(max_depth, kStackTraceMax),
42 void BufferedStackTrace::UnwindSlow(uptr pc, void *context, u32 max_depth) { argument
44 CHECK_GE(max_depth, 2);
69 size < Min(max_depth, kStackTraceMax)) {
H A Dsanitizer_unwind_linux_libcdep.cpp45 backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth);
75 u32 max_depth; member in struct:__sanitizer::__anon1034::UnwindTraceArg
80 CHECK_LT(arg->stack->size, arg->max_depth);
88 if (arg->stack->size == arg->max_depth) return UNWIND_STOP;
126 void BufferedStackTrace::UnwindSlow(uptr pc, u32 max_depth) { argument
127 CHECK_GE(max_depth, 2);
129 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)};
151 void BufferedStackTrace::UnwindSlow(uptr pc, void *context, u32 max_depth) { argument
153 CHECK_GE(max_depth, 2);
155 UnwindSlow(pc, max_depth);
[all...]
H A Dsanitizer_symbolizer_markup.cpp107 u32 max_depth; member in struct:__sanitizer::UnwindTraceArg
112 CHECK_LT(arg->stack->size, arg->max_depth);
116 return (arg->stack->size == arg->max_depth ? _URC_NORMAL_STOP
120 void BufferedStackTrace::UnwindSlow(uptr pc, u32 max_depth) { argument
121 CHECK_GE(max_depth, 2);
123 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)};
135 void BufferedStackTrace::UnwindSlow(uptr pc, void *context, u32 max_depth) { argument
137 CHECK_GE(max_depth, 2);
H A Dsanitizer_stacktrace_sparc.cpp29 uptr stack_bottom, u32 max_depth) {
31 CHECK_GE(max_depth, 2);
66 size < max_depth) {
28 UnwindFast(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom, u32 max_depth) argument
H A Dsanitizer_stacktrace_libcdep.cpp57 void BufferedStackTrace::Unwind(u32 max_depth, uptr pc, uptr bp, void *context, argument
62 top_frame_bp = (max_depth > 0) ? bp : 0;
63 // Avoid doing any work for small max_depth.
64 if (max_depth == 0) {
68 if (max_depth == 1) {
76 UnwindSlow(pc, context, max_depth);
78 UnwindSlow(pc, max_depth);
83 UnwindFast(pc, bp, stack_top, stack_bottom, max_depth);
H A Dsanitizer_stacktrace.cpp71 uptr stack_bottom, u32 max_depth) {
73 CHECK_GE(max_depth, 2);
85 size < max_depth) {
70 UnwindFast(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom, u32 max_depth) argument
H A Dsanitizer_stacktrace.h106 u32 max_depth = kStackTraceMax) {
107 top_frame_bp = (max_depth > 0) ? bp : 0;
108 // Small max_depth optimization
109 if (max_depth <= 1) {
110 if (max_depth == 1)
112 size = max_depth;
115 UnwindImpl(pc, bp, context, request_fast, max_depth);
118 void Unwind(u32 max_depth, uptr pc, uptr bp, void *context, uptr stack_top,
129 u32 max_depth);
133 u32 max_depth);
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan.cpp307 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) {
313 return Unwind(max_depth, pc, bp, context, 0, 0, false);
316 Unwind(max_depth, pc, bp, nullptr, t->stack_top(), t->stack_bottom(), true);
318 Unwind(max_depth, pc, 0, context, 0, 0, false);
306 UnwindImpl( uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan.cpp36 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) {
47 Unwind(max_depth, pc, bp, nullptr, stack_top, stack_bottom, true);
49 Unwind(max_depth, pc, 0, context, 0, 0, false);
35 UnwindImpl( uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan.cpp201 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) {
211 return Unwind(max_depth, pc, bp, context, 0, 0, request_fast);
214 Unwind(max_depth, pc, bp, nullptr, t->stack_top(), t->stack_bottom(), true);
216 Unwind(max_depth, pc, 0, context, 0, 0, false);
200 UnwindImpl( uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/
H A Dbacktrace_sanitizer_common.cpp24 u32 max_depth) {
26 return Unwind(max_depth, pc, bp, context, 0, 0, request_fast);
28 Unwind(max_depth, pc, 0, context, 0, 0, false);
21 UnwindImpl(uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_stack.cpp57 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) {
69 Unwind(max_depth, pc, bp, nullptr, t->stack_top(), t->stack_bottom(),
77 Unwind(max_depth, pc, bp, context, 0, 0, false);
56 UnwindImpl( uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) argument
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupValueObjectDisplay.h35 flat_output || use_objc || max_depth != UINT32_MAX ||
50 uint32_t max_depth; member in class:lldb_private::OptionGroupValueObjectDisplay
/freebsd-11-stable/sys/dev/acpica/
H A Dacpi.c146 int max_depth, acpi_scan_cb_t user_fn, void *arg);
1775 acpi_device_scan_children(device_t bus, device_t dev, int max_depth, argument
1791 return (AcpiWalkNamespace(ACPI_TYPE_ANY, h, max_depth,
/freebsd-11-stable/contrib/unbound/edns-subnet/
H A Daddrtree.h76 addrlen_t max_depth; member in struct:addrtree
130 * @param max_depth: Tree will cap keys to this length.
139 addrtree_create(addrlen_t max_depth, void (*delfunc)(void *, void *),
H A Daddrtree.c121 addrtree_create(addrlen_t max_depth, void (*delfunc)(void *, void *), argument
138 tree->max_depth = max_depth;
372 if (tree->max_depth < scope) scope = tree->max_depth;
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_torus.c8680 unsigned *port_cnt, unsigned *max_depth)
8750 depth, port_cnt, max_depth);
8789 } else if (depth > *max_depth)
8790 *max_depth = depth;
8843 unsigned port_cnt = 0, max_depth = 0; local
8903 mgb, -1, &port_cnt, &max_depth);
8907 mgb->mlid, port_cnt, max_depth);
8678 mcast_stree_branch(struct t_switch *sw, osm_switch_t *osm_sw, osm_mgrp_box_t *mgb, unsigned depth, unsigned *port_cnt, unsigned *max_depth) argument

Completed in 614 milliseconds

12