HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 376 - 400 of 3945) sorted by null

<<11121314151617181920>>

  /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()
  /bionic/libc/arch-mips64/bionic/
__bionic_clone.S 46 PTR_SUBU sp, FRAMESZ # allocate stack frame
50 # set up child stack
58 PTR_L t0,FRAME_GP(sp) # copy gp to child stack
87 * For O32 etc the child stack must have space for a0..a3 to be stored
88 * For N64 etc, the child stack can be restored to the original value
  /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/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
dump_reader.py 75 stack = self._get_stack_from_dump(pid_to_minidump[str(pid)])
76 if stack:
77 result[test] = stack
90 Returns the stack stored in the given breakpad dump_file."""
  /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/tsan/tests/unit/
tsan_shadow_test.cc 51 int stack; local
56 CHECK(IsAppMem((uptr)&stack));
60 CHECK(IsShadowMem(MemToShadow((uptr)&stack)));
  /external/libunwind/doc/
unw_step.tex 8 \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/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
  /external/chromium_org/extensions/browser/
file_highlighter.cc 7 #include <stack>
62 std::stack<char> stack; local
67 stack.push(']');
69 stack.push('}');
70 else if (!stack.empty() && c == stack.top())
71 stack.pop();
74 } while (!stack.empty() && *index < end);
  /external/chromium_org/tools/grit/grit/
grd_reader.py 32 # 'stack' is the a stack of elements that we push new nodes onto and
34 # 'stack[-1]' is the top of the stack.
36 self.stack = []
60 if self.stack:
61 self.stack[-1].AddChild(node)
62 node.StartParsing(name, self.stack[-1])
72 self.stack.append(node)
83 partnode = self.stack[-1
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
PartialEvaluator.java 78 private final java.util.Stack callingInstructionBlockStack;
79 private final java.util.Stack instructionBlockStack = new java.util.Stack();
152 java.util.Stack callingInstructionBlockStack)
205 System.out.println(" Stack: "+stacksBefore[offset]);
228 System.out.println(" Stack: "+stacksAfter[offset]);
249 System.out.println(" Max stack = "+codeAttribute.u2maxStack);
252 // Reuse the existing variables and stack objects, ensuring the right size.
254 TracedStack stack = new TracedStack(codeAttribute.u2maxStack); local
268 stack,
1039 TracedStack stack = new TracedStack(codeAttribute.u2maxStack); local
    [all...]
  /bionic/libc/arch-arm64/bionic/
__bionic_clone.S 34 # Copy 'fn' and 'arg' onto the child stack.
56 # ...and call __start_thread with the 'fn' and 'arg' we stored on the child stack.
  /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/tcmalloc/chromium/src/gperftools/
heap-profiler.h 88 * 1. May optionally skip the first |skip_count| items on the stack.
89 * 2. Must provide a |stack| buffer of at least size 32 * sizeof(void*).
92 typedef int (*StackGeneratorFunction)(int skip_count, void** stack);
  /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/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/compiler-rt/lib/asan/
asan_malloc_win.cc 38 return asan_free(ptr, &stack, FROM_MALLOC);
53 return asan_malloc(size, &stack);
64 return asan_calloc(nmemb, size, &stack);
80 return asan_realloc(ptr, size, &stack);
  /external/libunwind/src/ia64/
setjmp.S 49 /* We do not need executable stack. */
50 .section .note.GNU-stack,"",@progbits
  /external/llvm/test/MC/ELF/
section.s 5 .section .note.GNU-stack,"",@progbits
10 // CHECK: Name: .note.GNU-stack (56)
  /external/llvm/test/MC/Mips/
cpsetup-bad.s 12 # ASM: :[[@LINE-1]]:23: error: expected save register or stack offset
  /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);
  /external/speex/libspeex/
cb_search_bfin.h 37 void compute_weighted_codebook(const signed char *shape_cb, const spx_word16_t *r, spx_word16_t *resp, spx_word16_t *resp2, spx_word32_t *E, int shape_cb_size, int subvect_size, char *stack)

Completed in 1283 milliseconds

<<11121314151617181920>>