Searched refs:stack (Results 276 - 300 of 1370) sorted by relevance

<<11121314151617181920>>

/external/valgrind/memcheck/tests/solaris/
H A Dscalar_ioctl.stderr.exp15 Address 0x........ is not stack'd, malloc'd or (recently) free'd
31 Address 0x........ is not stack'd, malloc'd or (recently) free'd
47 Address 0x........ is on thread 1's stack
51 Address 0x........ is not stack'd, malloc'd or (recently) free'd
55 Address 0x........ is not stack'd, malloc'd or (recently) free'd
71 Address 0x........ is on thread 1's stack
75 Address 0x........ is not stack'd, malloc'd or (recently) free'd
91 Address 0x........ is not stack'd, malloc'd or (recently) free'd
107 Address 0x........ is on thread 1's stack
111 Address 0x........ is not stack'
[all...]
H A Dscalar.stderr.exp27 Address 0x........ is not stack'd, malloc'd or (recently) free'd
55 Address 0x........ is not stack'd, malloc'd or (recently) free'd
59 Address 0x........ is not stack'd, malloc'd or (recently) free'd
75 Address 0x........ is not stack'd, malloc'd or (recently) free'd
79 Address 0x........ is not stack'd, malloc'd or (recently) free'd
89 Address 0x........ is not stack'd, malloc'd or (recently) free'd
132 Address 0x........ is not stack'd, malloc'd or (recently) free'd
136 Address 0x........ is not stack'd, malloc'd or (recently) free'd
155 Address 0x........ is not stack'd, malloc'd or (recently) free'd
159 Address 0x........ is not stack'
[all...]
/external/google-breakpad/src/processor/
H A Dminidump_processor_unittest.cc31 // corresponding symbol file, and checks the stack frames for correctness.
421 CallStack *stack = state.threads()->at(0); local
422 ASSERT_TRUE(stack);
423 ASSERT_EQ(stack->frames()->size(), 4U);
425 ASSERT_TRUE(stack->frames()->at(0)->module);
426 ASSERT_EQ(stack->frames()->at(0)->module->base_address(), 0x400000U);
427 ASSERT_EQ(stack->frames()->at(0)->module->code_file(), "c:\\test_app.exe");
428 ASSERT_EQ(stack->frames()->at(0)->function_name,
430 ASSERT_EQ(stack->frames()->at(0)->source_file_name, "c:\\test_app.cc");
431 ASSERT_EQ(stack
[all...]
H A Dstackwalker_ppc.cc55 // supplied stack are invalid. Mark memory_ = NULL, which will cause
84 StackFrame* StackwalkerPPC::GetCallerFrame(const CallStack* stack, argument
86 if (!memory_ || !stack) {
87 BPLOG(ERROR) << "Can't get caller frame without memory or stack";
91 // The instruction pointers for previous frames are saved on the stack.
93 // its return address in the calling procedure's stack frame at 8(%r1),
94 // and to allocate its own stack frame by decrementing %r1 (the stack
96 // no hardware stack, there is no distinction between the stack pointe
[all...]
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
H A DJarState.java28 * The abstract state is defined by the abstract contents of locals and contents of the stack.
43 // Typed mapping from a local slot or stack slot to a virtual register.
130 // Immutable recording of the state (locals and stack should not be mutated).
133 public final ImmutableList<Slot> stack; field in class:JarState.Snapshot
135 public Snapshot(Local[] locals, ImmutableList<Slot> stack) { argument
137 this.stack = stack;
143 + ", stack: " + stackToString(stack);
172 private final Deque<Slot> stack field in class:JarState
376 recordStateForTarget(int target, Local[] locals, ImmutableList<Slot> stack, JarSourceCode source) argument
457 verifyStack(List<Slot> stack, List<Slot> other) argument
481 stackToString(Collection<Slot> stack) argument
[all...]
/external/autotest/frontend/client/src/autotest/tko/
H A DTestLabelManager.java42 private StackPanel stack = new StackPanel(); field in class:TestLabelManager
54 stack.showStack(STACK_CREATE);
56 stack.showStack(STACK_SELECT);
67 stack.add(selectPanel);
73 stack.add(createPanel);
80 dialogPanel.add(stack);
105 stack.showStack(STACK_CREATE);
108 stack.showStack(STACK_SELECT);
127 stack.showStack(STACK_SELECT);
160 if (stack
[all...]
/external/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cc56 return Allocate(stack, size, 1, kAlwaysClearMemory);
80 return Allocate(stack, size, 1, true);
86 return Reallocate(stack, q, size, 1);
92 return Allocate(stack, size, alignment, kAlwaysClearMemory);
98 return Allocate(stack, size, alignment, kAlwaysClearMemory);
104 *memptr = Allocate(stack, size, alignment, kAlwaysClearMemory);
112 void *res = Allocate(stack, size, alignment, kAlwaysClearMemory);
122 return Allocate(stack, size, GetPageSizeCached(), kAlwaysClearMemory);
153 return Allocate(stack, size, GetPageSizeCached(), kAlwaysClearMemory);
161 return Allocate(stack, siz
[all...]
/external/v8/src/compiler/
H A Djump-threading.cc21 ZoneStack<RpoNumber>& stack; member in struct:v8::internal::compiler::JumpThreadingState
26 stack.push(num);
31 RpoNumber from = stack.top();
39 stack.push(to);
51 if (pop) stack.pop();
61 ZoneStack<RpoNumber> stack(local_zone);
62 JumpThreadingState state = {false, result, stack};
65 // Iterate over the blocks forward, pushing the blocks onto the stack.
70 // Process the stack, which implements DFS through empty blocks.
71 while (!state.stack
[all...]
/external/valgrind/drd/tests/
H A Dthread_name_xml.stderr.exp39 <stack>
64 </stack>
75 <stack>
100 </stack>
111 <stack>
136 </stack>
147 <stack>
172 </stack>
183 <stack>
208 </stack>
[all...]
/external/valgrind/exp-sgcheck/tests/
H A Dhsg.stderr.exp37 <stack>
54 </stack>
65 <stack>
90 </stack>
92 <auxwhat>Expected: stack array "la" of size 200 in frame 1 back from here</auxwhat>
/external/compiler-rt/lib/msan/
H A Dmsan.h132 // High memory: heap, modules and main thread stack
154 // Main thread stack and DSOs at 0x7f0000000000 (sometimes 0x7e0000000000).
231 void *MsanCalloc(StackTrace *stack, uptr nmemb, uptr size);
232 void *MsanReallocate(StackTrace *stack, void *oldp, uptr size,
234 void MsanDeallocate(StackTrace *stack, void *ptr);
252 void GetStackTrace(BufferedStackTrace *stack, uptr max_s, uptr pc, uptr bp,
255 void ReportUMR(StackTrace *stack, u32 origin);
256 void ReportExpectedUMRNotFound(StackTrace *stack);
267 // Returns a "chained" origin id, pointing to the given stack trace followed by
269 u32 ChainOrigin(u32 id, StackTrace *stack);
[all...]
/external/libpng/contrib/tools/
H A Dpngcp.c264 #define SL 8 /* stack limit in display, below */
449 unsigned int csp; /* next stack entry to use */
463 struct stack struct in struct:display
474 } stack[SL]; /* Stack of entries being tested */ member in struct:display
758 offset = dp->stack[sp-1].opt_string_end;
781 dp->stack[sp].opt_string_end = set_opt_string_(dp, sp, dp->stack[sp].opt,
782 options[dp->stack[sp].opt].values[dp->stack[sp].entry].name);
792 const unsigned int sp = dp->csp; /* stack entr
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cc113 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp) { argument
115 if (!suppression_ctx->SuppressionCount() || stack == 0 ||
116 !stack->suppressable)
121 for (const SymbolizedStack *frame = stack->frames; frame;
127 if (0 == internal_strcmp(stype, kSuppressionRace) && stack->frames != nullptr)
128 return IsSuppressed(kSuppressionRaceTop, stack->frames->info, sp);
/external/python/cpython2/Lib/
H A Dmultifile.py45 self.stack = []
81 self.level = len(self.stack)
95 for i, sep in enumerate(reversed(self.stack)):
136 self.stack.append(sep)
142 if self.stack == []:
149 self.stack.pop()
/external/swiftshader/src/OpenGL/compiler/
H A DPoolAlloc.cpp163 stack.push_back(state);
180 if (stack.size() < 1)
183 tHeader* page = stack.back().page;
184 currentPageOffset = stack.back().offset;
200 stack.pop_back();
209 while (stack.size() > 0)
/external/bison/examples/calc++/
H A Dcalc++-parser.hh57 #include "stack.hh"
161 /// State stack type.
162 typedef stack<state_type> state_stack_type;
163 /// Semantic value stack type.
164 typedef stack<semantic_type> semantic_stack_type;
165 /// location stack type.
166 typedef stack<location_type> location_stack_type;
168 /// The state stack.
170 /// The semantic value stack.
172 /// The location stack
[all...]
/external/bison/lib/
H A Dtimevar.c146 /* If this variable is timed independently of the timing stack,
158 the timing stack. */
162 /* An element on the timing stack. Elapsed time is attributed to the
163 topmost timing variable on the stack. */
167 /* The timing variable at this stack level. */
170 /* The next lower timing variable context in the stack. */
178 /* The top of the timing stack. */
179 static struct timevar_stack_def *stack; variable in typeref:struct:timevar_stack_def
185 /* The time at which the topmost element on the timing stack was
276 /* Push TIMEVAR onto the timing stack
[all...]
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_shadow_test.cc51 int stack; local
56 CHECK(IsAppMem((uptr)&stack));
60 CHECK(IsShadowMem(MemToShadow((uptr)&stack)));
/external/libunwind/doc/
H A Dunw_step.tex8 \begin{Name}{3}{unw\_step}{David Mosberger-Tang}{Programming Library}{unw\_step}unw\_step -- advance to next stack frame
20 the next older, less deeply nested stack frame.
25 if the updated cursor refers to a valid stack frame, or 0 if the
26 previous stack frame was the last frame in the chain. On error, the
44 (``program-counter'') of the next stack frame is invalid (e.g., not
46 \item[\Const{UNW\_EBADFRAME}] The next stack frame is invalid.
/external/valgrind/memcheck/tests/
H A Dorigin1-yes.stderr.exp2 Undef 1 of 8 (stack, 32 bit)
5 Uninitialised value was created by a stack allocation
9 Undef 2 of 8 (stack, 32 bit)
12 Uninitialised value was created by a stack allocation
16 Undef 3 of 8 (stack, 64 bit)
19 Uninitialised value was created by a stack allocation
/external/valgrind/none/tests/linux/
H A Dpthread-stack.c3 ==8336== Can't extend stack to 0x4033f98 during signal delivery for thread 2:
4 ==8336== no stack segment
6 The reason was that only AnonC segments were considered as stack
72 /* Create a file that will be used as stack for a pthread. */
85 /* Create a file-based stack for the child */
91 void *stack = mmap(NULL, stack_size, PROT_READ|PROT_WRITE, local
93 assert(stack != (void *)-1);
96 r = pthread_attr_setstack(&attr, stack, stack_size);
/external/valgrind/none/tests/solaris/
H A Dpthread-stack.c3 ==8336== Can't extend stack to 0x4033f98 during signal delivery for thread 2:
4 ==8336== no stack segment
6 The reason was that only AnonC segments were considered as stack
67 /* Create a file that will be used as stack for a pthread. */
79 /* Create a file-based stack for the child. */
85 void *stack = mmap(NULL, stack_size, PROT_READ|PROT_WRITE, local
87 assert(stack != (void *)-1);
90 int r = pthread_attr_setstack(&attr, stack, stack_size);
/external/autotest/server/hosts/
H A Dssh_host.py80 """ Get the server stack frame status.
85 stack_frames = inspect.stack()
86 stack = ''
89 stack = '%s|%s' % (function_name, stack)
91 return stack[:-1] # Delete the last '|' character
96 to be executed and the server stack state.
100 # The last 3 frames on the stack are boring. Print 6-3=3 stack frames.
101 stack
[all...]
/external/boringssl/include/openssl/
H A Dex_data.h114 #include <openssl/stack.h>
/external/boringssl/src/crypto/perlasm/
H A Dx86asm.pl30 if ($opcode =~ /^push/) { $stack+=4; }
31 elsif ($opcode =~ /^pop/) { $stack-=4; }
51 sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num); }
52 sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num); }
53 sub ::blindpop { &pop($_[0]); $stack+=4; }
54 sub ::wparam { &DWP($stack+4*$_[0],"esp"); }
219 $stack=4;
233 $stack=0;
243 $stack+=16; # readjust esp as if we didn't pop anything

Completed in 2257 milliseconds

<<11121314151617181920>>