Home
last modified time | relevance | path

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

12

/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/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/v8/src/wasm/
Dfunction-body-decoder-impl.h506 uint32_t stack_depth; // stack height at the beginning of the construct. member
515 ControlBase(ControlKind kind, uint32_t stack_depth, const byte* pc) in ControlBase()
516 : kind(kind), stack_depth(stack_depth), pc(pc) {} in ControlBase()
546 static ControlBase Block(const byte* pc, uint32_t stack_depth) { in Block()
547 return {kControlBlock, stack_depth, pc}; in Block()
550 static ControlBase If(const byte* pc, uint32_t stack_depth) { in If()
551 return {kControlIf, stack_depth, pc}; in If()
554 static ControlBase Loop(const byte* pc, uint32_t stack_depth) { in Loop()
555 return {kControlLoop, stack_depth, pc}; in Loop()
558 static ControlBase Try(const byte* pc, uint32_t stack_depth) { in Try()
[all …]
Dwasm-debug.cc273 int stack_depth = thread->GetFrameCount(); in ContinueExecution() local
274 if (stack_depth == last_step_stack_depth_) return thread->Step(); in ContinueExecution()
275 thread->AddBreakFlags(stack_depth > last_step_stack_depth_ in ContinueExecution()
Dfunction-body-decoder.cc611 decoder->stack_size() - decoder->control_at(0)->stack_depth; in MergeValuesInto()
/external/v8/src/compiler/
Dscheduler.cc778 int stack_depth = Push(stack_, 0, entry, kBlockUnvisited1); in ComputeAndInsertSpecialRPO() local
781 while (stack_depth > 0) { in ComputeAndInsertSpecialRPO()
782 int current = stack_depth - 1; in ComputeAndInsertSpecialRPO()
800 stack_depth = Push(stack_, stack_depth, succ, kBlockUnvisited1); in ComputeAndInsertSpecialRPO()
806 stack_depth--; in ComputeAndInsertSpecialRPO()
825 stack_depth = Push(stack_, 0, entry, kBlockUnvisited2); in ComputeAndInsertSpecialRPO()
826 while (stack_depth > 0) { in ComputeAndInsertSpecialRPO()
827 SpecialRPOStackFrame* frame = &stack_[stack_depth - 1]; in ComputeAndInsertSpecialRPO()
872 stack_depth = Push(stack_, stack_depth, succ, kBlockUnvisited2); in ComputeAndInsertSpecialRPO()
900 stack_depth--; in ComputeAndInsertSpecialRPO()
/external/v8/src/profiler/
Dheap-profiler.cc116 uint64_t sample_interval, int stack_depth, in StartSamplingHeapProfiler() argument
122 heap(), names_.get(), sample_interval, stack_depth, flags)); in StartSamplingHeapProfiler()
Dsampling-heap-profiler.cc52 Heap* heap, StringsStorage* names, uint64_t rate, int stack_depth, in SamplingHeapProfiler() argument
65 stack_depth_(stack_depth), in SamplingHeapProfiler()
Dheap-profiler.h36 bool StartSamplingHeapProfiler(uint64_t sample_interval, int stack_depth,
Dsampling-heap-profiler.h45 int stack_depth, v8::HeapProfiler::SamplingFlags flags);
/external/mesa3d/src/intel/blorp/
Dblorp_blit.c657 unsigned stack_depth = 0; in blorp_nir_manual_blend_average() local
659 assert(stack_depth == _mesa_bitcount(i)); /* Loop invariant */ in blorp_nir_manual_blend_average()
662 assert(stack_depth < ARRAY_SIZE(texture_data)); in blorp_nir_manual_blend_average()
667 texture_data[stack_depth++] = blorp_nir_txf_ms(b, v, ms_pos, mcs, dst_type); in blorp_nir_manual_blend_average()
710 assert(stack_depth >= 2); in blorp_nir_manual_blend_average()
711 --stack_depth; in blorp_nir_manual_blend_average()
714 texture_data[stack_depth - 1] = in blorp_nir_manual_blend_average()
715 nir_fadd(b, texture_data[stack_depth - 1], in blorp_nir_manual_blend_average()
716 texture_data[stack_depth]); in blorp_nir_manual_blend_average()
721 assert(stack_depth == 1); in blorp_nir_manual_blend_average()
/external/bcc/tools/old/
Dmemleak.py106 max_stack_size = args.stack_depth + 2
/external/v8/src/regexp/
Dinterpreter-irregexp.cc66 int stack_depth, in TraceInterpreter() argument
79 stack_depth, in TraceInterpreter()
/external/deqp/external/openglcts/modules/common/
DglcKHRDebugTests.cpp2119 GLint stack_depth = 0; in inspectGroupStack() local
2121 m_gl->getIntegerv(GL_DEBUG_GROUP_STACK_DEPTH, &stack_depth); in inspectGroupStack()
2124 if (expected_depth != (GLuint)stack_depth) in inspectGroupStack()
2127 << "State of DEBUG_GROUP_STACK_DEPTH: " << stack_depth << ", expected " in inspectGroupStack()
/external/v8/include/
Dv8-profiler.h868 int stack_depth = 16,
/external/v8/src/runtime/
Druntime-test.cc270 int stack_depth = args.length() == 1 ? args.smi_at(0) : 0; in RUNTIME_FUNCTION() local
274 while (!it.done() && stack_depth--) it.Advance(); in RUNTIME_FUNCTION()
/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")
/external/v8/src/
Disolate.cc3104 int stack_depth = 128; in Throw() local
3107 heap_profiler()->StartSamplingHeapProfiler(sample_interval, stack_depth, in Throw()

12