HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 276 - 300 of 2132) sorted by null

<<11121314151617181920>>

  /external/google-breakpad/src/processor/
stackwalker_sparc.cc 75 StackFrame* StackwalkerSPARC::GetCallerFrame(const CallStack* stack,
77 if (!memory_ || !stack) {
78 BPLOG(ERROR) << "Can't get caller frame without memory or stack";
83 stack->frames()->back());
96 // end of the stack.
  /external/guava/guava-testlib/test/com/google/common/testing/
TestLogHandlerTest.java 33 private TearDownStack stack = new TearDownStack(); field in class:TestLogHandlerTest
45 stack.addTearDown(new TearDown() {
84 stack.runTearDown();
  /external/libcxx/test/std/containers/container.adaptors/stack/stack.cons.alloc/
ctor_container_alloc.pass.cpp 10 // <stack>
13 // stack(const container_type& c, const Alloc& a);
15 #include <stack>
35 : public std::stack<int, C>
37 typedef std::stack<int, C> base;
ctor_rcontainer_alloc.pass.cpp 12 // <stack>
15 // stack(const container_type& c, const Alloc& a);
17 #include <stack>
38 : public std::stack<T, C>
40 typedef std::stack<T, C> base;
ctor_rqueue_alloc.pass.cpp 12 // <stack>
15 // stack(stack&& q, const Alloc& a);
17 #include <stack>
38 : public std::stack<T, C>
40 typedef std::stack<T, C> base;
  /external/libunwind/tests/
Gtest-exc.c 92 long stack; local
97 n, &stack, (unsigned long) get_bsp ());
107 &stack, (unsigned long) get_bsp ());
  /external/linux-kselftest/tools/testing/selftests/kvm/lib/
assert.c 18 /* Dumps the current stack trace to stderr. */
32 void *stack[n]; local
42 n = backtrace(stack, n);
51 c += sprintf(c, " %lx", ((unsigned long) stack[i]) - 1);
  /external/proguard/src/proguard/evaluation/
BasicInvocationUnit.java 34 * and it updates the stack for the invocation of a class member,
50 private Stack stack; field in class:BasicInvocationUnit
138 public void invokeMember(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction, Stack stack)
177 this.stack = stack;
179 this.stack = null;
190 setFieldValue(clazz, fieldrefConstant, stack.pop());
196 setFieldClassValue(clazz, fieldrefConstant, stack.apop())
    [all...]
  /external/skia/src/sksl/
SkSLInterpreter.h 18 #include <stack>
54 Interpreter(std::unique_ptr<Program> program, SkRasterPipeline* pipeline, std::vector<Value>* stack)
57 , fStack(*stack) {}
  /external/skqp/src/sksl/
SkSLInterpreter.h 18 #include <stack>
54 Interpreter(std::unique_ptr<Program> program, SkRasterPipeline* pipeline, std::vector<Value>* stack)
57 , fStack(*stack) {}
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
ManagedStatic.cpp 32 // Valgrind's leak checker complains glibc's stack allocation.
33 // To appease valgrind, we provide our own stack for each thread.
35 void *stack = safe_malloc(n); local
38 pthread_attr_setstack(&a, stack, n);
40 return stack;
  /external/u-boot/arch/arm/mach-imx/
imx_bootaux.c 15 ulong stack, pc; local
20 stack = *(ulong *)boot_private_data;
23 /* Set the stack and pc to M4 bootROM */
24 writel(stack, M4_BOOTROM_BASE_ADDR);
  /external/v8/src/compiler/
control-equivalence.cc 89 ZoneStack<DFSStackEntry> stack(zone_);
90 DFSPush(stack, exit, nullptr, kInputDirection);
93 while (!stack.empty()) { // Undirected depth-first backwards traversal.
94 DFSStackEntry& entry = stack.top();
107 // Found backedge if input is on stack.
112 // Push input onto stack.
113 DFSPush(stack, input, node, kInputDirection);
137 // Found backedge if use is on stack.
142 // Push use onto stack.
143 DFSPush(stack, use, node, kUseDirection)
    [all...]
  /cts/tools/dasm/src/java_cup/
parser.java 303 java.util.Stack stack,
308 return action_obj.CUP$do_action(act_num, parser, stack, top);
430 java.util.Stack CUP$stack,
452 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val;
460 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val;
468 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val;
478 if (symbols.get((/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val) != null)
481 lexer.emit_error( "Symbol \"" + (/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pyclbr.py 149 stack = [] # stack of (class, indent) pairs
157 while stack and stack[-1][1] >= thisindent:
158 del stack[-1]
162 while stack and stack[-1][1] >= thisindent:
163 del stack[-1]
167 if stack:
168 cur_class = stack[-1][0]
    [all...]
  /external/python/cpython2/Lib/
pyclbr.py 151 stack = [] # stack of (class, indent) pairs
159 while stack and stack[-1][1] >= thisindent:
160 del stack[-1]
164 while stack and stack[-1][1] >= thisindent:
165 del stack[-1]
169 if stack:
170 cur_class = stack[-1][0
    [all...]
  /external/grpc-grpc/src/ruby/ext/grpc/
rb_channel.c 215 channel_init_try_register_stack stack; local
247 stack.channel = ch;
248 stack.wrapper = wrapper;
250 channel_init_try_register_connection_polling_without_gil, &stack, NULL,
272 get_state_stack* stack = (get_state_stack*)arg; local
276 if (stack->bg->channel_destroyed) {
277 stack->out = GRPC_CHANNEL_SHUTDOWN;
279 stack->out = grpc_channel_check_connectivity_state(stack->bg->channel,
280 stack->try_to_connect)
300 get_state_stack stack; local
325 watch_state_stack* stack = (watch_state_stack*)arg; local
375 watch_state_stack stack; local
551 channel_init_try_register_stack* stack = local
    [all...]
  /external/python/cpython3/Lib/test/
test_contextlib_async.py 314 async with AsyncExitStack() as stack:
317 f = stack.push_async_callback(_exit, *args, **kwds)
319 f = stack.push_async_callback(_exit, *args)
321 f = stack.push_async_callback(_exit, **kwds)
323 f = stack.push_async_callback(_exit)
325 for wrapper in stack._exit_callbacks:
351 async with self.exit_stack() as stack:
352 stack.push_async_exit(_expect_ok)
353 self.assertIs(stack._exit_callbacks[-1][1], _expect_ok)
355 stack.push_async_exit(cm
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/
DisablePaging64.asm 40 mov edi, [rsp + 28h] ; rdi <- New stack
45 sub rdi, rax ; rdi <- Use stack to hold transition code
47 push rcx ; save rcx to stack
49 rep movsb ; copy transition code to top of new stack which must be below 4GB
54 mov eax, r10d ; eax <- start of the transition code on the stack
55 sub eax, 4 ; eax <- One slot below transition code on the stack
56 push rcx ; push Cs to stack
57 push r10 ; push address of tansition code on stack
59 retf ; Use far return to load CS register from stack
63 mov esp, eax ; set up new stack
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/CRT/Ia32/
umoddi3.S 35 # Original local stack when calling __umoddi3
52 # Set up the local stack for Reminder pointer
58 # Set up the local stack for Divisor parameter
66 # Set up the local stack for Dividend parameter
85 # Adjust stack
  /external/autotest/frontend/client/src/autotest/tko/
SpreadsheetHeaderSelectorView.java 31 private StackPanel stack = new StackPanel(); field in class:SpreadsheetHeaderSelectorView
38 stack.add(singleHeaderOptions);
39 stack.add(doubleListDisplay);
46 panel.add(stack);
92 stack.showStack(doubleListVisible ? 1 : 0);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_unwind_linux_libcdep.cc 10 // This file contains the unwind.h-based (aka "slow") stack unwinding routines
59 "Failed to open libcorkscrew.so. You may see broken stack traces "
73 "You may see broken stack traces in SEGV reports.");
103 BufferedStackTrace *stack; member in struct:__sanitizer::UnwindTraceArg
109 CHECK_LT(arg->stack->size, arg->max_depth);
116 arg->stack->trace_buffer[arg->stack->size++] = pc;
117 if (arg->stack->size == arg->max_depth) return UNWIND_STOP;
129 // unless there is only 1 frame in the stack trace (1 frame is always better
  /external/guava/guava/src/com/google/thirdparty/publicsuffix/
TrieParser.java 54 * @param stack The prefixes that preceed the characters represented by this
55 * node. Each entry of the stack is in reverse order.
61 List<CharSequence> stack,
77 stack.add(0, reverse(encoded.subSequence(0, idx)));
84 String domain = PREFIX_JOINER.join(stack);
94 idx += doParseTrieToBuilder(stack, encoded.subSequence(idx, encodedLen), builder);
102 stack.remove(0);
  /external/bcc/tools/old/
memleak.py 22 stack = ""
27 stack += " %s ;" % bpf.sym(addr, pid, show_offset=True)
28 return stack
87 parser.add_argument("-d", "--stack-depth", default=10, type=int,
88 help="maximum stack depth to capture")
135 // The following stack walker is x86_64 specific
252 stack = decode_stack(bpf_program, pid, info)
253 if stack in stacks:
254 stacks[stack] = (stacks[stack][0] + 1
    [all...]
  /external/compiler-rt/lib/asan/
asan_mac.cc 96 void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
144 void asan_register_worker_thread(int parent_tid, StackTrace *stack) {
148 parent_tid, stack, /* detached */ true);
165 asan_register_worker_thread(context->parent_tid, &stack);
168 asan_free(context, &stack, FROM_MALLOC);
179 BufferedStackTrace *stack) {
181 (asan_block_context_t*) asan_malloc(sizeof(asan_block_context_t), stack);
194 asan_block_context_t *asan_ctxt = alloc_asan_context(ctxt, func, &stack); \
212 asan_block_context_t *asan_ctxt = alloc_asan_context(ctxt, func, &stack);
225 asan_block_context_t *asan_ctxt = alloc_asan_context(ctxt, func, &stack);
    [all...]

Completed in 2302 milliseconds

<<11121314151617181920>>