HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 201 - 225 of 1939) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/v8/test/mjsunit/compiler/
regress-stacktrace.js 28 // Test correctness of stack traces with global functions.
42 var stack = e.stack.toString();
43 var p3 = stack.indexOf("at three");
44 var p2 = stack.indexOf("at two");
45 var p1 = stack.indexOf("at one");
51 print(stack);
  /external/openssl/crypto/perlasm/
x86asm.pl 23 if ($opcode =~ /^push/) { $stack+=4; }
24 elsif ($opcode =~ /^pop/) { $stack-=4; }
44 sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num); }
45 sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num); }
46 sub ::blindpop { &pop($_[0]); $stack+=4; }
47 sub ::wparam { &DWP($stack+4*$_[0],"esp"); }
173 $stack=4;
187 $stack=0;
197 $stack+=16; # readjust esp as if we didn't pop anything
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 191 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonReader
507 stack.clear();
508 stack.add(JsonScope.CLOSED);
535 return stack.get(stack.size() - 1);
539 return stack.remove(stack.size() - 1);
543 stack.add(newTop);
547 * Replace the value on the top of the stack with the given value.
550 stack.set(stack.size() - 1, newTop)
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_report.cc 59 static void StackStripMain(ReportStack *stack) {
67 for (ReportStack *ent = stack; ent; ent = ent->next) {
94 // Ensure that we recovered stack completely. Trimmed stack
98 DPrintf("Bottom stack frame of stack %zx is missed\n", stack->pc);
111 const uptr *stack = StackDepotGet(stack_id, &ssz); local
112 if (stack == 0)
115 trace.Init(stack, ssz)
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
PoolAlloc.cpp 157 stack.push_back(state);
174 if (stack.size() < 1)
177 tHeader* page = stack.back().page;
178 currentPageOffset = stack.back().offset;
194 stack.pop_back();
203 while (stack.size() > 0)
util.h 10 #include <stack>
  /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/chromium_org/v8/src/
json.js 50 function SerializeArray(value, replacer, stack, indent, gap) {
51 if (!%PushIfAbsent(stack, value)) {
59 var strP = JSONSerialize($String(i), value, replacer, stack,
76 stack.pop();
80 function SerializeObject(value, replacer, stack, indent, gap) {
81 if (!%PushIfAbsent(stack, value)) {
92 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
104 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
124 stack.pop();
128 function JSONSerialize(key, holder, replacer, stack, indent, gap)
    [all...]
  /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/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/third_party/boringssl/src/crypto/perlasm/
x86asm.pl 23 if ($opcode =~ /^push/) { $stack+=4; }
24 elsif ($opcode =~ /^pop/) { $stack-=4; }
44 sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num); }
45 sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num); }
46 sub ::blindpop { &pop($_[0]); $stack+=4; }
47 sub ::wparam { &DWP($stack+4*$_[0],"esp"); }
199 $stack=4;
213 $stack=0;
223 $stack+=16; # readjust esp as if we didn't pop anything
  /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...]
  /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);

Completed in 983 milliseconds

1 2 3 4 5 6 7 891011>>