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.h49 T* stack_buffer() { return reinterpret_cast<T*>(stack_buffer_); } in stack_buffer() function
50 const T* stack_buffer() const { in stack_buffer() function
109 return source_->stack_buffer();
118 if (source_ != NULL && p == source_->stack_buffer()) in deallocate()
/external/v8/src/
Dvalue-serializer.cc227 uint8_t stack_buffer[sizeof(T) * 8 / 7 + 1]; in WriteVarint() local
228 uint8_t* next_byte = &stack_buffer[0]; in WriteVarint()
235 WriteRawBytes(stack_buffer, next_byte - stack_buffer); in WriteVarint()
/external/libchrome/base/
Dvalues_unittest.cc799 char stack_buffer[42]; in TEST() local
800 memset(stack_buffer, '!', 42); in TEST()
801 binary = Value::CreateWithCopiedBuffer(stack_buffer, 42); in TEST()
804 ASSERT_NE(stack_buffer, binary->GetBlob().data()); in TEST()
806 ASSERT_EQ(0, memcmp(stack_buffer, binary->GetBlob().data(), in TEST()
/external/v8/src/compiler/
Dwasm-compiler.cc1008 Node* stack_buffer[kStackAllocatedNodeBufferSize]; in Return() local
1011 Node** buf = stack_buffer; in Return()