HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 301 - 325 of 2692) sorted by null

<<11121314151617181920>>

  /external/proguard/src/proguard/optimize/evaluation/
PartialEvaluator.java 77 private final java.util.Stack callingInstructionBlockStack;
78 private final java.util.Stack instructionBlockStack = new java.util.Stack();
151 java.util.Stack callingInstructionBlockStack)
207 System.out.println(" Max stack = "+codeAttribute.u2maxStack);
210 // Reuse the existing variables and stack objects, ensuring the right size.
212 TracedStack stack = new TracedStack(codeAttribute.u2maxStack); local
215 initializeVariables(clazz, method, codeAttribute, variables, stack);
225 stack,
242 System.out.println(" Stack: "+stacksBefore[offset])
1031 TracedStack stack = new TracedStack(codeAttribute.u2maxStack); local
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
PoolAlloc.cpp 156 stack.push_back(state);
173 if (stack.size() < 1)
176 tHeader* page = stack.back().page;
177 currentPageOffset = stack.back().offset;
193 stack.pop_back();
202 while (stack.size() > 0)
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
stacktrace_unittest.cc 112 void *stack[STACK_LEN]; local
118 size = GetStackTrace(stack, STACK_LEN, 0);
119 printf("Obtained %d stack frames.\n", size);
125 char **strings = backtrace_symbols(stack, size);
126 printf("Obtained %d stack frames.\n", size);
128 printf("%s %p\n", strings[i], stack[i]);
136 i, expected_range[i].start, expected_range[i].end, stack[i]);
138 CheckRetAddrIsInFunction(stack[i], expected_range[i]);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
stacktrace_unittest.cc 112 void *stack[STACK_LEN]; local
118 size = GetStackTrace(stack, STACK_LEN, 0);
119 printf("Obtained %d stack frames.\n", size);
125 char **strings = backtrace_symbols(stack, size);
126 printf("Obtained %d stack frames.\n", size);
128 printf("%s %p\n", strings[i], stack[i]);
136 i, expected_range[i].start, expected_range[i].end, stack[i]);
138 CheckRetAddrIsInFunction(stack[i], expected_range[i]);
  /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.
83 void *MsanReallocate(StackTrace *stack, void *old_p, uptr new_size,
86 return MsanAllocate(stack, new_size, alignment, zeroise);
102 void *new_p = MsanAllocate(stack, new_size, alignment, zeroise);
msan_new_delete.cc 38 return MsanReallocate(&stack, 0, size, sizeof(u64), false)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
multifile.py 45 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()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
multifile.py 45 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/bison/examples/calc++/
calc++-parser.hh 57 #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/
timevar.c 146 /* 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. No further elapsed time i
    [all...]
  /external/chromium_org/v8/test/webkit/
stack-unwinding.js 26 "This test checks that JavaScriptCore does not crash when uwinding the stack that includes a host function."
31 var stack = [];
32 stack.push({ "args": twoHostFunctions.arguments });
33 stack.push({ "args": twoHostFunctions.arguments });
51 var stack = [];
52 stack.push({ "args": hostAndException.arguments });
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace.h 63 static uptr CompressStack(StackTrace *stack,
65 static void UncompressStack(StackTrace *stack,
73 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp,
78 // Use this macro if you want to print stack trace with the caller
86 // Use this macro if you want to print stack trace with the current
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_shadow_test.cc 51 int stack; local
56 CHECK(IsAppMem((uptr)&stack));
60 CHECK(IsShadowMem(MemToShadow((uptr)&stack)));
  /external/valgrind/main/memcheck/tests/
origin1-yes.stderr.exp 2 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
  /bionic/libc/arch-arm/bionic/
clone.S 59 # Pop 'fn' and 'arg' back off the stack and call __thread_entry.
61 # __thread_entry also needs our stack pointer.
84 # save registers to parent stack
90 # store 'fn' and 'arg' to the child stack
  /dalvik/vm/alloc/
MarkSweep.cpp 41 * Initializes the stack top and advises the mark stack pages as needed.
43 static bool createMarkStack(GcMarkStack *stack)
45 assert(stack != NULL);
48 madvise(stack->base, length, MADV_NORMAL);
49 stack->top = stack->base;
54 * Assigns NULL to the stack top and advises the mark stack pages as
57 static void destroyMarkStack(GcMarkStack *stack)
476 GcMarkStack *stack = &ctx->stack; local
    [all...]
MarkSweep.h 27 /* Current top of the stack (exclusive)
35 /* Maximum stack size, in bytes.
44 GcMarkStack stack; member in struct:GcMarkContext
  /external/chromium_org/third_party/mesa/src/src/glx/
clientattrib.c 76 if (spp < &gc->attributes.stack[__GL_CLIENT_ATTRIB_STACK_DEPTH]) {
105 if (spp > &gc->attributes.stack[0]) {
134 for (spp = &gc->attributes.stack[0];
135 spp < &gc->attributes.stack[__GL_CLIENT_ATTRIB_STACK_DEPTH]; spp++) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
multisect1.asm 7 ; shrink & relocate stack:
27 ; Reserve space for stack:
  /external/chromium_org/tools/grit/grit/
grd_reader.py 31 # 'stack' is the a stack of elements that we push new nodes onto and
33 # 'stack[-1]' is the top of the stack.
35 self.stack = []
58 if self.stack:
59 self.stack[-1].AddChild(node)
60 node.StartParsing(name, self.stack[-1])
67 self.stack.append(node)
78 partnode = self.stack[-1
    [all...]
  /external/chromium_org/v8/src/
hydrogen-deoptimizing-mark.cc 35 ZoneList<HBasicBlock*> stack(graph()->blocks()->length(), zone());
45 stack.Add(dominated_blocks->at(i), zone());
48 } else if (!stack.is_empty()) {
49 // Pop next block from stack.
50 block = stack.RemoveLast();
  /external/chromium_org/v8/test/mjsunit/regress/
regress-798.js 35 assertEquals(3, e.stack.split('\n').length);
44 assertEquals(3, e.stack.split('\n').length);
53 assertEquals(3, e.stack.split('\n').length);
62 assertEquals(3, e.stack.split('\n').length);
75 assertEquals(3, e.stack.split('\n').length);
83 assertEquals(3, e.stack.split('\n').length);
90 // Check that the stack for an exception in a getter and setter produce the
91 // expected stack height.
  /external/llvm/test/MC/ELF/
section.s 5 .section .note.GNU-stack,"",@progbits
10 // CHECK: Name: .note.GNU-stack (56)
  /external/mesa3d/src/glx/
clientattrib.c 76 if (spp < &gc->attributes.stack[__GL_CLIENT_ATTRIB_STACK_DEPTH]) {
105 if (spp > &gc->attributes.stack[0]) {
134 for (spp = &gc->attributes.stack[0];
135 spp < &gc->attributes.stack[__GL_CLIENT_ATTRIB_STACK_DEPTH]; spp++) {
  /external/proguard/src/proguard/evaluation/
InvocationUnit.java 30 * and it updates the stack for the invocation of a class member.
53 * Updates the given stack corresponding to the execution of the given
61 Stack stack);

Completed in 1094 milliseconds

<<11121314151617181920>>