/dalvik/dx/src/com/android/dx/cf/code/ |
ExecutionStack.java | 26 * Representation of a Java method execution stack. 33 /** {@code non-null;} array of stack contents */ 34 private final TypeBearer[] stack; field in class:ExecutionStack 37 * {@code non-null;} array specifying whether stack contents have entries 42 * {@code >= 0;} stack pointer (points one past the end) / current stack 50 * @param maxStack {@code >= 0;} the maximum size of the stack for this 55 stack = new TypeBearer[maxStack]; 66 ExecutionStack result = new ExecutionStack(stack.length); 68 System.arraycopy(stack, 0, result.stack, 0, stack.length) [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/tests/ |
sexps.py | 51 stack = [[]] 55 stack.append([]) 57 if len(stack) == 1: 59 sexp = stack.pop() 60 stack[-1].append(sexp) 62 stack[-1].append(token) 63 if len(stack) != 1: 65 if len(stack[0]) != 1: 67 return stack[0][0]
|
/external/mesa3d/src/glsl/tests/ |
sexps.py | 51 stack = [[]] 55 stack.append([]) 57 if len(stack) == 1: 59 sexp = stack.pop() 60 stack[-1].append(sexp) 62 stack[-1].append(token) 63 if len(stack) != 1: 65 if len(stack[0]) != 1: 67 return stack[0][0]
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
pratom.h | 95 ** LIFO linked-list (stack) 109 ** Create a stack, a LIFO linked list 111 ** stack_name: a pointer to string containing the name of the stack 113 ** A pointer to the created stack, if successful, else NULL. 120 ** Push an element on the top of the stack 122 ** stack: pointer to the stack 123 ** stack_elem: pointer to the stack element 127 NSPR_API(void) PR_StackPush(PRStack *stack, PRStackElem *stack_elem); 132 ** Remove the element on the top of the stack 140 NSPR_API(PRStackElem *) PR_StackPop(PRStack *stack); variable 154 NSPR_API(PRStatus) PR_DestroyStack(PRStack *stack); variable [all...] |
/external/guava/guava-tests/test/com/google/common/testing/ |
TearDownStackTest.java | 38 final TearDownStack stack = buildTearDownStack(); local 41 stack.addTearDown(tearDown); 45 stack.runTearDown(); 52 final TearDownStack stack = buildTearDownStack(); local 55 stack.addTearDown(tearDownOne); 66 stack.addTearDown(tearDownTwo); 71 stack.runTearDown(); 79 final TearDownStack stack = buildTearDownStack(); local 82 stack.addTearDown(tearDownOne); 85 stack.addTearDown(tearDownTwo) [all...] |
/external/proguard/src/proguard/classfile/attribute/preverification/ |
FullFrame.java | 37 public VerificationType[] stack; field in class:FullFrame 49 * Creates a FullFrame with the given variables and stack. 53 VerificationType[] stack) 58 stack.length, 59 stack); 64 * Creates a FullFrame with the given variables and stack. 70 VerificationType[] stack) 76 this.stack = stack; 93 * Applies the given verification type visitor to all stack [all...] |
/frameworks/base/tools/preload/ |
Proc.java | 46 /** Maps thread ID to operation stack. */ 96 LinkedList<Operation> stack = stacks.get(threadId); local 97 if (stack == null) { 98 stack = new LinkedList<Operation>(); 99 stacks.put(threadId, stack); 102 if (!stack.isEmpty()) { 103 stack.getLast().subops.add(o); 106 stack.add(o); 118 LinkedList<Operation> stack = stacks.get(threadId); local 120 if (stack == null || stack.isEmpty()) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/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;
|
push_rv.pass.cpp | 10 // <stack> 14 #include <stack> 22 std::stack<MoveOnly> q;
|
/external/libffi/src/pa/ |
ffi.c | 82 /* PA has a downward growing stack, which looks like this: 99 The first four argument words on the stack are reserved for use by 111 The registers are allocated in the same manner as stack slots. 112 This allows the callee to save its arguments on the stack if 123 The rest of the arguments are passed on the stack starting at SP-52, 127 or in the stack. */ 129 /* ffi_prep_args is called by the assembly routine once stack space 132 The following code will put everything into the stack frame 140 void ffi_prep_args_pa32(UINT32 *stack, extended_cif *ecif, unsigned bytes) 149 debug(1, "%s: stack = %p, ecif = %p, bytes = %u\n", __FUNCTION__, stack [all...] |
/cts/tools/dasm/src/dasm/ |
parser.java | 812 java.util.Stack stack, 817 return action_obj.CUP$do_action(act_num, parser, stack, top); [all...] |
/external/chromium_org/third_party/cld/base/ |
crash.h | 19 // We'll also store a bit of stack trace context at the time of crash as 21 void* stack[32]; member in struct:base::CrashReason
|
/external/clang/test/CodeGen/ |
2002-12-15-StructParameters.c | 5 void *stack; member in struct:__anon18179
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
RawMessageChannel.java | 1 package gov.nist.javax.sip.stack;
|
SIPStackTimerTask.java | 9 package gov.nist.javax.sip.stack; 31 System.out.println("SIP stack timer task failed due to exception:");
|
ServerRequestInterface.java | 29 package gov.nist.javax.sip.stack; 35 * This is implemented by the application. The stack calls the message
|
/external/speex/libspeex/ |
cb_search.h | 62 char *stack, 72 char *stack, 88 char *stack, 99 char *stack,
|
lsp_bfin.h | 42 char *stack
|
vq.h | 45 void vq_nbest(spx_word16_t *in, const __m128 *codebook, int len, int entries, __m128 *E, int N, int *nbest, spx_word32_t *best_dist, char *stack); 47 void vq_nbest_sign(spx_word16_t *in, const __m128 *codebook, int len, int entries, __m128 *E, int N, int *nbest, spx_word32_t *best_dist, char *stack); 49 void vq_nbest(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack); 51 void vq_nbest_sign(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack);
|
lsp.h | 56 int lpc_to_lsp (spx_coef_t *a, int lpcrdr, spx_lsp_t *freq, int nb, spx_word16_t delta, char *stack); 57 void lsp_to_lpc(spx_lsp_t *freq, spx_coef_t *ak, int lpcrdr, char *stack);
|
/external/compiler-rt/lib/asan/ |
asan_allocator.h | 44 void GetAllocStack(StackTrace *stack); 45 void GetFreeStack(StackTrace *stack); 105 void *asan_memalign(uptr alignment, uptr size, StackTrace *stack, 107 void asan_free(void *ptr, StackTrace *stack, AllocType alloc_type); 109 void *asan_malloc(uptr size, StackTrace *stack); 110 void *asan_calloc(uptr nmemb, uptr size, StackTrace *stack); 111 void *asan_realloc(void *p, uptr size, StackTrace *stack); 112 void *asan_valloc(uptr size, StackTrace *stack); 113 void *asan_pvalloc(uptr size, StackTrace *stack); 116 StackTrace *stack); [all...] |
/external/chromium_org/base/ |
at_exit.h | 8 #include <stack> 23 // AtExitManager object on the stack: 55 // AtExitManagers are kept on a global stack, and it will be removed during 61 std::stack<base::Closure> stack_; 62 AtExitManager* next_manager_; // Stack of managers to allow shadowing.
|
/external/chromium_org/third_party/bintrees/bintrees/ |
cwalker.pxd | 9 from stack cimport node_stack_t 14 cdef node_stack_t *stack
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/ |
nasm-sectname.asm | 2 section .note.GNU-stack
|
/external/compiler-rt/lib/lsan/ |
lsan_allocator.h | 23 void *Allocate(const StackTrace &stack, uptr size, uptr alignment, 26 void *Reallocate(const StackTrace &stack, void *p, uptr new_size,
|