| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_libc.h | 57 bool mem_is_zero(const char *mem, uptr size);
|
| sanitizer_libc.cc | 261 bool mem_is_zero(const char *beg, uptr size) { function in namespace:__sanitizer
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_libc.h | 59 bool mem_is_zero(const char *mem, uptr size);
|
| sanitizer_libc.cpp | 273 bool mem_is_zero(const char *beg, uptr size) { function in namespace:__sanitizer
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
| sanitizer_libc_test.cc | 41 TEST(SanitizerCommon, mem_is_zero) { 51 EXPECT_FALSE(__sanitizer::mem_is_zero(x + beg, end - beg)); 53 EXPECT_TRUE(__sanitizer::mem_is_zero(x + beg, end - beg));
|
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_poisoning.cc | 201 // mem_is_zero on the corresponding shadow. 205 __sanitizer::mem_is_zero((const char *)shadow_beg, 213 UNREACHABLE("mem_is_zero returned false, but poisoned byte was not found");
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_poisoning.cpp | 190 // mem_is_zero on the corresponding shadow. 193 __sanitizer::mem_is_zero((const char *)shadow_beg, 201 UNREACHABLE("mem_is_zero returned false, but poisoned byte was not found");
|