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

1 2 3 4 5

  /system/core/libcorkscrew/
test.c 7 const size_t MAX_DEPTH = 32;
8 backtrace_frame_t* frames = (backtrace_frame_t*) malloc(sizeof(backtrace_frame_t) * MAX_DEPTH);
9 ssize_t frame_count = unwind_backtrace(frames, 0, MAX_DEPTH);
backtrace-arch.h 36 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth);
39 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth);
backtrace-helper.c 25 size_t ignore_depth, size_t max_depth,
31 if (*returned_frames >= max_depth) {
backtrace.c 68 size_t max_depth; member in struct:__anon44099
83 state->ignore_depth, state->max_depth,
86 return state->returned_frames < state->max_depth ? _URC_NO_REASON : _URC_END_OF_STACK;
89 ssize_t unwind_backtrace(backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
97 state.max_depth = max_depth;
123 size_t max_depth; member in struct:__anon44100
134 g_unwind_signal_state.max_depth);
144 size_t ignore_depth, size_t max_depth) {
146 return unwind_backtrace(backtrace, ignore_depth + 1, max_depth);
    [all...]
backtrace-helper.h 36 size_t ignore_depth, size_t max_depth,
  /system/core/libcorkscrew/arch-mips/
backtrace-mips.c 75 size_t ignore_depth, size_t max_depth) {
79 for (size_t index = 0; returned_frames < max_depth; index++) {
88 max_depth, &ignored_frames, &returned_frames);
157 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
165 ALOGV("unwind_backtrace_signal_arch: ignore_depth=%d max_depth=%d pc=0x%08x sp=0x%08x ra=0x%08x\n",
166 ignore_depth, max_depth, state.pc, state.sp, state.ra);
171 &state, backtrace, ignore_depth, max_depth);
175 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
187 ALOGV("unwind_backtrace_ptrace_arch: ignore_depth=%d max_depth=%d pc=0x%08x sp=0x%08x ra=0x%08x\n",
188 ignore_depth, max_depth, state.pc, state.sp, state.ra)
    [all...]
  /system/core/libcorkscrew/arch-x86/
backtrace-x86.c 98 size_t ignore_depth, size_t max_depth) {
102 for (size_t index = 0; state->ebp && returned_frames < max_depth; index++) {
105 backtrace, ignore_depth, max_depth,
127 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
138 &state, backtrace, ignore_depth, max_depth);
142 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
156 &state, backtrace, ignore_depth, max_depth);
  /external/mesa3d/src/glsl/
lower_if_to_cond_assign.cpp 53 ir_if_to_cond_assign_visitor(unsigned max_depth)
56 this->max_depth = max_depth;
64 unsigned max_depth; member in class:ir_if_to_cond_assign_visitor
69 lower_if_to_cond_assign(exec_list *instructions, unsigned max_depth)
71 ir_if_to_cond_assign_visitor v(max_depth);
152 if (this->depth <= this->max_depth)
ir_optimization.h 56 bool lower_if_to_cond_assign(exec_list *instructions, unsigned max_depth = 0);
  /dalvik/tests/074-gc-thrash/src/
Main.java 195 private static final int MAX_DEPTH = 61;
197 private static String strong[] = new String[MAX_DEPTH];
198 private static WeakReference weak[] = new WeakReference[MAX_DEPTH];
209 iter += MAX_DEPTH;
222 for (int i = 0; i < MAX_DEPTH; i++) {
232 for (int i = 0; i < MAX_DEPTH; i++)
237 for (int i = 0; i < MAX_DEPTH; i++) {
244 System.out.println("Deep: iters=" + iter / MAX_DEPTH);
296 if (depth+1 < MAX_DEPTH)
  /frameworks/native/include/utils/
CallStack.h 34 MAX_DEPTH = 31
54 void update(int32_t ignoreDepth=1, int32_t maxDepth=MAX_DEPTH);
66 backtrace_frame_t mStack[MAX_DEPTH];
  /external/oprofile/libop/
op_alloc_counter.c 102 * @param max_depth number of entry in array ctr_arc == depth of tree
126 allocate_counter(counter_arc_head const * ctr_arc, int max_depth, int depth,
131 if (depth == max_depth)
137 if (allocate_counter(ctr_arc, max_depth, depth + 1,
150 if (allocate_counter(ctr_arc, max_depth, depth + 1,
  /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...]
  /system/core/include/corkscrew/
backtrace.h 58 ssize_t unwind_backtrace(backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth);
68 size_t ignore_depth, size_t max_depth);
76 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth);
  /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/
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...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
TooManyViewsDetector.java 67 private static final int MAX_DEPTH;
94 MAX_DEPTH = maxDepth;
126 if (mDepth == MAX_DEPTH && !mWarnedAboutDepth) {
133 context.file.getName(), MAX_DEPTH);
  /frameworks/native/libs/utils/
CallStack.cpp 92 if (maxDepth > MAX_DEPTH) {
93 maxDepth = MAX_DEPTH;
  /system/core/libcorkscrew/arch-arm/
backtrace-arm.c 489 size_t ignore_depth, size_t max_depth) {
493 for (size_t index = 0; returned_frames < max_depth; index++) {
497 backtrace, ignore_depth, max_depth, &ignored_frames, &returned_frames);
543 if (returned_frames < max_depth
550 backtrace, ignore_depth, max_depth, &ignored_frames, &returned_frames);
557 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
582 backtrace, ignore_depth, max_depth);
586 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
600 backtrace, ignore_depth, max_depth);
  /external/webp/src/utils/
huffman_encode.c 263 int max_depth = bit_depths[0]; local
265 if (max_depth < bit_depths[j]) {
266 max_depth = bit_depths[j];
269 if (max_depth <= tree_depth_limit) {
  /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)
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/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)
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/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)
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/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)
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/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)

Completed in 2732 milliseconds

1 2 3 4 5