/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_unwind_posix_libcdep.cc | 43 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 …]
|
D | sanitizer_stacktrace_libcdep.cc | 47 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()
|
D | sanitizer_stacktrace.h | 99 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);
|
D | sanitizer_stacktrace.cc | 71 uptr stack_bottom, u32 max_depth) { in FastUnwindStack() argument 72 CHECK_GE(max_depth, 2); in FastUnwindStack() 83 size < max_depth) { in FastUnwindStack()
|
D | sanitizer_win.cc | 544 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/ |
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/e2fsprogs/lib/ext2fs/ |
D | extent.c | 59 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/ |
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/compiler-rt/lib/asan/ |
D | asan_stack.h | 33 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/ |
D | OptionGroupValueObjectDisplay.cpp | 90 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/ |
D | OptionGroupValueObjectDisplay.h | 58 max_depth != UINT32_MAX || in AnyOptionWasSet() 75 uint32_t max_depth; variable
|
/external/webp/src/utils/ |
D | huffman_encode.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/linux-tools-perf/src/tools/perf/util/ |
D | callchain.h | 35 u64 max_depth; member 96 root->max_depth = 0; in callchain_init()
|
D | callchain.c | 387 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/ |
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/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/mesa3d/src/gtest/src/ |
D | gtest-internal-inl.h | 420 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/ |
D | gtest-internal-inl.h | 427 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/ |
D | gtest-internal-inl.h | 419 virtual String CurrentStackTrace(int max_depth, int skip_count) = 0; 434 String CurrentStackTrace(int max_depth, int skip_count) override;
|
/external/protobuf/gtest/src/ |
D | gtest-internal-inl.h | 488 virtual String CurrentStackTrace(int max_depth, int skip_count) = 0; 503 virtual String CurrentStackTrace(int max_depth, int skip_count);
|
/external/blktrace/ |
D | blkparse.c | 58 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/ |
D | heap-snapshot-generator.h | 121 const char* prefix, const char* edge_name, int max_depth, int indent); 178 void Print(int max_depth);
|