/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_stacktrace_libcdep.cc | 57 void BufferedStackTrace::Unwind(u32 max_depth, uptr pc, uptr bp, void *context, 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);
|
sanitizer_unwind_linux_libcdep.cc | 43 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) { 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); [all...] |
sanitizer_stacktrace.h | 97 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);
|
sanitizer_stacktrace.cc | 68 uptr stack_bottom, u32 max_depth) { 70 CHECK_GE(max_depth, 2); 81 size < max_depth) {
|
/external/v8/src/base/debug/ |
stack_trace_android.cc | 23 StackCrawlState(uintptr_t* frames, size_t max_depth) 26 max_depth(max_depth), 31 size_t max_depth; member in struct:__anon40776::StackCrawlState 46 if (state->frame_count >= state->max_depth)
|
/external/compiler-rt/lib/asan/ |
asan_stack.h | 34 void GetStackTraceWithPcBpAndContext(BufferedStackTrace *stack, uptr max_depth, 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/ |
stack_trace_android.cc | 27 StackCrawlState(uintptr_t* frames, size_t max_depth) 30 max_depth(max_depth), 35 size_t max_depth; member in struct:__anon25116::StackCrawlState 50 if (state->frame_count >= state->max_depth)
|
/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/brotli/c/enc/ |
bit_cost_inc.h | 73 size_t max_depth = 1; local 87 if (depth > max_depth) { 88 max_depth = depth; 120 bits += (double)(18 + 2 * max_depth);
|
/art/runtime/ |
backtrace_helper.h | 27 BacktraceCollector(uintptr_t* out_frames, size_t max_depth, size_t skip_count) 28 : out_frames_(out_frames), max_depth_(max_depth), skip_count_(skip_count) {}
|
/external/mesa3d/src/compiler/glsl/ |
lower_if_to_cond_assign.cpp | 30 * (controlled by max_depth) 65 unsigned max_depth, 70 this->max_depth = max_depth; 96 unsigned max_depth; member in class:__anon29206::ir_if_to_cond_assign_visitor 106 unsigned max_depth, unsigned min_branch_cost) 108 if (max_depth == UINT_MAX) 111 ir_if_to_cond_assign_visitor v(stage, max_depth, min_branch_cost); 230 bool must_lower = this->depth-- > this->max_depth;
|
/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/tensorflow/tensorflow/core/profiler/ |
tfprof_options.h | 30 "-max_depth", 109 Options(int max_depth, tensorflow::int64 min_bytes, 125 : max_depth(max_depth), 150 int max_depth; member in struct:tensorflow::tfprof::Options
|
/external/ltp/testcases/kernel/fs/iso9660/ |
isofs.sh | 48 max_depth=3 56 if [ "$cur_depth" -gt "$max_depth" ]; then
|
/external/pdfium/xfa/fxfa/fm2js/ |
cxfa_fmparser.h | 24 void SetMaxParseDepthForTest(unsigned long max_depth) { 25 m_max_parse_depth = max_depth;
|
/frameworks/base/tools/localedata/ |
extract_icu_data.py | 248 max_depth = 1 254 max_depth = max(max_depth, depth) 255 assert max_depth < 5 # Our algorithms assume small max_depth 257 print 'const size_t MAX_PARENT_DEPTH = %d;' % max_depth
|
/external/libchrome/base/debug/ |
stack_trace.cc | 226 size_t max_depth, 231 StackTrace stack(max_depth); 249 while (depth < max_depth) {
|
stack_trace.h | 127 // Writes at most |max_depth| frames (instruction pointers) into |out_trace| 132 size_t max_depth,
|
/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...] |
/external/e2fsprogs/lib/ext2fs/ |
extent.c | 62 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/tensorflow/tensorflow/core/kernels/ |
sparse_xent_op.h | 62 const Index max_depth) 66 max_depth_(max_depth) {} 102 const Index max_depth) 106 max_depth_(max_depth) {} 207 backprop.dimension(1) /* max_depth */); 217 backprop.dimension(1) /* max_depth */);
|
/hardware/qcom/msm8998/json-c/ |
json_tokener.h | 82 int max_depth, depth, is_double, st_pos, char_offset; member in struct:json_tokener
|
/external/tensorflow/tensorflow/core/profiler/g3doc/ |
command_line.md | 127 --max_depth=3 136 -max_depth 4 168 tfprof> code -max_depth 1000 -show_name_regexes .*model_analyzer.*py.* -select micros -account_type_regexes .* -order_by micros 197 tfprof> graph -start_name_regexes cost.* -max_depth 100 -min_micros 10000 -select micros -account_type_regexes .* 210 tfprof> scope -show_name_regexes unit_1_0.*gamma -select tensor_value -max_depth 5 225 tfprof> scope -max_depth 4 -select params 244 tfprof> scope -account_type_regexes VariableV2 -max_depth 4 -select params 272 tfprof> scope -select device,params -account_type_regexes .*ps.*task:0.* -max_depth 1 274 tfprof> scope -select device,params -account_type_regexes .*ps.*task:1.* -max_depth 1 308 tfprof> scope -account_type_regexes pool_logit -max_depth 4 -select param [all...] |
profile_time.md | 48 tfprof> code -show_name_regexes seq2seq_attention.* -max_depth 10 -select micros -order_by micros 75 tfprof> code -start_name_regexes .*_add_seq2seq.* -show_name_regexes seq2seq_attention.* -max_depth 10 -select micros -order_by micros 84 tfprof> code -max_depth 5 -select micros -order_by micros -start_name_regexes .*_add_seq2seq.* -min_micros 100000 157 graph -max_depth 10000000 -step 0 -account_type_regexes .*gpu:3.*,.*worker.*cpu:0.* -output timeline:outfile=<filename.json> 172 tfprof> scope -max_depth 30 -select micros -min_micros 100000 -order_by micros
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_stacktrace_test.cc | 24 bool TryFastUnwind(uptr max_depth) { 27 trace.Unwind(max_depth, start_pc, (uptr)&fake_stack[0], 0, fake_top,
|