/external/pcre/dist/doc/ |
pcre_assign_jit_stack.3 | 23 This function provides control over the memory used as a stack at run-time by a 29 data a JIT stack or a value to be passed to the callback 33 the machine stack is used. 36 be a valid JIT stack, the result of calling \fBpcre[16|32]_jit_stack_alloc()\fP. 39 the start of matching, in order to set up a JIT stack. If the result is NULL, 40 the internal 32K stack is used; otherwise the return value must be a valid JIT 41 stack, the result of calling \fBpcre[16|32]_jit_stack_alloc()\fP. 43 You may safely assign the same JIT stack to multiple patterns, as long as they 45 must use its own JIT stack. For more details, see the
|
/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/libcxx/test/containers/container.adaptors/stack/stack.defn/ |
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/valgrind/main/drd/tests/ |
annotate_trace_memory_xml.stderr.exp-mips32 | 33 <stack> 42 </stack> 45 <stack> 54 </stack> 57 <stack> 66 </stack> 70 <stack> 79 </stack> 82 <stack> 91 </stack> [all...] |
/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/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
|
/development/ndk/platforms/android-3/arch-arm/lib-bootstrap/ |
crtend_android.o | |
/development/ndk/platforms/android-9/arch-mips/lib-bootstrap/ |
crtend_android.o | |
/development/samples/browseable/DocumentCentricRelinquishIdentity/ |
_index.jd | 7 This sample shows how to relinquish identity to activities above it in the task stack.
|
/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/chromium_org/tools/clang/blink_gc_plugin/tests/ |
stack_allocated.txt | 8 ./stack_allocated.h:26:28: warning: [blink-gc] Stack-allocated class 'AnotherStackObject' derives class 'PartObject' which is not stack allocated. 14 ./stack_allocated.h:36:5: note: [blink-gc] Stack-allocated field 'm_part' declared here: 15 StackObject m_part; // Cannot embed a stack allocated object.
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-3404.js | 6 // Reconfigure e.stack to be non-configurable 7 var desc1 = Object.getOwnPropertyDescriptor(error, "stack"); 8 Object.defineProperty(error, "stack", 11 var desc2 = Object.getOwnPropertyDescriptor(error, "stack");
|
/external/llvm/test/Object/Inputs/ |
trivial-object-test.elf-i386 | |
/external/llvm/test/tools/llvm-readobj/Inputs/ |
trivial.obj.elf-i386 | |