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

12

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
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_signals_standalone.cpp41 void ubsan_GetStackTrace(BufferedStackTrace *stack, uptr max_depth,
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/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_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.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...]
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_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
/freebsd-11-stable/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:__anon8447
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-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/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/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/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/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/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/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-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/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/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-stable/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)

Completed in 368 milliseconds

12