Home
last modified time | relevance | path

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

12

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_unwind_posix_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 …]
Dsanitizer_stacktrace_libcdep.cc47 void BufferedStackTrace::Unwind(u32 max_depth, uptr pc, uptr bp, void *context, in Unwind() argument
50 top_frame_bp = (max_depth > 0) ? bp : 0; in Unwind()
52 if (max_depth == 0) { in Unwind()
56 if (max_depth == 1) { in Unwind()
63 SlowUnwindStackWithContext(pc, context, max_depth); in Unwind()
65 SlowUnwindStack(pc, max_depth); in Unwind()
67 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth); in Unwind()
Dsanitizer_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);
Dsanitizer_stacktrace.cc71 uptr stack_bottom, u32 max_depth) { in FastUnwindStack() argument
72 CHECK_GE(max_depth, 2); in FastUnwindStack()
83 size < max_depth) { in FastUnwindStack()
Dsanitizer_win.cc544 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) { in SlowUnwindStack() argument
545 CHECK_GE(max_depth, 2); in SlowUnwindStack()
549 size = CaptureStackBackTrace(2, Min(max_depth, kStackTraceMax), in SlowUnwindStack()
560 u32 max_depth) { in SlowUnwindStackWithContext() argument
582 size < Min(max_depth, kStackTraceMax)) { in SlowUnwindStackWithContext()
/external/fio/engines/
Dsolarisaio.c19 unsigned int max_depth; member
136 if (sd->nr == sd->max_depth) in fio_solarisaio_queue()
189 unsigned int max_depth; in fio_solarisaio_init() local
191 max_depth = td->o.iodepth; in fio_solarisaio_init()
192 if (max_depth > MAXASYNCHIO) { in fio_solarisaio_init()
193 max_depth = MAXASYNCHIO; in fio_solarisaio_init()
195 max_depth); in fio_solarisaio_init()
199 sd->aio_events = malloc(max_depth * sizeof(struct io_u *)); in fio_solarisaio_init()
200 memset(sd->aio_events, 0, max_depth * sizeof(struct io_u *)); in fio_solarisaio_init()
201 sd->max_depth = max_depth; in fio_solarisaio_init()
/external/mesa3d/src/glsl/
Dlower_if_to_cond_assign.cpp54 ir_if_to_cond_assign_visitor(unsigned max_depth) in ir_if_to_cond_assign_visitor() argument
57 this->max_depth = max_depth; in ir_if_to_cond_assign_visitor()
73 unsigned max_depth; member in ir_if_to_cond_assign_visitor
80 lower_if_to_cond_assign(exec_list *instructions, unsigned max_depth) in lower_if_to_cond_assign() argument
82 if (max_depth == UINT_MAX) in lower_if_to_cond_assign()
85 ir_if_to_cond_assign_visitor v(max_depth); in lower_if_to_cond_assign()
170 if (this->depth-- <= this->max_depth) in visit_leave()
Dir_optimization.h60 bool lower_if_to_cond_assign(exec_list *instructions, unsigned max_depth = 0);
/external/e2fsprogs/lib/ext2fs/
Dextent.c59 int max_depth; member
170 for (i=1; i <= handle->max_depth; i++) { in ext2fs_extent_free()
241 handle->max_depth = ext2fs_le16_to_cpu(eh->eh_depth); in ext2fs_extent_open2()
244 retval = ext2fs_get_mem(((handle->max_depth+1) * in ext2fs_extent_open2()
248 (handle->max_depth+1) * sizeof(struct extent_path)); in ext2fs_extent_open2()
297 if (handle->level < handle->max_depth) { in ext2fs_extent_get()
328 if (handle->level < handle->max_depth) { in ext2fs_extent_get()
358 if ((handle->level < handle->max_depth) && in ext2fs_extent_get()
403 if (handle->level < handle->max_depth) in ext2fs_extent_get()
425 if (!path->curr ||(handle->level >= handle->max_depth)) in ext2fs_extent_get()
[all …]
/external/opencv/cv/src/
Dcvtemplmatch.cpp62 int depth, templ_depth, corr_depth, max_depth = CV_32F, in icvCrossCorr() local
97 max_depth = MAX( max_depth, templ_depth ); in icvCrossCorr()
98 max_depth = MAX( max_depth, depth ); in icvCrossCorr()
99 max_depth = MAX( max_depth, corr_depth ); in icvCrossCorr()
101 max_depth = CV_64F; in icvCrossCorr()
132 CV_CALL( dft_templ = cvCreateMat( dftsize.height*templ_cn, dftsize.width, max_depth )); in icvCrossCorr()
137 CV_CALL( dft_img[k] = cvCreateMat( dftsize.height, dftsize.width, max_depth )); in icvCrossCorr()
139 if( templ_cn > 1 && templ_depth != max_depth ) in icvCrossCorr()
142 if( cn > 1 && depth != max_depth ) in icvCrossCorr()
146 if( (corr_cn > 1 || cn > 1) && corr_depth != max_depth ) in icvCrossCorr()
[all …]
/external/compiler-rt/lib/asan/
Dasan_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()
/external/lldb/source/Interpreter/
DOptionGroupValueObjectDisplay.cpp90 max_depth = Args::StringToUInt32 (option_arg, UINT32_MAX, 0, &success); in SetOptionValue()
134 max_depth = UINT32_MAX; in OptionParsingStarting()
161 options.SetMaximumDepth(max_depth) in GetAsDumpOptions()
/external/lldb/include/lldb/Interpreter/
DOptionGroupValueObjectDisplay.h58 max_depth != UINT32_MAX || in AnyOptionWasSet()
75 uint32_t max_depth; variable
/external/webp/src/utils/
Dhuffman_encode.c245 int max_depth = bit_depths[0]; in GenerateOptimalTree() local
247 if (max_depth < bit_depths[j]) { in GenerateOptimalTree()
248 max_depth = bit_depths[j]; in GenerateOptimalTree()
251 if (max_depth <= tree_depth_limit) { in GenerateOptimalTree()
/external/linux-tools-perf/src/tools/perf/util/
Dcallchain.h35 u64 max_depth; member
96 root->max_depth = 0; in callchain_init()
Dcallchain.c387 if (cursor->nr > root->max_depth) in callchain_append()
388 root->max_depth = cursor->nr; in callchain_append()
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_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()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_cc.c53 ccv->max_depth = MAX2(ctx->Viewport.Near, ctx->Viewport.Far); in brw_upload_cc_vp()
56 ccv->max_depth = 1.0; in brw_upload_cc_vp()
/external/fio/t/
Dbtrace2fio.c23 static unsigned int max_depth = 256; variable
150 if (o->depth >= max_depth && !o->complete_seen) { in inflight_add()
152 o->depth = max_depth; in inflight_add()
996 log_err("fio: missing completion traces, depths capped at %u\n", max_depth); in output_p()
1026 log_err("\t-D\tCap queue depth at this value (def=%u)\n", max_depth); in usage()
1107 max_depth = atoi(optarg); in main()
/external/mesa3d/src/gtest/src/
Dgtest-internal-inl.h420 virtual String CurrentStackTrace(int max_depth, int skip_count) = 0;
435 virtual String CurrentStackTrace(int max_depth, int skip_count);
/external/google-breakpad/src/testing/gtest/src/
Dgtest-internal-inl.h427 virtual String CurrentStackTrace(int max_depth, int skip_count) = 0;
443 virtual String CurrentStackTrace(int max_depth, int skip_count)
/external/llvm/utils/unittest/googletest/src/
Dgtest-internal-inl.h419 virtual String CurrentStackTrace(int max_depth, int skip_count) = 0;
434 String CurrentStackTrace(int max_depth, int skip_count) override;
/external/protobuf/gtest/src/
Dgtest-internal-inl.h488 virtual String CurrentStackTrace(int max_depth, int skip_count) = 0;
503 virtual String CurrentStackTrace(int max_depth, int skip_count);
/external/blktrace/
Dblkparse.c58 unsigned int max_depth[2]; member
1502 if (pdi->cur_depth[w] > pdi->max_depth[w]) in dump_trace_pc()
1503 pdi->max_depth[w] = pdi->cur_depth[w]; in dump_trace_pc()
1564 if (pdi->cur_depth[w] > pdi->max_depth[w]) in dump_trace_fs()
1565 pdi->max_depth[w] = pdi->cur_depth[w]; in dump_trace_fs()
1666 fprintf(ofp, " Read depth: %'8u%8c\t", pdi->max_depth[0], ' '); in dump_io_stats()
1667 fprintf(ofp, " Write depth: %'8u\n", pdi->max_depth[1]); in dump_io_stats()
/external/v8/src/
Dheap-snapshot-generator.h121 const char* prefix, const char* edge_name, int max_depth, int indent);
178 void Print(int max_depth);

12