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

1 2 3 4 56 7 8 91011>>

  /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/chromium_org/third_party/mesa/src/src/mesa/main/
matrix.c 62 * the top matrix of the current matrix stack and sets
104 * the top matrix of the current matrix stack and sets
136 * Set the current matrix stack.
138 * \param mode matrix stack.
144 * with the specified matrix stack.
232 * Push the current matrix stack.
236 * Verifies the current matrix stack is not full, and duplicates the top-most
237 * matrix in the stack.
238 * Marks __struct gl_contextRec::NewState with the stack dirty flag.
244 struct gl_matrix_stack *stack = ctx->CurrentStack local
284 struct gl_matrix_stack *stack = ctx->CurrentStack; local
    [all...]
  /external/mesa3d/src/mesa/main/
matrix.c 62 * the top matrix of the current matrix stack and sets
104 * the top matrix of the current matrix stack and sets
136 * Set the current matrix stack.
138 * \param mode matrix stack.
144 * with the specified matrix stack.
232 * Push the current matrix stack.
236 * Verifies the current matrix stack is not full, and duplicates the top-most
237 * matrix in the stack.
238 * Marks __struct gl_contextRec::NewState with the stack dirty flag.
244 struct gl_matrix_stack *stack = ctx->CurrentStack local
284 struct gl_matrix_stack *stack = ctx->CurrentStack; local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_posix_libcdep.cc 93 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp,
103 return stack->SlowUnwindStack(pc, max_s);
105 stack->size = 0;
106 stack->trace[0] = pc;
108 stack->max_size = max_s;
109 stack->FastUnwindStack(pc, bp, stack_top, stack_bottom);
  /external/speex/libspeex/
ltp.h 52 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack);
54 void open_loop_nbest_pitch(spx_word16_t *sw, int start, int end, int len, int *pitch, spx_word16_t *gain, int N, char *stack);
72 char *stack,
93 char *stack,
115 char *stack,
136 char *stack,
  /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
supp_unknown.stderr.exp 6 If you believe this happened as a result of a stack
9 main thread stack using the --main-stacksize= flag.
10 The main thread stack size used in this run was ....
execve2.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
sigaltstack.stderr.exp 1 calling sigaltstack, stack base is 0x........
signal2.stderr.exp 3 Address 0x........ is not stack'd, malloc'd or (recently) free'd
  /external/valgrind/main/none/tests/linux/
blockfault.stderr.exp 6 If you believe this happened as a result of a stack
9 main thread stack using the --main-stacksize= flag.
10 The main thread stack size used in this run was ....
  /external/bison/data/
stack.hh 21 b4_output_begin([b4_dir_prefix[]stack.hh])
22 b4_copyright([Stack handling for Bison parsers in C++],
26 ** \file ]b4_dir_prefix[stack.hh
27 ** Define the ]b4_namespace_ref[::stack class.
30 ]b4_cpp_guard_open([b4_dir_prefix[]stack.hh])[
36 class stack
43 stack () : seq_ ()
47 stack (unsigned int n) : seq_ (n)
94 /// Present a slice of the top of a stack.
95 template <class T, class S = stack<T>
    [all...]
  /external/chromium/base/
at_exit.h 9 #include <stack>
23 // AtExitManager object on the stack:
52 // AtExitManagers are kept on a global stack, and it will be removed during
65 std::stack<CallbackAndParam> stack_;
66 AtExitManager* next_manager_; // Stack of managers to allow shadowing.
  /external/chromium-trace/trace-viewer/src/ui/
quad_stack.css 6 quad-stack {
17 quad-stack > view-container {
25 quad-stack quad-view {
32 quad-stack > view-container > rect-view {
  /external/chromium_org/gpu/command_buffer/common/
debug_marker_manager.h 8 #include <stack>
27 // Removes the top group. This is safe to call even when stack is empty.
52 typedef std::stack<Group> GroupStack;
  /external/chromium_org/ui/base/events/
event_handler.h 8 #include <stack>
55 // EventDispatcher pushes itself on the top of this stack while dispatching
57 std::stack<EventDispatcher*> dispatchers_;
  /external/grub/docs/
boot.S 53 /* Initialize the stack pointer. */
54 movl $(stack + STACK_SIZE), %esp
78 /* Our stack area. */
79 .comm stack, STACK_SIZE
  /external/nist-sip/java/gov/nist/javax/sip/
DefaultAddressResolver.java 34 import gov.nist.javax.sip.stack.HopImpl;
35 import gov.nist.javax.sip.stack.MessageProcessor;
44 * some address that cannot be resolved you should register an AddressResolver with the stack.
  /external/valgrind/main/drd/tests/
sigaltstack.stderr.exp 1 calling sigaltstack, stack base is 0x........
  /external/valgrind/main/none/tests/
thread-exits.stdout.exp 0 stack grew OK
  /hardware/samsung_slsi/exynos5/libcamera2/
SignalDrivenThread.h 52 int32_t priority, size_t stack);
60 int32_t priority, size_t stack);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons/
ctor_container.pass.cpp 10 // <stack>
12 // explicit stack(const container_type& c);
14 #include <stack>
30 std::stack<int> q(d);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/
pop.pass.cpp 10 // <stack>
14 #include <stack>
19 std::stack<int> q;
  /external/chromium_org/base/debug/
trace_event_memory.cc 47 // Records a stack of TRACE_MEMORY events. One per thread is required.
63 TraceMemoryStack* stack = static_cast<TraceMemoryStack*>(value); local
64 delete stack;
80 TraceMemoryStack* stack =
82 delete stack;
92 // Returns the thread-local trace memory stack for the current thread, creating
96 TraceMemoryStack* stack = local
99 if (!stack) {
100 stack = new TraceMemoryStack;
101 tls_trace_memory_stack.Set(stack);
276 TraceMemoryStack* stack = GetTraceMemoryStack(); local
282 TraceMemoryStack* stack = GetTraceMemoryStack(); local
    [all...]

Completed in 1107 milliseconds

1 2 3 4 56 7 8 91011>>