/external/compiler-rt/test/msan/ |
msan_check_mem_is_initialized.cc | 12 __msan_poison(p + 10, 2);
|
unpoison_string.cc | 12 __msan_poison(s, sizeof(s));
|
/external/compiler-rt/test/msan/Linux/ |
syscalls.cc | 43 __msan_poison(buf, kTen + 1); 47 __msan_poison(buf, kTen + 1); 51 __msan_poison(buf, kTen + 1); 55 __msan_poison(buf, sizeof(buf)); 59 __msan_poison(buf, sizeof(buf)); 64 __msan_poison(buf, sizeof(buf)); 68 __msan_poison(buf, sizeof(buf)); 72 __msan_poison(buf, sizeof(buf)); 76 __msan_poison(buf, sizeof(buf)); 82 __msan_poison(buf, sizeof(buf)) [all...] |
glob_altdirfunc.cc | 29 if (d) __msan_poison(d, d->d_reclen); // hehe 70 __msan_poison(globbuf.gl_pathv[0], strlen(globbuf.gl_pathv[0]) + 1); 71 __msan_poison(globbuf.gl_pathv[1], strlen(globbuf.gl_pathv[1]) + 1);
|
/external/compiler-rt/include/sanitizer/ |
msan_interface.h | 42 void __msan_poison(const volatile void *a, size_t size);
|
/external/compiler-rt/lib/msan/ |
msan_allocator.cc | 103 __msan_poison(allocated, size); 126 __msan_poison(p, size); 161 __msan_poison((char*)old_p + old_size, new_size - old_size);
|
msan_interface_internal.h | 71 void __msan_poison(const void *a, uptr size);
|
msan_interceptors.cc | 844 __msan_poison(data, size); 1328 void __msan_poison(const void *a, uptr size) { function [all...] |
/external/compiler-rt/lib/msan/tests/ |
msan_test.cc | 138 __msan_poison(&poisoned_array[i], sizeof(T)); 146 __msan_poison(&poisoned_array[i], sizeof(T)); 409 __msan_poison(zero, sizeof(*zero)); 861 __msan_poison(&sai, sizeof(sai)); 867 __msan_poison(&sai, sizeof(sai)); [all...] |