Lines Matching refs:start
18 #define MSAN_ALLOCATED_UNINITIALIZED_MEMORY(start, size) \
19 __msan_allocated_memory(reinterpret_cast<const void*>(start), (size))
22 #define MSAN_MEMORY_IS_INITIALIZED(start, size) \
23 __msan_unpoison(reinterpret_cast<const void*>(start), (size))
27 #define MSAN_ALLOCATED_UNINITIALIZED_MEMORY(start, size) \
28 static_assert((std::is_pointer<decltype(start)>::value || \
29 std::is_same<v8::base::Address, decltype(start)>::value), \
33 USE(start, size)
35 #define MSAN_MEMORY_IS_INITIALIZED(start, size) \
36 MSAN_ALLOCATED_UNINITIALIZED_MEMORY(start, size)