HomeSort by relevance Sort by last modified time
    Searched defs:max_depth (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_android-inl.h 56 int max_depth; member in struct:stack_crawl_state_t
60 stack_crawl_state_t(uintptr_t* frames, int max_depth, int skip_count)
63 max_depth(max_depth),
94 if (state->frame_count >= state->max_depth)
113 // int max_depth: the size of the result (and sizes) array(s)
118 reinterpret_cast<uintptr_t*>(result), max_depth, skip_count); variable
heap-checker.cc 406 // if the address occurs at 'max_depth' or less in the stack trace.
409 int max_depth; // the maximal stack depth to disable at member in struct:HeapLeakChecker::RangeValue
754 iter->second.max_depth > depth) {
    [all...]
  /external/chromium_org/base/debug/
stack_trace_android.cc 17 StackCrawlState(uintptr_t* frames, size_t max_depth)
20 max_depth(max_depth),
25 size_t max_depth; member in struct:__anon6112::StackCrawlState
50 if (state->frame_count >= state->max_depth)
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_if_to_cond_assign.cpp 54 ir_if_to_cond_assign_visitor(unsigned max_depth)
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)
82 if (max_depth == UINT_MAX)
85 ir_if_to_cond_assign_visitor v(max_depth);
170 if (this->depth-- <= this->max_depth)
  /external/mesa3d/src/glsl/
lower_if_to_cond_assign.cpp 54 ir_if_to_cond_assign_visitor(unsigned max_depth)
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)
82 if (max_depth == UINT_MAX)
85 ir_if_to_cond_assign_visitor v(max_depth);
170 if (this->depth-- <= this->max_depth)
  /bionic/libc/bionic/
debug_stacktrace.cpp 75 size_t max_depth; member in struct:stack_crawl_state_t
78 stack_crawl_state_t(uintptr_t* frames, size_t max_depth)
79 : frames(frames), frame_count(0), max_depth(max_depth), have_skipped_self(false) {
113 return (state->frame_count >= state->max_depth) ? _URC_END_OF_STACK : _URC_NO_REASON;
116 __LIBC_HIDDEN__ int get_backtrace(uintptr_t* frames, size_t max_depth) {
117 stack_crawl_state_t state(frames, max_depth);
  /external/chromium_org/third_party/libwebp/utils/
huffman_encode.c 264 int max_depth = bit_depths[0]; local
266 if (max_depth < bit_depths[j]) {
267 max_depth = bit_depths[j];
270 if (max_depth <= tree_depth_limit) {
  /external/linux-tools-perf/util/
callchain.h 37 u64 max_depth; member in struct:callchain_root
89 root->max_depth = 0;
  /external/opencv/cv/src/
cvfilter.cpp 104 int max_depth = MAX(CV_MAT_DEPTH(src_type), CV_MAT_DEPTH(dst_type)); local
106 max_depth = MAX( max_depth, min_depth );
107 work_type = CV_MAKETYPE( max_depth, max_cn );
    [all...]
cvtemplmatch.cpp 62 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/webp/src/utils/
huffman_encode.c 264 int max_depth = bit_depths[0]; local
266 if (max_depth < bit_depths[j]) {
267 max_depth = bit_depths[j];
270 if (max_depth <= tree_depth_limit) {
  /system/core/libcorkscrew/
backtrace.c 74 size_t max_depth; member in struct:__anon62703
89 state->ignore_depth, state->max_depth,
92 return state->returned_frames < state->max_depth ? _URC_NO_REASON : _URC_END_OF_STACK;
95 ssize_t unwind_backtrace(backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
103 state.max_depth = max_depth;
129 size_t max_depth; member in struct:__anon62704
140 g_unwind_signal_state.max_depth);
150 size_t ignore_depth, size_t max_depth) {
152 return unwind_backtrace(backtrace, ignore_depth + 1, max_depth);
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/JSON/
backportPP.pm 132 max_depth => 512,
180 sub max_depth { subroutine
182 $_[0]->{max_depth} = $max;
187 sub get_max_depth { $_[0]->{max_depth}; }
246 my $max_depth;
281 ($max_depth, $indent_length) = @{$self}{qw/max_depth indent_length/};
362 encode_error("json text or perl structure exceeds maximum nesting level (max_depth set too low?)")
363 if (++$depth > $max_depth);
386 encode_error("json text or perl structure exceeds maximum nesting level (max_depth set too low?)"
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/lib/JSON/
backportPP.pm 132 max_depth => 512,
180 sub max_depth { subroutine
182 $_[0]->{max_depth} = $max;
187 sub get_max_depth { $_[0]->{max_depth}; }
246 my $max_depth;
281 ($max_depth, $indent_length) = @{$self}{qw/max_depth indent_length/};
362 encode_error("json text or perl structure exceeds maximum nesting level (max_depth set too low?)")
363 if (++$depth > $max_depth);
386 encode_error("json text or perl structure exceeds maximum nesting level (max_depth set too low?)"
    [all...]
  /external/chromium_org/third_party/JSON/out/lib/perl5/JSON/
backportPP.pm 132 max_depth => 512,
180 sub max_depth { subroutine
182 $_[0]->{max_depth} = $max;
187 sub get_max_depth { $_[0]->{max_depth}; }
246 my $max_depth;
281 ($max_depth, $indent_length) = @{$self}{qw/max_depth indent_length/};
362 encode_error("json text or perl structure exceeds maximum nesting level (max_depth set too low?)")
363 if (++$depth > $max_depth);
386 encode_error("json text or perl structure exceeds maximum nesting level (max_depth set too low?)"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 349 def max_depth(b, d): function in function:PyFlowGraph.computeStackDepth
356 return max([max_depth(c, d) for c in children])
359 return max_depth(self.exit, d)
363 self.stacksize = max_depth(self.entry, 0)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 349 def max_depth(b, d): function in function:PyFlowGraph.computeStackDepth
356 return max([max_depth(c, d) for c in children])
359 return max_depth(self.exit, d)
363 self.stacksize = max_depth(self.entry, 0)
  /system/core/libcorkscrew/arch-x86/
backtrace-x86.c 99 size_t max_depth; member in struct:__anon62696
762 size_t ignore_depth, size_t max_depth) {
772 for (size_t index = 0; returned_frames < max_depth; index++) {
788 backtrace, ignore_depth, max_depth,
803 backtrace, ignore_depth, max_depth,
823 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
840 &state, backtrace, ignore_depth, max_depth);
844 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
    [all...]
  /external/e2fsprogs/lib/ext2fs/
extent.c 58 int max_depth; member in struct:ext2_extent_handle
171 for (i=1; i <= handle->max_depth; i++) {
246 handle->max_depth = ext2fs_le16_to_cpu(eh->eh_depth);
249 retval = ext2fs_get_mem(((handle->max_depth+1) *
253 (handle->max_depth+1) * sizeof(struct extent_path));
303 if (handle->level < handle->max_depth) {
334 if (handle->level < handle->max_depth) {
364 if ((handle->level < handle->max_depth) &&
407 if (handle->level < handle->max_depth)
429 if (!path->curr ||(handle->level >= handle->max_depth))
    [all...]
ext2fs.h 373 int max_depth; member in struct:ext2_extent_info
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
heap-checker.cc 406 // if the address occurs at 'max_depth' or less in the stack trace.
409 int max_depth; // the maximal stack depth to disable at member in struct:HeapLeakChecker::RangeValue
754 iter->second.max_depth > depth) {
    [all...]
  /bionic/libc/kernel/common/linux/
blkdev.h 276 int max_depth; member in struct:blk_queue_tag
437 #define blk_queue_tag_queue(q) ((q)->queue_tags->busy < (q)->queue_tags->max_depth)
  /development/ndk/platforms/android-3/include/linux/
blkdev.h 275 int max_depth; member in struct:blk_queue_tag
441 #define blk_queue_tag_queue(q) ((q)->queue_tags->busy < (q)->queue_tags->max_depth)
  /external/blktrace/
blkparse.c 58 unsigned int max_depth[2]; member in struct:per_dev_info
1502 if (pdi->cur_depth[w] > pdi->max_depth[w])
1503 pdi->max_depth[w] = pdi->cur_depth[w];
    [all...]
  /external/kernel-headers/original/linux/
blkdev.h 311 int max_depth; /* what we will send to device */ member in struct:blk_queue_tag
739 #define blk_queue_tag_queue(q) ((q)->queue_tags->busy < (q)->queue_tags->max_depth)

Completed in 687 milliseconds

1 2 3