HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 251 - 275 of 1681) sorted by null

<<11121314151617181920>>

  /external/compiler-rt/lib/asan/tests/
asan_benchmarks_test.cc 73 int stack[1000]; local
74 Ident(stack);
  /external/llvm/include/llvm/ADT/
ImmutableSet.h 651 SmallVector<uintptr_t,20> stack; member in class:llvm::ImutAVLTreeGenericIterator
661 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root));
665 assert(!stack.empty());
666 return reinterpret_cast<TreeTy*>(stack.back() & ~Flags);
670 assert(!stack.empty());
671 return stack.back() & Flags;
675 bool atEnd() const { return stack.empty(); }
678 return stack.size() == 1 && getVisitState() == VisitedNone;
682 assert(!stack.empty());
683 stack.pop_back()
    [all...]
  /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/skia/legacy/include/core/
SkClipStack.h 49 B2FIter(const SkClipStack& stack);
73 * Restarts the iterator on a clip stack.
75 void reset(const SkClipStack& stack);
  /external/v8/test/mjsunit/
stack-traces.js 115 // in the stack trace produced when running the given function.
122 assertTrue(e.stack.indexOf(expected[i]) != -1,
123 name + " doesn't contain expected[" + i + "] stack = " + e.stack);
127 assertEquals(e.stack.indexOf(unexpected[i]), -1,
142 assertEquals(-1, e.stack.indexOf('at new ReferenceError'),
159 assertTrue(e.stack.indexOf('at new ReferenceError') != -1,
166 // If an error occurs while the stack trace is being formatted it should
178 assertTrue(e.stack.indexOf('<error: ReferenceError') != -1,
184 // the stack frame. Put that in your pipe and smoke it
    [all...]
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/valgrind/main/drd/tests/
fp_race_xml.stderr.exp 41 <stack>
50 </stack>
64 <stack>
73 </stack>
  /ndk/sources/host-tools/ndk-stack/
GNUMakefile 20 BUILD_DIR := /tmp/ndk-$(USER)/build/build-ndk-stack
21 PROGNAME := /tmp/ndk-$(USER)/ndk-stack
55 NDK_STACK_SOURCES := ndk-stack.c \
56 ndk-stack-parser.c
  /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/Gallery2/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]);
  /bionic/libc/bionic/
pthread_create.cpp 68 // GCC looks in the TLS for the stack guard on x86, so copy it there from our global.
129 void* stack = mmap(NULL, stack_size, prot, flags, -1, 0); local
130 if (stack == MAP_FAILED) {
134 // Set the guard region at the end of the stack to PROT_NONE.
135 if (mprotect(stack, guard_size, PROT_NONE) == -1) {
136 munmap(stack, stack_size);
140 return stack;
168 // Make sure the stack size is PAGE_SIZE aligned.
172 // The caller didn't provide a stack, so allocate one.
176 __libc_format_log(ANDROID_LOG_WARN, "libc", "pthread_create failed: couldn't allocate %zd-byte stack", stack_size)
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_amd64.S 35 # Align stack frame.
46 # Unalign stack frame back.
115 # Align stack frame.
126 # Unalign stack frame back.
164 /* We do not need executable stack. */
165 .section .note.GNU-stack,"",@progbits
  /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
  /frameworks/base/core/java/android/util/
JsonReader.java 205 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonReader
536 stack.clear();
537 stack.add(JsonScope.CLOSED);
564 return stack.get(stack.size() - 1);
568 return stack.remove(stack.size() - 1);
572 stack.add(newTop);
576 * Replace the value on the top of the stack with the given value.
579 stack.set(stack.size() - 1, newTop)
    [all...]
  /external/regex-re2/re2/
onepass.cc 399 InstCond *stack = new InstCond[size]; local
417 // Flood graph using manual stack, filling in actions as found.
426 stack[nstack].id = id;
427 stack[nstack++].cond = 0;
429 int id = stack[--nstack].id;
431 uint32 cond = stack[nstack].cond;
441 stack[nstack].id = ip->out1();
442 stack[nstack++].cond = cond;
443 stack[nstack].id = ip->out();
444 stack[nstack++].cond = cond
    [all...]
  /libcore/luni/src/main/java/java/lang/
Throwable.java 36 * message in most cases), and for saving a stack trace (that is, a record of
37 * the call stack at a particular point in time) which can be printed later.
43 * information. When printing the stack trace, the trace of the cause is
70 * An intermediate representation of the stack trace. This field may
76 * A fully-expanded representation of the stack trace.
81 * Constructs a new {@code Throwable} that includes the current stack trace.
88 * Constructs a new {@code Throwable} with the current stack trace and the
100 * Constructs a new {@code Throwable} with the current stack trace, the
115 * Constructs a new {@code Throwable} with the current stack trace and the
128 * Constructs a new {@code Throwable} with the current stack trace, th
324 StackTraceElement[] stack = getInternalStackTrace(); local
    [all...]
  /bionic/libc/arch-x86/bionic/
clone.S 12 # 16-byte alignment on child stack
15 # insert arguments onto the child stack
43 # with the appropriate arguments on the child stack
71 # insert arguments onto the child stack
103 # with the appropriate arguments on the child stack
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_INVOKE_METHOD_CHAIN.S 14 SAVEAREA_FROM_FP(r1, rFP) @ r1<- stack save area
16 SAVEAREA_FROM_FP(r10, r1) @ r10<- stack save area
20 bxlo r12 @ return to raise stack overflow excep.
  /external/icu4c/layout/
LigatureSubstProc.cpp 65 le_int32 stack[nComponents]; local
88 stack[++mm] = componentGlyph;
101 componentStack[m] = stack[mm--];
  /external/valgrind/main/coregrind/m_syswrap/
syscall-mips32-linux.S 72 Int nsigwords) // stack
163 addu $29, $29, 56 #release the stack frame.
185 addu $29, $29, 56 #release the stack frame.
206 /* Let the linker know we don't need an executable stack */
207 .section .note.GNU-stack,"",%progbits
  /external/webkit/Source/WebCore/platform/image-decoders/gif/
GIFImageReader.h 81 unsigned char *stackp; /* Current stack pointer */
119 unsigned char* stack; /* Base of LZW decoder stack */ member in struct:GIFFrameReader
142 suffix = stack = 0;
150 delete []stack;
  /libcore/luni/src/test/java/tests/api/java/util/
StackTest.java 21 import java.util.Stack;
25 Stack s;
28 * java.util.Stack#Stack()
31 // Test for method java.util.Stack()
32 assertEquals("Stack creation failed", 0, s.size());
36 * java.util.Stack#empty()
39 // Test for method boolean java.util.Stack.empty()
40 assertTrue("New stack answers non-empty", s.empty());
42 assertTrue("Stack should not be empty but answers empty", !s.empty())
133 Stack<Object> stack = new Stack<Object>(); local
    [all...]
  /external/opencv/cvaux/src/
cvsegment.cpp 58 #define PUSH(Y,IL,IR,IPL,IPR,FL) { stack[StIn].y=(ushort)(Y); \
59 stack[StIn].l=(ushort)(IL); \
60 stack[StIn].r=(ushort)(IR); \
61 stack[StIn].Prevl=(ushort)(IPL); \
62 stack[StIn].Prevr=(ushort)(IPR); \
63 stack[StIn].fl=(short)(FL); \
67 Y=stack[StIn].y; \
68 IL=stack[StIn].l; \
69 IR=stack[StIn].r;\
70 IPL=stack[StIn].Prevl;
94 Seg *stack = (Seg*)pStack; local
486 void* stack = 0; local
    [all...]

Completed in 1858 milliseconds

<<11121314151617181920>>