/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_SAVE_STATE.S | 4 * Top of stack + 4: r7 value to save 5 * Top of stack + 0: r0 value to save 11 * the values on the stack - not the ones in those registers on entry.
|
/external/clang/test/PCH/ |
source-manager-stack.c | 1 // Test that the source manager has the "proper" idea about the include stack 5 // RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-show-note-include-stack -include %t.prefix.h %s 2> %t.diags.no_pch.txt 7 // RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-show-note-include-stack -include-pch %t.prefix.pch %s 2> %t.diags.pch.txt
|
/external/dropbear/libtomcrypt/src/misc/ |
burn_stack.c | 15 Burn stack, Tom St Denis 19 Burn some stack memory 20 @param len amount of stack to burn in bytes
|
/external/stlport/test/unit/ |
stack_test.cpp | 5 #include <stack> 35 stack<int, deque<int> > s; 49 stack<int, list<int> > s;
|
/external/valgrind/main/memcheck/tests/ |
execve1.stderr.exp | 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd 9 Address 0x........ is not stack'd, malloc'd or (recently) free'd 14 Address 0x........ is not stack'd, malloc'd or (recently) free'd
|
buflen_check.stderr.exp | 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd 9 Address 0x........ is not stack'd, malloc'd or (recently) free'd
|
/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...] |
/ndk/tests/device/test-gnustl-full/unit/ |
stack_test.cpp | 5 #include <stack> 35 stack<int, deque<int> > s; 49 stack<int, list<int> > s;
|
/ndk/tests/device/test-stlport/unit/ |
stack_test.cpp | 5 #include <stack> 35 stack<int, deque<int> > s; 49 stack<int, list<int> > s;
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ElemContext.java | 24 * This class is a stack frame that consists of 36 * A stack frame will be pushed for "A" at depth 1, 38 * Then "B1" stackframe is popped. When the stack frame for "B2" is 39 * pushed, this implementation re-uses the old stack fram object used 94 /** The next element "stack frame". This value will only be 95 * set once as deeper stack frames are not deleted when popped off, 98 * This makes for very fast pushing and popping of stack frames 99 * because very few stack frame objects are ever created, they are 103 * as they are re-used. Only the reference to the current stack frame, which 108 /** The previous element "stack frame". * [all...] |
/external/valgrind/main/exp-sgcheck/tests/ |
stackerr.stderr.exp-glibc27-x86 | 7 Expected: stack array "a" of size 28 in frame 2 back from here 8 Actual: stack array "beforea" of size 12 in frame 2 back from here 14 Expected: stack array "a" of size 28 in this frame 15 Actual: stack array "beforea" of size 12 in this frame 23 Expected: stack array "buf" of size 8 in frame 4 back from here 24 Actual: stack array "beforebuf" of size 8 in frame 4 back from here
|
/hardware/libhardware/include/hardware/ |
nfc.h | 33 * of the core NCI stack in Android for their own silicon. 40 * - Pass up received NCI messages from the controller to the stack 43 * 1) Core NCI stack calls open() 44 * 2) Core NCI stack executes CORE_RESET and CORE_INIT through calls to write() 45 * 3) Core NCI stack calls core_initialized() to allow HAL to do post-init configuration 46 * 4) Core NCI stack calls pre_discover() to allow HAL to prepare for RF discovery 47 * 5) Core NCI stack starts discovery through calls to write() 48 * 6) Core NCI stack stops discovery through calls to write() (e.g. screen turns off) 49 * 7) Core NCI stack calls pre_discover() to prepare for RF discovery (e.g. screen turned back on) 50 * 8) Core NCI stack starts discovery through calls to write( [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/stack.cons/ |
ctor_move.pass.cpp | 10 // <stack> 12 // stack(stack&& q); 14 #include <stack> 36 std::stack<MoveOnly> q(make<std::deque<MoveOnly> >(5)); 37 std::stack<MoveOnly> q2 = std::move(q);
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/stack.defn/ |
assign_move.pass.cpp | 10 // <stack> 12 // stack& operator=(stack&& q); 14 #include <stack> 36 std::stack<MoveOnly> q(make<std::deque<MoveOnly> >(5)); 37 std::stack<MoveOnly> q2;
|
/sdk/emulator/qtools/ |
check_stack.cpp | 45 class Stack { 51 Stack() { 60 void Stack::push(frame *pframe) { 62 fprintf(stderr, "Error: stack overflow\n"); 69 frame *Stack::pop() { 76 Stack *mStacks[kMaxThreads]; 121 // Get the stack for the current thread 122 Stack *mStack = mStacks[proc->pid]; 124 // If the stack does not exist, then allocate a new one. 126 mStack = new Stack(); [all...] |
read_method.cpp | 26 class Stack { 32 Stack() { 41 void Stack::push(frame *pframe) { 43 fprintf(stderr, "Error: stack overflow\n"); 50 frame *Stack::pop() { 57 void Stack::dump() { 70 Stack *stacks[kMaxThreads]; 115 // Get the stack for the current thread 116 Stack *pStack = stacks[proc->pid]; 118 // If the stack does not exist, then allocate a new one [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
IntStack.java | 26 * Implement a stack of simple integers. 67 * Pushes an item onto the top of this stack. 69 * @param i the int to be pushed onto this stack. 94 * Removes the object at the top of this stack and returns that 97 * @return The object at the top of this stack. 105 * Quickly pops a number of items from the stack. 114 * Looks at the object at the top of this stack without removing it 115 * from the stack. 117 * @return the object at the top of this stack. 118 * @throws EmptyStackException if this stack is empty [all...] |
ObjectStack.java | 26 * Implement a stack of simple integers. 67 * Pushes an item onto the top of this stack. 69 * @param i the int to be pushed onto this stack. 94 * Removes the object at the top of this stack and returns that 97 * @return The object at the top of this stack. 108 * Quickly pops a number of items from the stack. 117 * Looks at the object at the top of this stack without removing it 118 * from the stack. 120 * @return the object at the top of this stack. 121 * @throws EmptyStackException if this stack is empty [all...] |
/external/clang/test/CodeGen/ |
2002-02-13-UnnamedLocal.c | 4 * and did not have a VAR_DECL that explained the stack slot to LLVM. 5 * Now the LLVM code synthesizes a stack slot if one is presented that
|
/external/valgrind/main/drd/tests/ |
sem_as_mutex3.stderr.exp | 7 (thread finished, call stack no longer available) 9 (thread finished, call stack no longer available)
|
sem_open3.stderr.exp | 7 (thread finished, call stack no longer available) 9 (thread finished, call stack no longer available)
|
/external/valgrind/main/none/tests/ |
nestedfns.c | 4 modifying code on the stack, at least on x86 and amd64. It now 6 self-checking translations for translations taken from stack-like
|
/external/openfst/src/include/fst/extensions/pdt/ |
pdt.h | 37 // stack IDs. Each stack ID is unique to each distinct stack. The 46 // 'nodes_'. Each node represents the top of some stack and is 48 // the stack with the top 'popped' and its children are stored in 78 // Returns stack ID given the current stack ID (0 if empty) and 79 // label read. 'Pushes' onto a stack if the label is an open 80 // parenthesis, returning the new stack ID. 'Pops' the stack if th [all...] |
/external/compiler-rt/lib/asan/ |
asan_allocator.h | 52 void GetAllocStack(StackTrace *stack); 53 void GetFreeStack(StackTrace *stack); 121 // Fake stack frame contains local variables of one function. 122 // This struct should fit into a stack redzone (32 bytes). 154 // For each thread we create a fake stack and place stack objects on this fake 155 // stack instead of the real stack. The fake stack is not really a stack bu [all...] |
/external/chromium/base/ |
stack_container.h | 14 // This allocator can be used with STL containers to provide a stack buffer 15 // from which to allocate memory and overflows onto the heap. This stack buffer 16 // would be allocated on the stack and allows us to avoid heap operations in 23 // based on our allocator will share the same stack buffer. 25 // This stack buffer implementation is very simple. The first allocation that 26 // fits in the stack buffer will use the stack buffer. Any subsequent 27 // allocations will not use the stack buffer, even if there is unused room. 29 // be sure to reserve() in the container up to the stack buffer size. Otherwise 30 // the container will allocate a small array which will "use up" the stack [all...] |