HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 176 - 200 of 1681) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/compiler-rt/lib/asan/
asan_linux.cc 104 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp, bool fast) {
111 return stack->SlowUnwindStack(pc, max_s);
112 stack->size = 0;
113 stack->trace[0] = pc;
115 stack->max_size = max_s;
118 stack->FastUnwindStack(pc, bp, t->stack_top(), t->stack_bottom());
123 void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
125 *stack = (uptr)ucp->uc_stack.ss_sp;
129 void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
asan_report.cc 134 PrintShadowByte(" Stack left redzone: ", kAsanStackLeftRedzoneMagic);
135 PrintShadowByte(" Stack mid redzone: ", kAsanStackMidRedzoneMagic);
136 PrintShadowByte(" Stack right redzone: ", kAsanStackRightRedzoneMagic);
137 PrintShadowByte(" Stack partial redzone: ", kAsanStackPartialRedzoneMagic);
138 PrintShadowByte(" Stack after return: ", kAsanStackAfterReturnMagic);
139 PrintShadowByte(" Stack use after scope: ", kAsanStackUseAfterScopeMagic);
260 "in frame <%s> of T%d's stack:\n",
263 // Report the number of stack objects.
276 Printf("AddressSanitizer can't parse the stack frame "
287 "some custom stack unwind mechanism or swapcontext\n
    [all...]
asan_mac.cc 232 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp, bool fast) {
234 stack->size = 0;
235 stack->trace[0] = pc;
237 stack->max_size = max_s;
240 stack->FastUnwindStack(pc, bp, t->stack_top(), t->stack_bottom());
244 void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
292 void asan_register_worker_thread(int parent_tid, StackTrace *stack) {
295 t = AsanThread::Create(parent_tid, 0, 0, stack);
313 asan_register_worker_thread(context->parent_tid, &stack);
316 asan_free(context, &stack, FROM_MALLOC)
    [all...]
  /external/valgrind/main/helgrind/tests/
tc06_two_races_xml.stderr.exp 47 <stack>
73 </stack>
84 <stack>
93 </stack>
98 <stack>
116 </stack>
129 <stack>
138 </stack>
143 <stack>
161 </stack>
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Frame.java 27 * of a set of locals and a value stack, and it can be told to act on
35 /** {@code non-null;} the stack */
36 private final ExecutionStack stack; field in class:Frame
38 /** {@code null-ok;} stack of labels of subroutines that this block is nested in */
45 * @param stack {@code non-null;} the execution stack to use
47 private Frame(LocalsArray locals, ExecutionStack stack) {
48 this(locals, stack, IntList.EMPTY);
55 * @param stack {@code non-null;} the execution stack to us
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stackdepot.cc 34 uptr stack[1]; // [size] member in struct:__sanitizer::StackDesc
51 static u32 hash(const uptr *stack, uptr size) {
58 u32 k = stack[i];
101 uptr mem = (uptr)MmapOrDie(allocsz, "stack depot");
108 static u32 find(StackDesc *s, const uptr *stack, uptr size, u32 hash) {
109 // Searches linked list s for the stack, returns its id.
114 if (stack[i] != s->stack[i])
144 u32 StackDepotPut(const uptr *stack, uptr size) {
145 if (stack == 0 || size == 0
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1OutputStream.java 90 byte[] stack = new byte[5];
91 int pos = stack.length;
93 stack[--pos] = (byte)(tagNo & 0x7F);
98 stack[--pos] = (byte)(tagNo & 0x7F | 0x80);
102 write(stack, pos, stack.length - pos);
  /external/compiler-rt/lib/msan/
msan_allocator.cc 48 static void *MsanAllocate(StackTrace *stack, uptr size,
59 u32 stack_id = StackDepotPut(stack->trace, stack->size);
61 CHECK_EQ((stack_id >> 31), 0); // Higher bit is occupied by stack origins.
80 void *MsanReallocate(StackTrace *stack, void *old_p, uptr new_size,
83 return MsanAllocate(stack, new_size, alignment, zeroise);
99 void *new_p = MsanAllocate(stack, new_size, alignment, zeroise);
  /external/valgrind/main/memcheck/tests/
writev1.stderr.exp 5 Address 0x........ is not stack'd, malloc'd or (recently) free'd
11 Address 0x........ is not stack'd, malloc'd or (recently) free'd
17 Address 0x........ is not stack'd, malloc'd or (recently) free'd
badjump.stderr.exp 5 Address 0x........ is not stack'd, malloc'd or (recently) free'd
12 If you believe this happened as a result of a stack
15 main thread stack using the --main-stacksize= flag.
16 The main thread stack size used in this run was ....
badjump2.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
long_namespace_xml.stderr.exp 36 <stack>
53 </stack>
55 <stack>
80 </stack>
  /frameworks/base/core/java/android/util/
JsonWriter.java 125 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonWriter
127 stack.add(JsonScope.EMPTY_DOCUMENT);
240 stack.add(empty);
253 throw new IllegalStateException("Nesting problem: " + stack);
256 stack.remove(stack.size() - 1);
265 * Returns the value on the top of the stack.
268 return stack.get(stack.size() - 1);
272 * Replace the value on the top of the stack with the given value
    [all...]
  /dalvik/vm/mterp/x86/
binflop.S 9 $load (rFP,%eax,4) # vCC to fp stack
binflop2addr.S 10 $load (rFP,%ecx,4) # vAA to fp stack
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessageInterstitial.java 50 * Perform a switch to the app. A new activity stack is started, replacing
58 // Build the new activity stack, launch it, and finish this UI.
59 Intent[] stack = IncomingMessage.makeMessageIntentStack(this, from, msg); local
60 startActivities(stack);
  /external/valgrind/main/drd/tests/
annotate_barrier_xml.stderr.exp 39 <stack>
64 </stack>
72 <stack>
97 </stack>
105 <stack>
130 </stack>
138 <stack>
163 </stack>
171 <stack>
193 </stack>
    [all...]
fp_race.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
hg04_race.stderr.exp 9 (thread finished, call stack no longer available)
11 (thread finished, call stack no longer available)
19 (thread finished, call stack no longer available)
21 (thread finished, call stack no longer available)
hg05_race2.stderr.exp 9 (thread finished, call stack no longer available)
11 (thread finished, call stack no longer available)
19 (thread finished, call stack no longer available)
21 (thread finished, call stack no longer available)
sem_as_mutex.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
sem_open.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
tc21_pthonce.stderr.exp 9 (thread finished, call stack no longer available)
11 (thread finished, call stack no longer available)
19 (thread finished, call stack no longer available)
21 (thread finished, call stack no longer available)
  /external/kernel-headers/original/asm-arm/
processor.h 60 unsigned long *stack = (unsigned long *)sp; \
71 regs->ARM_r2 = stack[2]; /* r2 (envp) */ \
72 regs->ARM_r1 = stack[1]; /* r1 (argv) */ \
73 regs->ARM_r0 = stack[0]; /* r0 (argc) */ \
  /external/nist-sip/java/gov/nist/javax/sip/stack/
HandshakeCompletedListenerImpl.java 19 package gov.nist.javax.sip.stack;

Completed in 967 milliseconds

1 2 3 4 5 6 78 91011>>