Home
last modified time | relevance | path

Searched refs:stack_depth (Results 1 – 25 of 37) sorted by relevance

12

/external/bcc/libbpf-tools/
Dksnoop.bpf.c32 __u8 stack_depth; member
69 __u8 stack_depth, last_stack_depth; in get_trace() local
87 stack_depth = func_stack->stack_depth; in get_trace()
88 if (stack_depth > FUNC_MAX_STACK_DEPTH) in get_trace()
97 if (stack_depth >= FUNC_MAX_STACK_DEPTH - 1) in get_trace()
102 last_stack_depth = stack_depth - 1; in get_trace()
108 func_stack->ips[stack_depth] = ip; in get_trace()
110 stack_depth = (stack_depth + 1) & FUNC_STACK_DEPTH_MASK; in get_trace()
111 func_stack->stack_depth = stack_depth; in get_trace()
119 if (stack_depth < FUNC_MAX_STACK_DEPTH) in get_trace()
[all …]
/external/perfetto/src/trace_processor/perfetto_sql/stdlib/sched/
Dthread_executing_span_with_slice.sql270 stack_depth LONG,
343 0 AS stack_depth,
355 1 AS stack_depth,
367 2 AS stack_depth,
379 3 AS stack_depth,
395 4 AS stack_depth,
411 anc.depth + 5 AS stack_depth,
425 self_slice_depth + 5 AS stack_depth,
431 stack_depth
441 max(stack_depth) + 1 AS start_depth
[all …]
/external/libconfig/lib/
Dscanctx.c55 for(i = 0; i < ctx->stack_depth; ++i) in libconfig_scanctx_cleanup()
79 if(ctx->stack_depth == MAX_INCLUDE_DEPTH) in libconfig_scanctx_push_include()
103 frame = &(ctx->include_stack[ctx->stack_depth]); in libconfig_scanctx_push_include()
112 ++(ctx->stack_depth); in libconfig_scanctx_push_include()
130 if(ctx->stack_depth == 0) in libconfig_scanctx_next_include_file()
133 include_frame = &(ctx->include_stack[ctx->stack_depth - 1]); in libconfig_scanctx_next_include_file()
162 if(ctx->stack_depth == 0) in libconfig_scanctx_pop_include()
165 frame = &(ctx->include_stack[--(ctx->stack_depth)]); in libconfig_scanctx_pop_include()
192 if(ctx->stack_depth > 0) in libconfig_scanctx_current_filename()
193 return(*(ctx->include_stack[ctx->stack_depth - 1].current_file)); in libconfig_scanctx_current_filename()
Dscanctx.h53 int stack_depth; member
/external/strace/
Dunwind-libunwind.c137 int stack_depth; in walk() local
147 for (stack_depth = 0; stack_depth < 256; ++stack_depth) { in walk()
154 if (stack_depth >= 256) in walk()
Dunwind-libdw.c135 int stack_depth; member
172 if (user_data->stack_depth-- == 0) in frame_callback()
192 .stack_depth = 256, in tcb_walk()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DMonitorInfoImpl.java40 int stack_depth; field in MonitorInfoImpl
47 this.stack_depth = dpth; in MonitorInfoImpl()
82 return stack_depth; in stackDepth()
DThreadReferenceImpl.java508 … MonitorInfo mon = new MonitorInfoImpl(vm, minfo[i].monitor, this, minfo[i].stack_depth); in ownedMonitorsAndFrames()
/external/libchrome/mojo/public/cpp/bindings/lib/
Dvalidation_context.cc18 int stack_depth) in ValidationContext() argument
28 stack_depth_(stack_depth) { in ValidationContext()
Dvalidation_context.h44 int stack_depth = 0); in COMPONENT_EXPORT()
/external/mesa3d/src/panfrost/vulkan/
Dpanvk_utrace_perfetto.cc137 struct panvk_utrace_perfetto_event *ev = &queue->stack[queue->stack_depth++]; in begin_event()
141 if (queue->stack_depth > PANVK_UTRACE_PERFETTO_STACK_DEPTH) { in begin_event()
159 if (!queue->stack_depth) in end_event()
162 struct panvk_utrace_perfetto_event *ev = &queue->stack[--queue->stack_depth]; in end_event()
163 if (queue->stack_depth >= PANVK_UTRACE_PERFETTO_STACK_DEPTH) in end_event()
Dpanvk_utrace_perfetto.h33 uint32_t stack_depth; member
/external/libchrome/base/debug/
Dactivity_tracker.cc268 size_t stack_depth; in FillFrom() local
269 const void* const* stack_addrs = stack_trace.Addresses(&stack_depth); in FillFrom()
272 for (i = 1; i < stack_depth && i < kActivityCallStackSize; ++i) { in FillFrom()
1046 size_t ThreadActivityTracker::SizeForStackDepth(int stack_depth) { in SizeForStackDepth() argument
1047 return static_cast<size_t>(stack_depth) * sizeof(Activity) + sizeof(Header); in SizeForStackDepth()
1258 int stack_depth, in CreateWithAllocator() argument
1262 new GlobalActivityTracker(std::move(allocator), stack_depth, process_id); in CreateWithAllocator()
1273 int stack_depth) { in CreateWithFile() argument
1289 stack_depth, 0); in CreateWithFile()
1298 int stack_depth, in CreateWithLocalMemory() argument
[all …]
Dactivity_tracker.h733 static size_t SizeForStackDepth(int stack_depth);
891 int stack_depth,
903 int stack_depth);
912 int stack_depth,
920 int stack_depth);
928 int stack_depth);
1171 int stack_depth,
/external/perfetto/include/perfetto/tracing/
Dtrack_event_state_tracker.h108 size_t stack_depth{};
/external/openthread/tools/spi-hdlc-adapter/
Dspi-hdlc-adapter.c320 int stack_depth, i; in signal_critical() local
339 stack_depth = backtrace(stack, AUTO_PRINT_BACKTRACE_STACK_DEPTH); in signal_critical()
354 backtrace_symbols_fd(stack, stack_depth, STDERR_FILENO); in signal_critical()
357 stack_symbols = backtrace_symbols(stack, stack_depth); in signal_critical()
361 for (i = 0; i != stack_depth; i++) in signal_critical()
/external/tensorflow/tensorflow/compiler/jit/
Dcompilability_check_util.cc384 auto stack_depth = stack_trace->size(); in IsCompilableNode() local
399 if (stack_depth == 1 && in IsCompilableNode()
532 if (!op_filter_.allow_resource_ops_in_called_functions && stack_depth > 1 && in IsCompilableNode()
/external/mesa3d/src/intel/blorp/
Dblorp_blit.c634 unsigned stack_depth = 0; in blorp_nir_combine_samples() local
636 assert(stack_depth == util_bitcount(i)); /* Loop invariant */ in blorp_nir_combine_samples()
639 assert(stack_depth < ARRAY_SIZE(texture_data)); in blorp_nir_combine_samples()
644 texture_data[stack_depth++] = blorp_nir_txf_ms(b, v, ms_pos, mcs, dst_type); in blorp_nir_combine_samples()
682 assert(stack_depth >= 2); in blorp_nir_combine_samples()
683 --stack_depth; in blorp_nir_combine_samples()
685 texture_data[stack_depth - 1] = in blorp_nir_combine_samples()
687 texture_data[stack_depth - 1], in blorp_nir_combine_samples()
688 texture_data[stack_depth], in blorp_nir_combine_samples()
694 assert(stack_depth == 1); in blorp_nir_combine_samples()
/external/bcc/tools/old/
Dmemleak.py106 max_stack_size = args.stack_depth + 2
/external/pdfium/third_party/abseil-cpp/absl/base/internal/
Dmalloc_hook.h153 const int stack_depth; member
/external/deqp/external/openglcts/modules/common/
DglcKHRDebugTests.cpp2120 GLint stack_depth = 0; in inspectGroupStack() local
2122 m_gl->getIntegerv(GL_DEBUG_GROUP_STACK_DEPTH, &stack_depth); in inspectGroupStack()
2125 if (expected_depth != (GLuint)stack_depth) in inspectGroupStack()
2127 … m_testCtx.getLog() << tcu::TestLog::Message << "State of DEBUG_GROUP_STACK_DEPTH: " << stack_depth in inspectGroupStack()
/external/perfetto/src/tracing/
Dtrack_event_state_tracker.cc151 parsed_event.stack_depth = depth; in ProcessTracePacket()
Dconsole_interceptor.cc218 for (size_t i = 0; i < event.stack_depth; i++) { in OnTrackEvent()
/external/oj-libjdwp/src/share/back/
DThreadReferenceImpl.c557 (void)outStream_writeInt(out,monitors[i].stack_depth); in ownedMonitorsWithStackDepth()
/external/oj-libjdwp/make/data/jdwp/
Djdwp.spec2033 (int stack_depth "Stack depth location where monitor was acquired")

12