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

1 2 3 4 5

  /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:__anon48143::StackCrawlState
46 if (state->frame_count >= state->max_depth)
  /external/elfutils/libdw/
dwarf_peel_type.c 51 #define MAX_DEPTH (8 * 8)
52 int max_depth = MAX_DEPTH; local
61 && max_depth-- > 0)
75 if (tag == DW_TAG_invalid || max_depth <= 0)
  /art/runtime/
backtrace_helper.h 28 BacktraceCollector(uintptr_t* out_frames, size_t max_depth, size_t skip_count)
29 : out_frames_(out_frames), max_depth_(max_depth), skip_count_(skip_count) {}
  /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/libchrome/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:__anon27353::StackCrawlState
50 if (state->frame_count >= state->max_depth)
stack_trace.h 116 // Writes at most |max_depth| frames (instruction pointers) into |out_trace|
121 size_t max_depth,
  /external/tensorflow/tensorflow/core/kernels/
eigen_spatial_convolutions.h 123 const StorageIndex max_depth = local
132 eigen_assert((max_depth - start_depth) % packet_size == 0);
135 for (; d < max_depth; d += packet_size) {
144 const StorageIndex vectorized_depth = max_depth - packet_size;
152 for (; d < max_depth; d++) {
171 const StorageIndex max_depth =
180 eigen_assert((max_depth - start_depth) % packet_size == 0);
183 for (; d < max_depth; d += packet_size) {
193 const StorageIndex max_vectorized_depth = max_depth - packet_size;
203 for (; d < max_depth; d++)
    [all...]
  /external/tensorflow/tensorflow/python/ops/ragged/
ragged_factory_ops.py 174 scalar_depth, max_depth = _find_scalar_and_max_depth(pylist)
176 if max_depth > scalar_depth:
185 (scalar_depth is None and expected_depth < max_depth)):
193 ((max_depth < 2) or
194 (inner_shape is not None and max_depth - len(inner_shape) < 2)))):
207 ragged_rank = max(1, max_depth - 1)
237 A tuple `(scalar_depth, max_depth)`. `scalar_depth` is the nesting
239 scalars. `max_depth` is the maximum depth of `pylist` (including
247 max_depth = 1
254 max_depth = max(max_depth, child_max_depth + 1
    [all...]
ragged_const_op_test.py 269 dict(pylist=9, scalar_depth=0, max_depth=0),
270 dict(pylist=[9], scalar_depth=1, max_depth=1),
271 dict(pylist=[1, 2, 3], scalar_depth=1, max_depth=1),
272 dict(pylist=[[1], [2]], scalar_depth=2, max_depth=2),
273 dict(pylist=[[[1], [2]], [[3]]], scalar_depth=3, max_depth=3),
274 dict(pylist=[], scalar_depth=None, max_depth=1),
275 dict(pylist=[[]], scalar_depth=None, max_depth=2),
276 dict(pylist=[[], [], []], scalar_depth=None, max_depth=2),
277 dict(pylist=[[[], []], [[], [[[]]]], []], scalar_depth=None, max_depth=5),
294 max_depth=None
    [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);
  /external/libchrome/base/json/
json_reader.cc 44 JSONReader::JSONReader(int options, int max_depth)
45 : parser_(new internal::JSONParser(options, max_depth)) {}
52 int max_depth) {
53 internal::JSONParser parser(options, max_depth);
json_reader.h 90 JSONReader(int options = JSON_PARSE_RFC, int max_depth = kStackMaxDepth);
100 int max_depth = kStackMaxDepth);
  /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:__anon33019::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);
229 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;
  /external/tensorflow/tensorflow/python/autograph/pyct/
inspect_utils.py 108 def getqualifiedname(namespace, object_, max_depth=5, visited=None):
115 attributes. The recursion depth is controlled by max_depth.
120 max_depth: Optional[int], a limit to the recursion depth when searching
148 namespace, parent, max_depth=0, visited=visited)
151 parent.__dict__, object_, max_depth=0, visited=visited)
156 if max_depth:
165 max_depth - 1, visited)
  /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...]
  /device/google/bonito/json-c/
json_tokener.h 82 int max_depth, depth, is_double, st_pos, char_offset; member in struct:json_tokener
  /device/google/crosshatch/json-c/
json_tokener.h 82 int max_depth, depth, is_double, st_pos, char_offset; member in struct:json_tokener

Completed in 767 milliseconds

1 2 3 4 5