HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 176 - 200 of 3945) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/unittests/Support/
ManagedStatic.cpp 31 // Valgrind's leak checker complains glibc's stack allocation.
32 // To appease valgrind, we provide our own stack for each thread.
34 void *stack = malloc(n); local
37 pthread_attr_setstack(&a, stack, n);
39 return stack;
  /external/stlport/test/unit/
stack_test.cpp 5 #include <stack>
35 stack<int, deque<int> > s;
49 stack<int, list<int> > s;
  /external/valgrind/main/memcheck/tests/linux/
rfcomm.stderr.exp 4 Address 0x........ is on thread 1's stack
5 Uninitialised value was created by a stack allocation
11 Address 0x........ is on thread 1's stack
12 Uninitialised value was created by a stack allocation
18 Address 0x........ is on thread 1's stack
19 Uninitialised value was created by a stack allocation
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/
ctor_alloc.pass.cpp 10 // <stack>
13 // explicit stack(const Alloc& a);
15 #include <stack>
21 : private std::stack<int, std::deque<int, test_allocator<int> > >
23 typedef std::stack<int, std::deque<int, test_allocator<int> > > base;
ctor_copy_alloc.pass.cpp 10 // <stack>
13 // stack(const stack& q, const Alloc& a);
15 #include <stack>
34 : public std::stack<T, C>
36 typedef std::stack<T, C> base;
  /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/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 ....
  /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-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/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/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stacktrace_test.cc 49 // Mark the last fp as zero to terminate the stack trace.
62 // Should get all on-stack retaddrs and start_pc.
76 // Should get all on-stack retaddrs up to the 4th slot and start_pc.
89 // Should get all on-stack retaddrs up to the 4th slot and start_pc.
115 StackTrace stack;
118 stack.Unwind(0, pc, bp, 0, 0, 0, false);
119 EXPECT_EQ(0U, stack.size);
120 EXPECT_EQ(0U, stack.top_frame_bp);
121 stack.Unwind(1, pc, bp, 0, 0, 0, false);
122 EXPECT_EQ(1U, stack.size)
    [all...]
  /external/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);
  /external/libcxx/test/containers/container.adaptors/stack/stack.defn/
pop.pass.cpp 10 // <stack>
14 #include <stack>
19 std::stack<int> q;
  /external/libunwind/src/ia64/
dyn_info_list.S 24 /* We do not need executable stack. */
25 .section .note.GNU-stack,"",@progbits
  /external/lldb/tools/debugserver/scripts/
diagnose-termination.d 4 stack();
  /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/
fp_race.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
sem_as_mutex.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)

Completed in 1023 milliseconds

1 2 3 4 5 6 78 91011>>