Searched defs:max_depth (Results 1 - 25 of 45) sorted by relevance

12

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_with_context.cc51 int GetStackFramesWithContext(void** pcs, int* sizes, int max_depth, argument
53 return GetStackFrames(pcs, sizes, max_depth, skip_count + 1);
57 int GetStackTraceWithContext(void** result, int max_depth, argument
59 return GetStackTrace(result, max_depth, skip_count + 1);
H A Dstacktrace_win32-inl.h73 PERFTOOLS_DLL_DECL int GetStackTrace(void** result, int max_depth, argument
79 return (int)RtlCaptureStackBackTrace_fn(skip_count + 2, max_depth,
85 int /* max_depth */,
H A Dstacktrace_android-inl.h56 int max_depth; member in struct:stack_crawl_state_t
60 stack_crawl_state_t(uintptr_t* frames, int max_depth, int skip_count) argument
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
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_win32-inl.h73 PERFTOOLS_DLL_DECL int GetStackTrace(void** result, int max_depth, argument
79 return (int)RtlCaptureStackBackTrace_fn(skip_count + 2, max_depth,
85 int /* max_depth */,
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dondemand_supplier.cc48 size_t max_depth = std::min( local
52 for (size_t depth = 0; depth <= max_depth; ++depth) {
H A Dregion_data_constants.cc1410 std::map<std::string, size_t> max_depth; local
1430 max_depth.insert(std::make_pair(it->first, depth - 1));
1432 return max_depth;
H A Dpreload_supplier.cc347 size_t max_depth = std::min( local
351 for (size_t depth = 0; depth <= max_depth; ++depth) {
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stacktrace_test.cc23 bool TryFastUnwind(uptr max_depth) { argument
26 trace.Unwind(max_depth, start_pc, (uptr)&fake_stack[0], 0, fake_top,
/external/lldb/include/lldb/Interpreter/
H A DOptionGroupValueObjectDisplay.h58 max_depth != UINT32_MAX ||
75 uint32_t max_depth; member in class:lldb_private::OptionGroupValueObjectDisplay
/external/compiler-rt/lib/asan/
H A Dasan_stack.h28 void GetStackTraceWithPcBpAndContext(StackTrace *stack, uptr max_depth, uptr pc, argument
31 stack->Unwind(max_depth, pc, bp, context, 0, 0, fast);
40 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast);
43 stack->Unwind(max_depth, pc, bp, context, 0, 0, false);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.cc41 uptr max_depth) {
42 CHECK_GE(max_depth, 2);
53 size < max_depth) {
39 FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom, uptr max_depth) argument
H A Dsanitizer_stacktrace_libcdep.cc74 void StackTrace::Unwind(uptr max_depth, uptr pc, uptr bp, void *context, argument
77 top_frame_bp = (max_depth > 0) ? bp : 0;
78 // Avoid doing any work for small max_depth.
79 if (max_depth == 0) {
83 if (max_depth == 1) {
90 SlowUnwindStackWithContext(pc, context, max_depth);
92 SlowUnwindStack(pc, max_depth);
94 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth);
/external/chromium_org/base/debug/
H A Dstack_trace_android.cc23 StackCrawlState(uintptr_t* frames, size_t max_depth) argument
26 max_depth(max_depth),
31 size_t max_depth; member in struct:__anon2229::StackCrawlState
46 if (state->frame_count >= state->max_depth)
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dbit_cost.h46 int max_depth = 1; local
53 if (value > max_depth) {
54 max_depth = value;
100 int bits = 18 + 2 * max_depth; // huffman tree of huffman tree cost
/external/chromium_org/tools/gn/
H A Dgenerate_test_gn_data.cc76 int max_depth,
100 if (repo_path.size() < (size_t)max_depth) {
113 if (repo_path.size() < (size_t)max_depth) {
118 WriteLevel(cur, spread, max_depth, targets_per_level, files_per_target);
74 WriteLevel(const std::vector<int>& repo_path, int spread, int max_depth, int targets_per_level, int files_per_target) argument
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_if_to_cond_assign.cpp54 ir_if_to_cond_assign_visitor(unsigned max_depth) argument
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) argument
82 if (max_depth == UINT_MAX)
85 ir_if_to_cond_assign_visitor v(max_depth);
170 if (this->depth-- <= this->max_depth)
/external/fio/engines/
H A Dsolarisaio.c19 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
[all...]
/external/mesa3d/src/glsl/
H A Dlower_if_to_cond_assign.cpp54 ir_if_to_cond_assign_visitor(unsigned max_depth) argument
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) argument
82 if (max_depth == UINT_MAX)
85 ir_if_to_cond_assign_visitor v(max_depth);
170 if (this->depth-- <= this->max_depth)
/external/oprofile/libop/
H A Dop_alloc_counter.c102 * @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, argument
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/chromium_org/third_party/libwebp/utils/
H A Dhuffman_encode.c245 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/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
H A Dmalloc_hook.h260 inline static int GetCallerStackTrace(void** result, int max_depth, argument
262 return MallocHook_GetCallerStackTrace(result, max_depth, skip_count);
/external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/
H A Dmalloc_hook.h260 inline static int GetCallerStackTrace(void** result, int max_depth, argument
262 return MallocHook_GetCallerStackTrace(result, max_depth, skip_count);
/external/chromium_org/tools/android/heap_profiler/
H A Dheap_profiler_hooks_android.c21 uint32_t get_backtrace(uintptr_t* frames, uint32_t max_depth);
187 uint32_t max_depth; member in struct:__anon16418
201 return (state->frame_count >= state->max_depth) ?
205 static uint32_t get_backtrace(uintptr_t* frames, uint32_t max_depth) { argument
206 stack_crawl_state_t state = {.frames = frames, .max_depth = max_depth};
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcallchain.h35 u64 max_depth; member in struct:callchain_root
100 root->max_depth = 0;
/external/webp/src/utils/
H A Dhuffman_encode.c245 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) {

Completed in 636 milliseconds

12