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

1 2 3

  /external/ImageMagick/coders/
plasma.c 141 max_depth;
202 for (max_depth=0; i != 0; max_depth++)
209 max_depth);
139 max_depth; local
  /external/fio/engines/
solarisaio.c 19 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 = max_depth
    [all...]
  /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)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_unwind_linux_libcdep.cc 43 backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth);
99 u32 max_depth; member in struct:__sanitizer::UnwindTraceArg
104 CHECK_LT(arg->stack->size, arg->max_depth);
107 if (arg->stack->size == arg->max_depth) return UNWIND_STOP;
111 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) {
112 CHECK_GE(max_depth, 2);
114 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)};
131 u32 max_depth) {
132 CHECK_GE(max_depth, 2);
134 SlowUnwindStack(pc, max_depth);
    [all...]
  /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/opencv3/3rdparty/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/webp/src/utils/
huffman_encode.c 245 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/e2fsprogs/lib/ext2fs/
extent.c 59 int max_depth; member in struct:ext2_extent_handle
170 for (i=1; i <= handle->max_depth; i++) {
241 handle->max_depth = ext2fs_le16_to_cpu(eh->eh_depth);
244 retval = ext2fs_get_mem(((handle->max_depth+1) *
248 (handle->max_depth+1) * sizeof(struct extent_path));
297 if (handle->level < handle->max_depth) {
328 if (handle->level < handle->max_depth) {
358 if ((handle->level < handle->max_depth) &&
403 if (handle->level < handle->max_depth)
425 if (!path->curr ||(handle->level >= handle->max_depth))
    [all...]
ext2fs.h 407 int max_depth; member in struct:ext2_extent_info
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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)
  /art/runtime/
profiler.cc 61 uint32_t max_depth)
65 max_depth_(max_depth),
112 uint32_t max_depth = profile_options.GetMaxStackDepth(); local
113 BoundedStackVisitor bounded_stack_visitor(&stack, thread, max_depth);
  /external/fio/t/
btrace2fio.c 23 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);
  /external/opencv3/apps/traincascade/
boost.cpp 248 fs << CC_MAX_DEPTH << max_depth; local
266 node[CC_MAX_DEPTH] >> max_depth ; local
271 max_depth <= 0 || weak_count <= 0 )
286 cout << " [-maxDepth <max_depth_of_weak_tree = " << max_depth << ">]" << endl;
301 cout << "maxDepth: " << max_depth << endl;
332 max_depth = atoi( val.c_str() );
    [all...]
  /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/opencv/ml/include/
ml.h 708 int max_depth; member in struct:CvDTreeParams
717 CvDTreeParams() : max_categories(10), max_depth(INT_MAX), min_sample_count(10),
727 max_categories(_max_categories), max_depth(_max_depth),
    [all...]
  /prebuilts/ndk/current/platforms/android-12/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/current/platforms/android-12/arch-mips/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/current/platforms/android-12/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)
  /prebuilts/ndk/current/platforms/android-13/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/current/platforms/android-13/arch-mips/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 522 milliseconds

1 2 3