HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 51 - 75 of 1681) sorted by null

1 23 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/stack.defn/
emplace.pass.cpp 10 // <stack>
14 #include <stack>
22 std::stack<Emplaceable> q;
push.pass.cpp 10 // <stack>
14 #include <stack>
19 std::stack<int> q;
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;
  /external/stlport/stlport/stl/
_stack.h 47 class stack class in inherits:__stlport_class
50 : public __stlport_class<stack<_Tp> >
52 : public __stlport_class<stack<_Tp, _Sequence> >
58 typedef stack<_Tp> _Self;
60 typedef stack<_Tp, _Sequence> _Self;
74 stack() : c() {} function in class:stack
75 explicit stack(const _Sequence& __s) : c(__s) {} function in class:stack
78 stack(__move_source<_Self> src) function in class:stack
106 inline bool _STLP_CALL operator==(const stack< _STLP_STACK_ARGS >& __x,
107 const stack< _STLP_STACK_ARGS >& __y
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_stack.h 47 class stack class in inherits:__stlport_class
50 : public __stlport_class<stack<_Tp> >
52 : public __stlport_class<stack<_Tp, _Sequence> >
58 typedef stack<_Tp> _Self;
60 typedef stack<_Tp, _Sequence> _Self;
74 stack() : c() {} function in class:stack
75 explicit stack(const _Sequence& __s) : c(__s) {} function in class:stack
78 stack(__move_source<_Self> src) function in class:stack
106 inline bool _STLP_CALL operator==(const stack< _STLP_STACK_ARGS >& __x,
107 const stack< _STLP_STACK_ARGS >& __y
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_stack.h 47 class stack class in inherits:__stlport_class
50 : public __stlport_class<stack<_Tp> >
52 : public __stlport_class<stack<_Tp, _Sequence> >
58 typedef stack<_Tp> _Self;
60 typedef stack<_Tp, _Sequence> _Self;
74 stack() : c() {} function in class:stack
75 explicit stack(const _Sequence& __s) : c(__s) {} function in class:stack
78 stack(__move_source<_Self> src) function in class:stack
106 inline bool _STLP_CALL operator==(const stack< _STLP_STACK_ARGS >& __x,
107 const stack< _STLP_STACK_ARGS >& __y
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_stack.h 47 class stack class in inherits:__stlport_class
50 : public __stlport_class<stack<_Tp> >
52 : public __stlport_class<stack<_Tp, _Sequence> >
58 typedef stack<_Tp> _Self;
60 typedef stack<_Tp, _Sequence> _Self;
74 stack() : c() {} function in class:stack
75 explicit stack(const _Sequence& __s) : c(__s) {} function in class:stack
78 stack(__move_source<_Self> src) function in class:stack
106 inline bool _STLP_CALL operator==(const stack< _STLP_STACK_ARGS >& __x,
107 const stack< _STLP_STACK_ARGS >& __y
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_stack.h 47 class stack class in inherits:__stlport_class
50 : public __stlport_class<stack<_Tp> >
52 : public __stlport_class<stack<_Tp, _Sequence> >
58 typedef stack<_Tp> _Self;
60 typedef stack<_Tp, _Sequence> _Self;
74 stack() : c() {} function in class:stack
75 explicit stack(const _Sequence& __s) : c(__s) {} function in class:stack
78 stack(__move_source<_Self> src) function in class:stack
106 inline bool _STLP_CALL operator==(const stack< _STLP_STACK_ARGS >& __x,
107 const stack< _STLP_STACK_ARGS >& __y
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_stack.h 47 class stack class in inherits:__stlport_class
50 : public __stlport_class<stack<_Tp> >
52 : public __stlport_class<stack<_Tp, _Sequence> >
58 typedef stack<_Tp> _Self;
60 typedef stack<_Tp, _Sequence> _Self;
74 stack() : c() {} function in class:stack
75 explicit stack(const _Sequence& __s) : c(__s) {} function in class:stack
78 stack(__move_source<_Self> src) function in class:stack
106 inline bool _STLP_CALL operator==(const stack< _STLP_STACK_ARGS >& __x,
107 const stack< _STLP_STACK_ARGS >& __y
    [all...]
  /external/compiler-rt/lib/asan/
asan_stack.h 22 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp, bool fast);
23 void PrintStack(StackTrace *stack);
27 // Get the stack trace with the given pc and bp.
28 // The pc will be in the position 0 of the resulting stack trace.
32 StackTrace stack; \
33 GetStackTrace(&stack, max_s, pc, bp, fast)
35 // NOTE: A Rule of thumb is to retrieve stack trace in the interceptors
37 // don't want stack trace to contain functions from ASan internals.
63 PrintStack(&stack); \
  /external/valgrind/main/memcheck/tests/linux/
stack_switch.c 35 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/srec/srec/crec/
srec_results.c 112 AstarStack* stack = rec ? rec->astar_stack : 0; local
114 if (!stack)
119 rc = astar_stack_prepare(stack, n, rec);
129 if (stack->num_complete_paths)
131 *bestcost = stack->complete_paths[0]->costsofar;
144 AstarStack* stack = rec ? rec->astar_stack : 0; local
145 astar_stack_clear(stack);
151 AstarStack* stack = rec ? rec->astar_stack : 0; local
152 return stack ? stack->num_complete_paths : 0
158 AstarStack* stack = rec ? rec->astar_stack : 0; local
173 AstarStack* stack = rec ? rec->astar_stack : 0; local
181 AstarStack* stack = rec ? rec->astar_stack : 0; local
208 AstarStack* stack = rec ? rec->astar_stack : 0; local
234 AstarStack* stack = rec ? rec->astar_stack : 0; local
286 AstarStack* stack = rec ? rec->astar_stack : 0; local
353 AstarStack* stack = rec ? rec->astar_stack : 0; local
460 AstarStack* stack = rec ? rec->astar_stack : 0; local
    [all...]
  /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/compiler-rt/lib/msan/
msan.h 44 void *MsanReallocate(StackTrace *stack, void *oldp, uptr size,
67 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp,
70 void ReportUMR(StackTrace *stack, u32 origin);
71 void ReportExpectedUMRNotFound(StackTrace *stack);
77 StackTrace stack; \
78 stack.size = 0; \
80 GetStackTrace(&stack, flags()->num_callers, \
  /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...]
  /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/clang/test/CodeGen/
2002-12-15-StructParameters.c 5 void *stack; member in struct:__anon6245
  /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

Completed in 767 milliseconds

1 23 4 5 6 7 8 91011>>