HomeSort by relevance Sort by last modified time
    Searched full:stack (Results 76 - 100 of 10778) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/test/Sema/
pragma-pack-3.c 4 // Stack: [], Alignment: 8
7 // Stack: [8], Alignment: 1
10 // Stack: [8, 1], Alignment: 4
13 // top stack entry and resets the current alignment. This is both
19 // Stack: [8, 1], Alignment: 8
22 // Stack: [8], Alignment: 1
30 // Stack: [], Alignment: 8
  /external/llvm/lib/Target/R600/
AMDGPUFrameLowering.cpp 10 // Interface to describe a layout of a stack frame on a AMDIL target machine
35 // The StackWidth determines how stack objects are laid out in memory.
36 // For a vector stack variable, like: int4 stack[2], the data will be stored
41 // T0.X = stack[0].x
42 // T1.X = stack[0].y
43 // T2.X = stack[0].z
44 // T3.X = stack[0].w
45 // T4.X = stack[1].x
46 // T5.X = stack[1].
    [all...]
  /external/valgrind/main/memcheck/tests/linux/
stack_changes.c 11 // checks that Valgrind notices their stack changes properly.
28 void *stack; local
37 stack = (void *)mmap(0, STACK_SIZE, PROT_READ|PROT_WRITE|PROT_EXEC,
40 if (stack == (void*)-1) {
45 ret = VALGRIND_STACK_REGISTER(stack, stack + STACK_SIZE);
48 uc->uc_stack.ss_sp = stack;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/
swap.pass.cpp 10 // <stack>
12 // void swap(stack& q);
14 #include <stack>
29 std::stack<int> q1 = make<std::stack<int> >(5);
30 std::stack<int> q2 = make<std::stack<int> >(10);
31 std::stack<int> q1_save = q1;
32 std::stack<int> q2_save = q2;
types.pass.cpp 10 // <stack>
13 // class stack
27 #include <stack>
32 : private std::stack<int>
50 static_assert((std::is_same<std::stack<int>::container_type, std::deque<int> >::value), "");
51 static_assert((std::is_same<std::stack<double, std::vector<int> >::container_type, std::vector<int> >::value), "");
52 static_assert((std::is_same<std::stack<double, std::vector<int> >::value_type, int>::value), "");
53 static_assert((std::is_same<std::stack<int>::reference, std::deque<int>::reference>::value), "");
54 static_assert((std::is_same<std::stack<int>::const_reference, std::deque<int>::const_reference>::value), "");
55 static_assert((std::is_same<std::stack<int>::size_type, std::deque<int>::size_type>::value), "")
    [all...]
  /external/clang/test/Analysis/
stack-addr-ps.c 5 return &x; // expected-warning{{Address of stack memory associated with local variable 'x' returned}} expected-warning{{address of stack memory associated with local variable 'x' returned}}
9 return &y; // expected-warning{{Address of stack memory associated with local variable 'y' returned}} expected-warning{{address of stack memory associated with local variable 'y' returned}}
18 return y; // expected-warning{{Address of stack memory associated with local variable 'w' returned to caller}}
23 return &(unsigned short){((unsigned short)0x22EF)}; // expected-warning{{Address of stack memory}}
29 return &((struct s){ 2, 0.4, 5 * 8 }); // expected-warning{{Address of stack memory}}
33 return p; // expected-warning{{Address of stack memory}}
38 return p; // expected-warning{{Address of stack memory}}
66 // This block is stack allocated because it has captures
    [all...]
  /external/clang/test/Driver/
stackrealign.c 2 // NORMAL-NOT: -force-align-stack
6 // MREALIGN: -force-align-stack
11 // MNOREALIGN-NOT: -force-align-stack
  /external/valgrind/main/memcheck/tests/
execve1.stderr.exp-kfail 3 Address 0x........ is not stack'd, malloc'd or (recently) free'd
7 Address 0x........ is not stack'd, malloc'd or (recently) free'd
11 Address 0x........ is not stack'd, malloc'd or (recently) free'd
supp_unknown.stderr.exp 6 If you believe this happened as a result of a stack
9 main thread stack using the --main-stacksize= flag.
10 The main thread stack size used in this run was ....
supp_unknown.stderr.exp-kfail 5 If you believe this happened as a result of a stack
8 main thread stack using the --main-stacksize= flag.
9 The main thread stack size used in this run was ....
  /external/valgrind/main/none/tests/linux/
blockfault.stderr.exp 6 If you believe this happened as a result of a stack
9 main thread stack using the --main-stacksize= flag.
10 The main thread stack size used in this run was ....
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
NamespaceMappings.java 31 * prefix/uri/depth triplets are pushed on a stack pushed on a stack. The depth
47 * "def" is pushed on the stack with depth 1.
52 * stack. Of course popNamespaces(2) would pop anything with depth 2 or
55 * So prefix/uri pairs are pushed and poped off the stack as elements are
57 * are on the stack and a prefix can be found given a uri, or a uri can be found
73 * Each entry (prefix) in this hashtable points to a Stack of URIs
74 * This table maps a prefix (String) to a Stack of NamespaceNodes.
75 * All Namespace nodes in that retrieved stack have the same prefix,
76 * though possibly different URI's or depths. Such a stack must hav
119 Stack stack; local
141 final Stack stack = getPrefixStack(prefix); local
152 final Stack stack = (Stack) m_namespaces.get(prefix); local
210 Stack stack; local
233 Stack stack; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_stack.h 0 // Stack implementation -*- C++ -*-
78 * first-in-last-out %stack behavior.
88 * push, @c pop, and @c top, which are standard %stack/FILO
92 class stack class
102 operator==(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
106 operator<(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
126 stack(const _Sequence& __c = _Sequence()) function in class:stack
130 stack(const _Sequence& __c function in class:stack
134 stack(_Sequence&& __c = _Sequence()) function in class:stack
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_stack.h 0 // Stack implementation -*- C++ -*-
78 * first-in-last-out %stack behavior.
88 * push, @c pop, and @c top, which are standard %stack/FILO
92 class stack class
102 operator==(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
106 operator<(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
126 stack(const _Sequence& __c = _Sequence()) function in class:stack
130 stack(const _Sequence& __c function in class:stack
134 stack(_Sequence&& __c = _Sequence()) function in class:stack
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_stack.h 0 // Stack implementation -*- C++ -*-
78 * first-in-last-out %stack behavior.
88 * push, @c pop, and @c top, which are standard %stack/FILO
92 class stack class
102 operator==(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
106 operator<(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
126 stack(const _Sequence& __c = _Sequence()) function in class:stack
130 stack(const _Sequence& __c function in class:stack
134 stack(_Sequence&& __c = _Sequence()) function in class:stack
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_stack.h 0 // Stack implementation -*- C++ -*-
78 * first-in-last-out %stack behavior.
88 * push, @c pop, and @c top, which are standard %stack/FILO
92 class stack class
102 operator==(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
106 operator<(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
126 stack(const _Sequence& __c = _Sequence()) function in class:stack
130 stack(const _Sequence& __c function in class:stack
134 stack(_Sequence&& __c = _Sequence()) function in class:stack
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_stack.h 0 // Stack implementation -*- C++ -*-
78 * first-in-last-out %stack behavior.
88 * push, @c pop, and @c top, which are standard %stack/FILO
92 class stack class
102 operator==(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
106 operator<(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
126 stack(const _Sequence& __c = _Sequence()) function in class:stack
130 stack(const _Sequence& __c function in class:stack
134 stack(_Sequence&& __c = _Sequence()) function in class:stack
    [all...]
  /art/test/094-pattern/
info.txt 3 The test may throw a StackOverflowError if the stack size is too small. With
  /art/test/302-float-conversion/
info.txt 2 properly handled by the VM. For example, x86 systems using the x87 stack
  /dalvik/tests/094-pattern/
info.txt 3 The test may throw a StackOverflowError if the stack size is too small. With
  /dalvik/tests/302-float-conversion/
info.txt 2 properly handled by the VM. For example, x86 systems using the x87 stack
  /development/ndk/platforms/android-3/arch-arm/lib-bootstrap/
crtend_android.o 
  /development/ndk/platforms/android-9/arch-mips/lib-bootstrap/
crtend_android.o 
  /external/apache-xml/src/main/java/org/apache/xml/utils/
BoolStack.java 25 * Simple stack for boolean values.
73 * Clears the stack.
82 * Pushes an item onto the top of this stack.
85 * @param val the boolean to be pushed onto this stack.
98 * Removes the object at the top of this stack and returns that
101 * @return The object at the top of this stack.
102 * @throws EmptyStackException if this stack is empty.
110 * Removes the object at the top of this stack and returns the
125 * Set the item at the top of this stack
128 * @param b Object to set at the top of this stack
    [all...]
  /external/llvm/test/Object/Inputs/
trivial-object-test.elf-i386 

Completed in 1254 milliseconds

1 2 34 5 6 7 8 91011>>