Searched defs:stack (Results 1 - 25 of 207) sorted by relevance

123456789

/external/clang/test/CodeGen/
H A D2002-12-15-StructParameters.c5 void *stack; member in struct:__anon3642
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPDialogEventListener.java16 package gov.nist.javax.sip.stack;
H A DSIPTransactionEventListener.java26 package gov.nist.javax.sip.stack;
H A DHandshakeCompletedListenerImpl.java19 package gov.nist.javax.sip.stack;
H A DRawMessageChannel.java1 package gov.nist.javax.sip.stack;
H A DSIPStackTimerTask.java9 package gov.nist.javax.sip.stack;
31 System.out.println("SIP stack timer task failed due to exception:");
H A DServerRequestInterface.java29 package gov.nist.javax.sip.stack;
35 * This is implemented by the application. The stack calls the message
H A DServerResponseInterface.java29 package gov.nist.javax.sip.stack;
39 * This is implemented by the application. The stack calls the message
H A DDefaultRouter.java29 package gov.nist.javax.sip.stack;
H A DSIPDialogErrorEvent.java16 package gov.nist.javax.sip.stack;
H A DSIPTransactionErrorEvent.java26 package gov.nist.javax.sip.stack;
H A DStackMessageFactory.java29 package gov.nist.javax.sip.stack;
34 * by the application and called by the stack for processing requests
35 * and responses. When a Request comes in off the wire, the stack calls
37 * When a response comes off the wire, the stack calls newSIPServerResponse
61 * Generate a new server response for the stack.
/external/kernel-headers/original/asm-arm/
H A Dsmp.h65 * This also gives us the initial stack to use for this CPU.
85 void *stack; member in struct:secondary_data
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStackExtensions.cs45 public static T elementAt<T>( this Stack<T> stack, int index ) argument
47 return stack.ElementAt( index );
51 public static T peek<T>( this Stack<T> stack )
53 return stack.Peek();
57 public static T pop<T>( this Stack<T> stack )
59 return stack.Pop();
63 public static void push<T>( this Stack<T> stack, T obj ) argument
65 stack.Push( obj );
69 public static int size<T>( this Stack<T> stack )
71 return stack
75 setSize( this Stack<T> stack, int size ) argument
[all...]
/external/compiler-rt/lib/asan/tests/
H A Dasan_benchmarks_test.cc74 int stack[1000]; local
75 Ident(stack);
/external/guava/guava-testlib/src/com/google/common/testing/
H A DTearDownStack.java29 * A {@code TearDownStack} contains a stack of {@link TearDown} instances.
40 final LinkedList<TearDown> stack = new LinkedList<TearDown>(); field in class:TearDownStack
54 stack.addFirst(tearDown);
62 for (TearDown tearDown : stack) {
74 stack.clear();
/external/guava/guava-tests/test/com/google/common/testing/
H A DTestLogHandlerTest.java33 private TearDownStack stack = new TearDownStack(); field in class:TestLogHandlerTest
45 stack.addTearDown(new TearDown() {
84 stack.runTearDown();
/external/proguard/src/proguard/evaluation/
H A DInvocationUnit.java30 * and it updates the stack for the invocation of a class member.
53 * Updates the given stack corresponding to the execution of the given
61 Stack stack);
56 invokeMember(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction, Stack stack) argument
/external/skia/tests/
H A DClipStackTest.cpp17 // Build up a clip stack with a path, an empty clip, and a rect.
88 static void assert_count(skiatest::Reporter* reporter, const SkClipStack& stack, argument
90 REPORTER_ASSERT(reporter, count == stack.getSaveCount());
92 SkClipStack::B2FIter iter(stack);
101 SkClipStack stack; local
103 assert_count(reporter, stack, 0);
112 stack.clipDevRect(gRects[i], SkRegion::kIntersect_Op);
116 SkClipStack::B2FIter iter(stack);
129 stack.reset();
130 assert_count(reporter, stack,
[all...]
/external/speex/libspeex/
H A Dcb_search_bfin.h37 void compute_weighted_codebook(const signed char *shape_cb, const spx_word16_t *r, spx_word16_t *resp, spx_word16_t *resp2, spx_word32_t *E, int shape_cb_size, int subvect_size, char *stack) argument
H A Dvq_bfin.h37 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) argument
/external/valgrind/main/exp-bbv/tests/amd64-linux/
H A Dfldcw_check.S31 # offset on stack
32 stack: label
33 sub $8,%rsp # allocate space on stack
36 add $8,%rsp # restore stack
131 fldl three # load value onto fp stack
137 fistpl result # save stack value as integer to mem
/external/valgrind/main/exp-bbv/tests/x86/
H A Dfldcw_check.S34 # offset on stack
35 stack: label
36 sub $4,%esp # allocate space on stack
39 add $4,%esp # restore stack
85 fldl three # load value onto fp stack
91 fistpl result # save stack value as integer to mem
/external/valgrind/main/memcheck/tests/linux/
H A Dstack_switch.c35 void *stack; local
40 if ( ( stack = mmap( NULL, 2* STACK_SIZE, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 ) ) == MAP_FAILED )
46 stackid = VALGRIND_STACK_REGISTER( stack, stack + STACK_SIZE );
48 if ( ( pid = clone( thread_main, stack + STACK_SIZE, CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|SIGCHLD, NULL ) ) == -1 )
/external/compiler-rt/lib/asan/
H A Dasan_stack.cc12 // Code for ASan stack trace.
84 // On 32-bits we don't compress stack traces.
85 // On 64-bits we compress stack traces: if a given pc differes slightly from
87 size_t AsanStackTrace::CompressStack(AsanStackTrace *stack, argument
92 for (size_t i = 0; i < stack->size && i < size; i++) {
93 compressed[i] = stack->trace[i];
96 if (stack->size < size)
97 compressed[stack->size] = 0;
103 for (size_t i = 0, n = stack->size; i < n; i++) {
104 uintptr_t pc = stack
150 UncompressStack(AsanStackTrace *stack, uint32_t *compressed, size_t size) argument
[all...]

Completed in 7185 milliseconds

123456789