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

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
stl_stack.h 0 // Stack implementation -*- C++ -*-
53 * Do not attempt to use it directly. @headername{stack}
82 * first-in-last-out %stack behavior.
92 * push, @c pop, and @c top, which are standard %stack/FILO
96 class stack class
106 operator==(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
110 operator<(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
130 stack(const _Sequence& __c = _Sequence() function in class:stack
134 stack(const _Sequence& __c) function in class:stack
138 stack(_Sequence&& __c = _Sequence()) function in class:stack
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeAnalyzer.java 33 /* d = stack[i]
40 int[] stack = new int[length]; local
42 initStack(stack, codeAttr);
47 if (stack[i] < 0) {
49 visitBytecode(ci, stack, i);
55 if (stack[i] > maxStack)
56 maxStack = stack[i];
61 private void initStack(int[] stack, CodeAttribute ca) {
62 stack[0] = -1;
67 stack[et.handlerPc(i)] = -2; // an exception is on stac
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_generic-inl.h 56 // void** result: the stack-trace, as an array
57 // int* sizes: the size of each stack frame, as an array
60 // int skip_count: how many stack pointers to skip before storing in result
64 void * stack[kStackLength]; variable
67 size = backtrace(stack, kStackLength);
75 result[i] = stack[i + skip_count];
78 // No implementation for finding out the stack frame sizes yet.
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stacktrace_generic-inl.h 56 // void** result: the stack-trace, as an array
57 // int* sizes: the size of each stack frame, as an array
60 // int skip_count: how many stack pointers to skip before storing in result
64 void * stack[kStackLength]; variable
67 size = backtrace(stack, kStackLength);
75 result[i] = stack[i + skip_count];
78 // No implementation for finding out the stack frame sizes yet.
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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);
ctor_default.pass.cpp 10 // <stack>
12 // stack();
14 #include <stack>
22 std::stack<int, std::vector<int, stack_allocator<int, 10> > > q;
ctor_rcontainer.pass.cpp 10 // <stack>
12 // explicit stack(container_type&& c);
14 #include <stack>
36 std::stack<MoveOnly> q(make<std::deque<MoveOnly> >(5));
  /external/compiler-rt/lib/asan/
asan_report.h 22 // on the memory type (shadow/heap/stack/global).
36 void NORETURN ReportDoubleFree(uptr addr, StackTrace *stack);
37 void NORETURN ReportFreeNotMalloced(uptr addr, StackTrace *stack);
38 void NORETURN ReportAllocTypeMismatch(uptr addr, StackTrace *stack,
42 StackTrace *stack);
44 StackTrace *stack);
47 const char *offset2, uptr length2, StackTrace *stack);
51 uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack);
53 uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack);
55 uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialogEventListener.java 16 package gov.nist.javax.sip.stack;
SIPTransactionEventListener.java 26 package gov.nist.javax.sip.stack;
  /external/javassist/src/main/javassist/bytecode/analysis/
Frame.java 19 * Represents the stack frame and local variable table at a particular point in time.
25 private Type[] stack; field in class:Frame
31 * Create a new frame with the specified local variable table size, and max stack size
34 * @param stack the maximum stack size
36 public Frame(int locals, int stack) {
38 this.stack = new Type[stack];
63 * Returns the type on the stack at the specified index.
65 * @param index the position on the stack
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
Message.java 25 import java.util.Stack;
100 private Stack<Object> stack = new Stack<Object>(); field in class:Message.MessageBuilder
106 if (!c.isInstance(stack.peek())) {
107 throw new IllegalStateException("Internal stack error: "
109 + stack.peek().getClass().getName() + "'");
117 if (stack.isEmpty()) {
118 stack.push(Message.this);
122 ((Entity) stack.peek()).setBody(m);
    [all...]
  /bionic/libc/arch-arm/bionic/
crtend.S 39 .section .note.GNU-stack,"",%progbits
  /ndk/build/tools/
build-ndk-depends.sh 24 $PROGDIR/build-ndk-stack.sh --program-name=ndk-depends "$@"
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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;
  /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...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/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/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...]

Completed in 1614 milliseconds

1 23 4 5 6 7 8 91011>>