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

<<11121314151617181920>>

  /external/chromium_org/v8/test/mjsunit/regress/
regress-353058.js 5 // Flags: --stack-size=150
regress-crbug-385002.js 5 // Flags: --stack-size=200 --allow-natives-syntax
  /external/compiler-rt/lib/asan/tests/
asan_benchmarks_test.cc 73 int stack[1000]; local
74 Ident(stack);
  /external/deqp/framework/randomshaders/
rsgGeneratorState.hpp 71 // \todo [2011-06-10 pyry] Could we not expose whole statement stack to everyone?
73 void setStatementStack (std::vector<Statement*>& stack) { m_statementStack = &stack; }
  /external/lldb/include/lldb/Core/
History.h 17 #include <stack>
50 // onto the end of the history stack.
79 typedef std::stack<HistoryEvent> collection;
113 // onto the end of the history stack.
  /external/opencv/cv/src/
cvconvhull.cpp 45 icvSklansky_32s( CvPoint** array, int start, int end, int* stack, int nsign, int sign2 )
56 stack[0] = start;
60 stack[0] = pprev;
61 stack[1] = pcur;
62 stack[2] = pnext;
85 stack[stacksize] = pnext;
93 stack[1] = pcur;
95 stack[2] = pnext;
99 stack[stacksize-2] = pnext;
101 pprev = stack[stacksize-4]
234 int* stack = 0; local
    [all...]
  /external/strace/tests/
strace-k.test 14 ./stack-fcall ||
15 fail_ 'stack-fcall failed'
20 args="-e getpid -k ./stack-fcall"
  /external/valgrind/main/drd/tests/
fp_race_xml.stderr.exp 41 <stack>
50 </stack>
64 <stack>
73 </stack>
  /frameworks/base/services/core/java/com/android/server/wm/
Task.java 31 Task(AppWindowToken wtoken, TaskStack stack, int userId) {
34 mStack = stack;
  /packages/apps/Camera/src/com/android/camera/
CameraHolder.java 70 String[] stack; field in class:CameraHolder.OpenReleaseState
87 StackTraceElement[] stack = Thread.currentThread().getStackTrace(); local
88 String[] lines = new String[stack.length];
89 for (int i = 0; i < stack.length; i++) {
90 lines[i] = stack[i].toString();
92 s.stack = lines;
106 Log.d(TAG, "Stack:");
107 for (int j = 0; j < s.stack.length; j++) {
108 Log.d(TAG, " " + s.stack[j]);
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlTreeBuilder.java 38 /** Stack contains HTML4.Element objects to keep track of unclosed tags */
39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>(); field in class:HtmlTreeBuilder
59 while (stack.size() > 0) {
103 while (pos < stack.size() - 1) {
128 /** Finds the start tag from the stack, returns -1 if not found */
130 for (int i = stack.size() - 1; i >= 0; i--) {
131 HTML.Element e = stack.get(i);
140 * Adds a close tag corresponding to a tag on the stack, if
151 /** Pushes a tag onto the stack */
153 stack.add(element)
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTreeBuilder.java 38 /** Stack contains HTML4.Element objects to keep track of unclosed tags */
39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>(); field in class:HtmlTreeBuilder
59 while (stack.size() > 0) {
103 while (pos < stack.size() - 1) {
128 /** Finds the start tag from the stack, returns -1 if not found */
130 for (int i = stack.size() - 1; i >= 0; i--) {
131 HTML.Element e = stack.get(i);
140 * Adds a close tag corresponding to a tag on the stack, if
151 /** Pushes a tag onto the stack */
153 stack.add(element)
    [all...]
  /external/chromium_org/v8/test/mjsunit/
stack-traces-2.js 28 // Flags: --builtins-in-stack-traces
37 // stack trace.
44 assertTrue(e.stack.indexOf(nativeFuncName) >= 0, nativeFuncName);
49 // stack trace.
56 assertTrue(e.stack.indexOf(nativeFuncName) >= 0, nativeFuncName);
66 assertTrue(e.stack.indexOf(included) >= 0, included);
81 // builtin. Should not be omitted with the --builtins-in-stack-traces flag.
  /external/chromium_org/v8/test/webkit/fast/js/
stack-overflow-arrity-catch.js 24 description('Test that if an arrity check causes a stack overflow, the exception goes to the right catch');
40 // Should get here because of stack overflow,
41 // now cause a stack overflow exception due to arrity processing
45 // (1) It is dendent on the stack size if we arrive here, in (2) or
63 // (2) It is dendent on the stack size if we arrive here, in (1) or
71 // Should get here because of stack overflow,
72 // now cause a stack overflow exception due to arrity processing
deep-recursion-test.js 24 description("This test how deep we can recurse, and that we get an exception when we do, as opposed to a stack overflow.");
41 shouldBe("msg", "'RangeError: Maximum call stack size exceeded.'");
48 shouldBe("msg", "'RangeError: Maximum call stack size exceeded.'");
65 shouldBe("msg", "'RangeError: Maximum call stack size exceeded.'");
77 shouldBe("msg", "'RangeError: Maximum call stack size exceeded.'");
  /external/valgrind/main/coregrind/m_aspacemgr/
aspacemgr-common.c 364 Protect the stack active area and the guard areas appropriately.
366 stack. On success, also sets *initial_sp to what the stack pointer
373 VgStack* stack; local
377 /* Allocate the stack. */
385 stack = (VgStack*)(AddrH)sr_Res(sres);
388 aspacem_assert(VG_IS_PAGE_ALIGNED(stack));
392 (Addr) &stack[0],
397 (Addr) &stack->bytes[0],
402 (Addr) &stack->bytes[VG_STACK_GUARD_SZB + VG_STACK_ACTIVE_SZB],
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_eu.c 157 assert(p->current != &p->stack[BRW_EU_MAX_INSN_STACK-1]);
159 p->compressed_stack[p->current - p->stack] = p->compressed;
165 assert(p->current != p->stack);
167 p->compressed = p->compressed_stack[p->current - p->stack];
185 p->current = p->stack;
198 /* Set up control flow stack */
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profiler.cc 34 // Profile current program by sampling stack-trace every so often
267 void* stack[ProfileData::kMaxStackDepth]; local
271 stack[0] = GetPC(*reinterpret_cast<ucontext_t*>(signal_ucontext));
273 // We skip the top two stack trace entries (this function and one
279 int depth = GetStackTraceWithContext(stack + 1, arraysize(stack) - 1,
281 depth++; // To account for pc value in stack[0];
283 instance->collector_.Add(depth, stack);
  /external/libpcap/msdos/
ndis_0.asm 76 call _NdisAllocStack ;; Get and install a stack.
78 mov bx,ss ;; Save off the old stack in other regs
82 push bx ;; Save the old one on to the new stack
84 sub sp,&argsSize ;; Allocate space for arguments on the stack
93 mov cx,&argsSize ;; Move the arguments to the stack.
102 pop di ;; Pop off the old stack
104 mov bx,ss ;; Save off the current allocated stack.
106 mov ss,si ;; Restore the old stack
109 push bx ;; Free the stack. Push the pointer to it
114 add di,32 ;; Get a pointer to ax on the stack
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu.c 157 assert(p->current != &p->stack[BRW_EU_MAX_INSN_STACK-1]);
159 p->compressed_stack[p->current - p->stack] = p->compressed;
165 assert(p->current != p->stack);
167 p->compressed = p->compressed_stack[p->current - p->stack];
185 p->current = p->stack;
198 /* Set up control flow stack */
  /external/protobuf/gtest/test/
gtest_xml_output_unittest.py 65 Expected: 1%(stack)s]]></failure>
73 Expected: 1%(stack)s]]></failure>
76 Expected: 2%(stack)s]]></failure>
84 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]&gt;<![CDATA[</top>%(stack)s]]></failure>
91 Invalid characters in brackets []%(stack)s]]></failure>
108 </testsuites>""" % {'stack': STACK_TRACE_TEMPLATE}
  /external/srec/srec/crec/
srec_stats.c 141 void srec_stats_update_astar(AstarStack* stack)
147 stack->num_active_paths);
150 stack->num_complete_paths);
152 num_parps_in_use = stack->partial_path_array_size;
153 for (parp = stack->free_parp_list; parp; parp = parp->next)
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ProfileData.java 74 public void addSample(String[] stack) {
75 int[] ids = new int[stack.length];
76 for (int i = 0; i < stack.length; i++) {
77 ids[i] = nameToId(stack[i]);
81 for (int i = stack.length - 1; i >= 0; i--) {
127 // Writes out one stack, consisting of N+2 words:
129 // second word: depth of the stack (N)
130 // N words: each word is the id of one address in the stack
  /external/chromium_org/third_party/skia/tools/lua/
count_reduced_clipstacks.lua 20 function build_stack_string(stack)
22 for i = 1, #stack do
23 local element = stack[i];
41 local stack = canvas:getReducedClipStack()
42 local stackstr = build_stack_string(stack)
  /external/llvm/test/MC/ARM/
eh-directive-setfp.s 7 @ the stack pointer. This is required for the function that will change
8 @ the stack pointer out of the function prologue. If the exception is thrown,
9 @ then libunwind will reconstruct the stack pointer from the frame pointer.
11 @ (i) the unwind opcode to copy stack offset from the other register, and
12 @ (ii) the unwind opcode to add or subtract the stack offset.
43 @ The assembler should emit 0x9B to copy stack pointer from r11.
85 @ The assembler should emit 0x9B to copy stack pointer from r11.
128 @ The assembler should emit 0x9B to copy stack pointer from r11.
171 @ The assembler should emit 0x9B to copy stack pointer from r11.
229 @ The assembler should emit 0x9B to copy stack pointer from r11
    [all...]

Completed in 1543 milliseconds

<<11121314151617181920>>