/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_unwind_linux_libcdep.cc | 43 backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth); 104 u32 max_depth; member 109 CHECK_LT(arg->stack->size, arg->max_depth); in Unwind_Trace() 117 if (arg->stack->size == arg->max_depth) return UNWIND_STOP; in Unwind_Trace() 121 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) { in SlowUnwindStack() argument 122 CHECK_GE(max_depth, 2); in SlowUnwindStack() 124 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)}; in SlowUnwindStack() 141 u32 max_depth) { in SlowUnwindStackWithContext() argument 142 CHECK_GE(max_depth, 2); in SlowUnwindStackWithContext() 144 SlowUnwindStack(pc, max_depth); in SlowUnwindStackWithContext() [all …]
|
D | sanitizer_stacktrace_libcdep.cc | 57 void BufferedStackTrace::Unwind(u32 max_depth, uptr pc, uptr bp, void *context, in Unwind() argument 60 top_frame_bp = (max_depth > 0) ? bp : 0; in Unwind() 62 if (max_depth == 0) { in Unwind() 66 if (max_depth == 1) { in Unwind() 74 SlowUnwindStackWithContext(pc, context, max_depth); in Unwind() 76 SlowUnwindStack(pc, max_depth); in Unwind() 81 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth); in Unwind()
|
D | sanitizer_stacktrace.h | 97 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);
|
D | sanitizer_stacktrace.cc | 68 uptr stack_bottom, u32 max_depth) { in FastUnwindStack() argument 70 CHECK_GE(max_depth, 2); in FastUnwindStack() 81 size < max_depth) { in FastUnwindStack()
|
D | sanitizer_win.cc | 716 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) { in SlowUnwindStack() argument 717 CHECK_GE(max_depth, 2); in SlowUnwindStack() 721 size = CaptureStackBackTrace(2, Min(max_depth, kStackTraceMax), in SlowUnwindStack() 732 u32 max_depth) { in SlowUnwindStackWithContext() argument 754 size < Min(max_depth, kStackTraceMax)) { in SlowUnwindStackWithContext()
|
/external/fio/engines/ |
D | solarisaio.c | 19 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/ |
D | lower_if_to_cond_assign.cpp | 54 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()
|
D | ir_optimization.h | 60 bool lower_if_to_cond_assign(exec_list *instructions, unsigned max_depth = 0);
|
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/ |
D | namedict.py | 30 self.max_depth = 0 36 if depth > self.max_depth: 37 self.max_depth = depth 52 if depth > self.max_depth: 53 depth = self.max_depth
|
/external/v8/src/base/debug/ |
D | stack_trace_android.cc | 23 StackCrawlState(uintptr_t* frames, size_t max_depth) in StackCrawlState() 26 max_depth(max_depth), in StackCrawlState() 31 size_t max_depth; member 46 if (state->frame_count >= state->max_depth) in TraceStackFrame()
|
/external/libmojo/base/debug/ |
D | stack_trace_android.cc | 25 StackCrawlState(uintptr_t* frames, size_t max_depth) in StackCrawlState() 28 max_depth(max_depth), in StackCrawlState() 33 size_t max_depth; member 48 if (state->frame_count >= state->max_depth) in TraceStackFrame()
|
/external/opencv/cv/src/ |
D | cvtemplmatch.cpp | 62 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/e2fsprogs/lib/ext2fs/ |
D | extent.c | 62 int max_depth; member 273 handle->max_depth = ext2fs_le16_to_cpu(eh->eh_depth); in ext2fs_extent_open2() 276 handle->max_paths = handle->max_depth + 1; in ext2fs_extent_open2() 329 if (handle->level < handle->max_depth) { in ext2fs_extent_get() 360 if (handle->level < handle->max_depth) { in ext2fs_extent_get() 390 if ((handle->level < handle->max_depth) && in ext2fs_extent_get() 435 if (handle->level < handle->max_depth) in ext2fs_extent_get() 457 if (!path->curr ||(handle->level >= handle->max_depth)) in ext2fs_extent_get() 514 if (handle->level < handle->max_depth) in ext2fs_extent_get() 519 handle->level, handle->max_depth, in ext2fs_extent_get() [all …]
|
/external/compiler-rt/lib/asan/ |
D | asan_stack.h | 34 void GetStackTraceWithPcBpAndContext(BufferedStackTrace *stack, uptr max_depth, in GetStackTraceWithPcBpAndContext() argument 38 stack->Unwind(max_depth, pc, bp, context, 0, 0, fast); in GetStackTraceWithPcBpAndContext() 52 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, in GetStackTraceWithPcBpAndContext() 57 stack->Unwind(max_depth, pc, bp, context, 0, 0, false); in GetStackTraceWithPcBpAndContext()
|
/external/ImageMagick/coders/ |
D | plasma.c | 139 max_depth; in ReadPlasmaImage() local 200 for (max_depth=0; i != 0; max_depth++) in ReadPlasmaImage() 207 max_depth); in ReadPlasmaImage()
|
/external/ltp/testcases/kernel/fs/iso9660/ |
D | isofs.sh | 48 max_depth=3 56 if [ "$cur_depth" -gt "$max_depth" ]; then
|
/external/libchrome/base/debug/ |
D | stack_trace.cc | 89 size_t max_depth, in TraceStackFramePointers() argument 101 while (depth < max_depth) { in TraceStackFramePointers()
|
D | stack_trace.h | 114 size_t max_depth,
|
/external/webp/src/utils/ |
D | huffman_encode_utils.c | 245 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/ltp/testcases/kernel/fs/inode/ |
D | inode02.c | 85 int max_depth, max_breadth, file_length; variable 140 max_depth = 6; 151 if (sscanf(argv[i++], "%d", &max_depth) != 1) 428 } else if (level < max_depth) {
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | 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()
|
/external/protobuf/src/google/protobuf/util/internal/ |
D | protostream_objectsource.h | 116 void set_max_recursion_depth(int max_depth) { in set_max_recursion_depth() argument 117 max_recursion_depth_ = max_depth; in set_max_recursion_depth()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_cc.c | 53 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/ |
D | btrace2fio.c | 23 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/jsoncpp/devtools/ |
D | antglob.py | 101 max_depth = 25): argument
|