Home
last modified time | relevance | path

Searched refs:stack_buffer (Results 1 – 15 of 15) sorted by relevance

/external/compiler-rt/test/asan/TestCases/Windows/
Dbeginthreadex.cc8 volatile char stack_buffer[42]; in thread_proc() local
9 for (int i = 0; i < sizeof(stack_buffer); ++i) in thread_proc()
10 stack_buffer[i] = 42; in thread_proc()
Dthread_simple.cc7 volatile char stack_buffer[42]; in thread_proc() local
8 for (int i = 0; i < sizeof(stack_buffer); ++i) in thread_proc()
9 stack_buffer[i] = 42; in thread_proc()
Dthread_suspended.cc7 volatile char stack_buffer[42]; in thread_proc() local
8 for (int i = 0; i < sizeof(stack_buffer); ++i) in thread_proc()
9 stack_buffer[i] = 42; in thread_proc()
Dthread_stress.cc7 volatile char stack_buffer[42]; in thread_proc() local
8 for (int i = 0; i < sizeof(stack_buffer); ++i) in thread_proc()
9 stack_buffer[i] = 42; in thread_proc()
Dthread_stack_reuse.cc15 volatile char stack_buffer[42]; in thread_proc_2() local
16 for (int i = 0; i < sizeof(stack_buffer); ++i) in thread_proc_2()
17 stack_buffer[i] = 42; in thread_proc_2()
Dstack_use_after_return.cc7 char stack_buffer[42]; in foo() local
8 x = &stack_buffer[13]; in foo()
Ddll_stack_use_after_return.cc10 char stack_buffer[42]; in foo() local
11 x = &stack_buffer[13]; in foo()
Dthread_stack_array_left_oob.cc8 volatile char stack_buffer[42]; in thread_proc() local
9 stack_buffer[subscript] = 42; in thread_proc()
Dthread_stack_array_right_oob.cc8 volatile char stack_buffer[42]; in thread_proc() local
9 stack_buffer[subscript] = 42; in thread_proc()
Ddll_thread_stack_array_left_oob.cc10 char stack_buffer[42]; in thread_proc() local
11 stack_buffer[subscript] = 42; in thread_proc()
Dqueue_user_work_item_report.cc10 volatile char stack_buffer[42]; in work_item() local
11 stack_buffer[subscript] = 42; in work_item()
/external/libchrome/base/containers/
Dstack_container.h52 T* stack_buffer() { return stack_buffer_.template data_as<T>(); } in stack_buffer() function
53 const T* stack_buffer() const { in stack_buffer() function
112 return source_->stack_buffer();
121 if (source_ != NULL && p == source_->stack_buffer()) in deallocate()
/external/libchrome/base/
Dvalues_unittest.cc460 char stack_buffer[42]; in TEST() local
461 memset(stack_buffer, '!', 42); in TEST()
462 binary = BinaryValue::CreateWithCopiedBuffer(stack_buffer, 42); in TEST()
465 ASSERT_NE(stack_buffer, binary->GetBuffer()); in TEST()
467 ASSERT_EQ(0, memcmp(stack_buffer, binary->GetBuffer(), binary->GetSize())); in TEST()
/external/v8/src/
Dvalue-serializer.cc196 uint8_t stack_buffer[sizeof(T) * 8 / 7 + 1]; in WriteVarint() local
197 uint8_t* next_byte = &stack_buffer[0]; in WriteVarint()
204 WriteRawBytes(stack_buffer, next_byte - stack_buffer); in WriteVarint()
/external/v8/src/compiler/
Dwasm-compiler.cc1114 Node* stack_buffer[kStackAllocatedNodeBufferSize]; in Return() local
1117 Node** buf = stack_buffer; in Return()