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

123

/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
H A Dnamedict.py23 @ivar max_depth: the maximum depth of the keys that have ever been
25 @type max_depth: int
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/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_libcdep.cc57 void BufferedStackTrace::Unwind(u32 max_depth, uptr pc, uptr bp, void *context, argument
60 top_frame_bp = (max_depth > 0) ? bp : 0;
61 // Avoid doing any work for small max_depth.
62 if (max_depth == 0) {
66 if (max_depth == 1) {
74 SlowUnwindStackWithContext(pc, context, max_depth);
76 SlowUnwindStack(pc, max_depth);
81 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth);
H A Dsanitizer_unwind_linux_libcdep.cc43 backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth);
104 u32 max_depth; member in struct:__sanitizer::UnwindTraceArg
109 CHECK_LT(arg->stack->size, arg->max_depth);
117 if (arg->stack->size == arg->max_depth) return UNWIND_STOP;
121 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) { argument
122 CHECK_GE(max_depth, 2);
124 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)};
141 u32 max_depth) {
142 CHECK_GE(max_depth, 2);
144 SlowUnwindStack(pc, max_depth);
140 SlowUnwindStackWithContext(uptr pc, void *context, u32 max_depth) argument
[all...]
H A Dsanitizer_stacktrace.h97 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);
H A Dsanitizer_stacktrace.cc68 uptr stack_bottom, u32 max_depth) {
70 CHECK_GE(max_depth, 2);
81 size < max_depth) {
67 FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom, u32 max_depth) argument
H A Dsanitizer_win.cc716 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) { argument
717 CHECK_GE(max_depth, 2);
721 size = CaptureStackBackTrace(2, Min(max_depth, kStackTraceMax),
732 u32 max_depth) {
754 size < Min(max_depth, kStackTraceMax)) {
731 SlowUnwindStackWithContext(uptr pc, void *context, u32 max_depth) argument
/external/v8/src/base/debug/
H A Dstack_trace_android.cc23 StackCrawlState(uintptr_t* frames, size_t max_depth) argument
26 max_depth(max_depth),
31 size_t max_depth; member in struct:__anon21440::StackCrawlState
46 if (state->frame_count >= state->max_depth)
/external/mesa3d/src/glsl/
H A Dlower_if_to_cond_assign.cpp54 ir_if_to_cond_assign_visitor(unsigned max_depth) argument
57 this->max_depth = max_depth;
73 unsigned max_depth; member in class:ir_if_to_cond_assign_visitor
80 lower_if_to_cond_assign(exec_list *instructions, unsigned max_depth) argument
82 if (max_depth == UINT_MAX)
85 ir_if_to_cond_assign_visitor v(max_depth);
170 if (this->depth-- <= this->max_depth)
H A Dir_optimization.h60 bool lower_if_to_cond_assign(exec_list *instructions, unsigned max_depth = 0);
/external/compiler-rt/lib/asan/
H A Dasan_stack.h34 void GetStackTraceWithPcBpAndContext(BufferedStackTrace *stack, uptr max_depth, argument
38 stack->Unwind(max_depth, pc, bp, context, 0, 0, fast);
52 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom,
57 stack->Unwind(max_depth, pc, bp, context, 0, 0, false);
/external/libmojo/base/debug/
H A Dstack_trace_android.cc25 StackCrawlState(uintptr_t* frames, size_t max_depth) argument
28 max_depth(max_depth),
33 size_t max_depth; member in struct:__anon10819::StackCrawlState
48 if (state->frame_count >= state->max_depth)
/external/fio/engines/
H A Dsolarisaio.c19 unsigned int max_depth; member in struct:solarisaio_data
136 if (sd->nr == sd->max_depth)
189 unsigned int max_depth; local
191 max_depth = td->o.iodepth;
192 if (max_depth > MAXASYNCHIO) {
193 max_depth = MAXASYNCHIO;
195 max_depth);
199 sd->aio_events = malloc(max_depth * sizeof(struct io_u *));
200 memset(sd->aio_events, 0, max_depth * sizeof(struct io_u *));
201 sd->max_depth
[all...]
/external/ImageMagick/coders/
H A Dplasma.c141 max_depth;
202 for (max_depth=0; i != 0; max_depth++)
209 max_depth);
139 max_depth; local
/external/libchrome/base/debug/
H A Dstack_trace.cc89 size_t max_depth,
101 while (depth < max_depth) {
88 TraceStackFramePointers(const void** out_trace, size_t max_depth, size_t skip_initial) argument
H A Dstack_trace.h109 // Writes at most |max_depth| frames (instruction pointers) into |out_trace|
114 size_t max_depth,
/external/ltp/testcases/kernel/fs/iso9660/
H A Disofs.sh48 max_depth=3
56 if [ "$cur_depth" -gt "$max_depth" ]; then
/external/opencv/cv/src/
H A Dcvtemplmatch.cpp62 int depth, templ_depth, corr_depth, max_depth = CV_32F, local
97 max_depth = MAX( max_depth, templ_depth );
98 max_depth = MAX( max_depth, depth );
99 max_depth = MAX( max_depth, corr_depth );
101 max_depth = CV_64F;
132 CV_CALL( dft_templ = cvCreateMat( dftsize.height*templ_cn, dftsize.width, max_depth ));
137 CV_CALL( dft_img[k] = cvCreateMat( dftsize.height, dftsize.width, max_depth ));
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dextent.c62 int max_depth; member in struct:ext2_extent_handle
273 handle->max_depth = ext2fs_le16_to_cpu(eh->eh_depth);
276 handle->max_paths = handle->max_depth + 1;
329 if (handle->level < handle->max_depth) {
360 if (handle->level < handle->max_depth) {
390 if ((handle->level < handle->max_depth) &&
435 if (handle->level < handle->max_depth)
457 if (!path->curr ||(handle->level >= handle->max_depth))
514 if (handle->level < handle->max_depth)
519 handle->level, handle->max_depth,
[all...]
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stacktrace_test.cc24 bool TryFastUnwind(uptr max_depth) { argument
27 trace.Unwind(max_depth, start_pc, (uptr)&fake_stack[0], 0, fake_top,
/external/webp/src/utils/
H A Dhuffman_encode_utils.c245 int max_depth = bit_depths[0]; local
247 if (max_depth < bit_depths[j]) {
248 max_depth = bit_depths[j];
251 if (max_depth <= tree_depth_limit) {
/external/ltp/testcases/kernel/fs/inode/
H A Dinode02.c85 int max_depth, max_breadth, file_length; variable
140 max_depth = 6;
147 ("\tinode02 max_depth max_breadth file_length #children\n\tdefault: inode02 6 5 8 5\n");
151 if (sscanf(argv[i++], "%d", &max_depth) != 1)
223 "Bad argument - %s - could not parse as number.\n\tinode02 [max_depth] [max_breadth] [file_length] [#children]\n\tdefault: inode02 6 5 8 5\n",
428 } else if (level < max_depth) {
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_cc.c53 ccv->max_depth = MAX2(ctx->Viewport.Near, ctx->Viewport.Far);
56 ccv->max_depth = 1.0;
/external/protobuf/src/google/protobuf/util/internal/
H A Dprotostream_objectsource.h116 void set_max_recursion_depth(int max_depth) { argument
117 max_recursion_depth_ = max_depth;
/external/jsoncpp/devtools/
H A Dantglob.py101 max_depth = 25):
/external/fio/t/
H A Dbtrace2fio.c23 static unsigned int max_depth = 256; variable
150 if (o->depth >= max_depth && !o->complete_seen) {
152 o->depth = max_depth;
996 log_err("fio: missing completion traces, depths capped at %u\n", max_depth);
1026 log_err("\t-D\tCap queue depth at this value (def=%u)\n", max_depth);
1107 max_depth = atoi(optarg);

Completed in 737 milliseconds

123