/external/strace/ |
D | unwind-libunwind.c | 137 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()
|
D | unwind-libdw.c | 135 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/ |
D | MonitorInfoImpl.java | 40 int stack_depth; field in MonitorInfoImpl 47 this.stack_depth = dpth; in MonitorInfoImpl() 82 return stack_depth; in stackDepth()
|
D | ThreadReferenceImpl.java | 508 … MonitorInfo mon = new MonitorInfoImpl(vm, minfo[i].monitor, this, minfo[i].stack_depth); in ownedMonitorsAndFrames()
|
/external/libchrome/mojo/public/cpp/bindings/lib/ |
D | validation_context.cc | 18 int stack_depth) in ValidationContext() argument 28 stack_depth_(stack_depth) { in ValidationContext()
|
D | validation_context.h | 44 int stack_depth = 0); in COMPONENT_EXPORT()
|
/external/libchrome/base/debug/ |
D | activity_tracker.cc | 268 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 …]
|
D | activity_tracker.h | 733 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/ |
D | function-body-decoder-impl.h | 506 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 …]
|
D | wasm-debug.cc | 273 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()
|
D | function-body-decoder.cc | 611 decoder->stack_size() - decoder->control_at(0)->stack_depth; in MergeValuesInto()
|
/external/v8/src/compiler/ |
D | scheduler.cc | 778 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/ |
D | heap-profiler.cc | 116 uint64_t sample_interval, int stack_depth, in StartSamplingHeapProfiler() argument 122 heap(), names_.get(), sample_interval, stack_depth, flags)); in StartSamplingHeapProfiler()
|
D | sampling-heap-profiler.cc | 52 Heap* heap, StringsStorage* names, uint64_t rate, int stack_depth, in SamplingHeapProfiler() argument 65 stack_depth_(stack_depth), in SamplingHeapProfiler()
|
D | heap-profiler.h | 36 bool StartSamplingHeapProfiler(uint64_t sample_interval, int stack_depth,
|
D | sampling-heap-profiler.h | 45 int stack_depth, v8::HeapProfiler::SamplingFlags flags);
|
/external/mesa3d/src/intel/blorp/ |
D | blorp_blit.c | 657 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/ |
D | memleak.py | 106 max_stack_size = args.stack_depth + 2
|
/external/v8/src/regexp/ |
D | interpreter-irregexp.cc | 66 int stack_depth, in TraceInterpreter() argument 79 stack_depth, in TraceInterpreter()
|
/external/deqp/external/openglcts/modules/common/ |
D | glcKHRDebugTests.cpp | 2119 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/ |
D | v8-profiler.h | 868 int stack_depth = 16,
|
/external/v8/src/runtime/ |
D | runtime-test.cc | 270 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/ |
D | ThreadReferenceImpl.c | 557 (void)outStream_writeInt(out,monitors[i].stack_depth); in ownedMonitorsWithStackDepth()
|
/external/oj-libjdwp/make/data/jdwp/ |
D | jdwp.spec | 2033 (int stack_depth "Stack depth location where monitor was acquired")
|
/external/v8/src/ |
D | isolate.cc | 3104 int stack_depth = 128; in Throw() local 3107 heap_profiler()->StartSamplingHeapProfiler(sample_interval, stack_depth, in Throw()
|