Searched refs:MSAN (Results 1 – 25 of 28) sorted by relevance
12
/external/flac/oss-fuzz/fuzzing/ |
D | memory.hpp | 33 #ifndef MSAN 34 #define MSAN 0 macro 45 #if MSAN == 1 66 #if MSAN == 1 in memory_test_msan() 88 #if MSAN == 1 in memory_test()
|
/external/skia/site/docs/dev/testing/ |
D | xsan.md | 3 title: "MSAN, ASAN, & TSAN" 4 linkTitle: "MSAN, ASAN, & TSAN" 16 - MSAN works on Linux[1]. 23 [1]To compile and run with MSAN, an MSAN-instrumented version of libc++ is needed. 46 Configure and Compile Skia with MSAN 62 sanitize = "MSAN"
|
D | fuzz.md | 9 reproduce when building with ASAN or MSAN; see
|
/external/angle/src/common/vulkan/ |
D | BUILD.gn | 17 # build is used for MSAN tests. Mixing the non-MSAN system libvulkan with the 18 # MSAN ANGLE build can result in false positives.
|
/external/zstd/tests/fuzz/ |
D | README.md | 66 ### MSAN subsection 68 Fuzzing with `libFuzzer` and `MSAN` is as easy as: 77 the extra parameters only for MSAN.
|
/external/rust/crates/libz-sys/src/zlib-ng/test/ |
D | CMakeLists.txt | 10 # Google test requires MSAN instrumented LLVM C++ libraries 13 message(FATAL_ERROR "MSAN instrumented C++ libraries required!")
|
/external/oss-fuzz/infra/base-images/base-builder/test_data/ |
D | culprit-commit.txt | 12 Test Plan: Local MSAN failures caused by uninstrumented `getrandom`
|
/external/AFLplusplus/utils/asan_cgroups/ |
D | limit_memory.sh | 79 the task of fuzzing ASAN or MSAN binaries. You would normally want to use it in
|
/external/rust/beto-rust/nearby/presence/ldt_np_adv_ffi_fuzz/ |
D | CMakeLists.txt | 24 # Can't use MSAN since EVP_KDF_fetch seems to read uninitialized memory, maybe on purpose?
|
/external/boringssl/src/ |
D | CMakeLists.txt | 268 if(MSAN) 270 message(FATAL_ERROR "Cannot enable MSAN unless using Clang") 274 message(FATAL_ERROR "ASAN and MSAN are mutually exclusive") 345 if(NOT ASAN AND NOT MSAN) 459 if(ASAN OR MSAN OR TSAN)
|
/external/cronet/third_party/boringssl/src/ |
D | CMakeLists.txt | 268 if(MSAN) 270 message(FATAL_ERROR "Cannot enable MSAN unless using Clang") 274 message(FATAL_ERROR "ASAN and MSAN are mutually exclusive") 345 if(NOT ASAN AND NOT MSAN) 459 if(ASAN OR MSAN OR TSAN)
|
/external/rust/crates/quiche/deps/boringssl/src/ |
D | CMakeLists.txt | 291 if(MSAN) 293 message(FATAL_ERROR "Cannot enable MSAN unless using Clang") 297 message(FATAL_ERROR "ASAN and MSAN are mutually exclusive") 368 if(NOT ASAN AND NOT MSAN) 536 if(ASAN OR MSAN OR TSAN)
|
/external/skia/third_party/freetype2/ |
D | BUILD.gn | 11 (is_official_build || !(is_android || sanitize == "MSAN")) &&
|
/external/cronet/build/config/ |
D | arm.gni | 141 # MSAN build) where the target platform is x64, but V8 is configured to
|
/external/angle/build/config/ |
D | arm.gni | 141 # MSAN build) where the target platform is x64, but V8 is configured to
|
/external/AFLplusplus/utils/libdislocator/ |
D | README.md | 52 ASAN / MSAN when fuzzing small, self-contained binaries.
|
/external/skia/infra/bots/assets/clang_linux/ |
D | Dockerfile | 71 # Use the newly compiled clang to build TSAN and MSAN libraries.
|
/external/skia/tools/ |
D | valgrind.supp | 325 #It seems bogus after investigation. MSAN/ASAN have no complaints. It's complaining about
|
/external/cronet/build/config/sanitizers/ |
D | sanitizers.gni | 320 # Add any sanitizer flags back. In MSAN builds, instrumenting libfuzzer with 321 # MSAN is necessary since all parts of the binary need to be instrumented for it
|
/external/angle/build/config/sanitizers/ |
D | sanitizers.gni | 325 # Add any sanitizer flags back. In MSAN builds, instrumenting libfuzzer with 326 # MSAN is necessary since all parts of the binary need to be instrumented for it
|
/external/llvm/docs/ |
D | LibFuzzer.rst | 102 - MemorySanitizer_ (MSAN) detects uninitialized reads: code whose behavior relies on memory 104 MSAN can not be combined with other sanirizers and should be used as a seprate build. 230 If running w/o ASAN/MSAN, you may use 'ulimit -v' instead.
|
/external/tensorflow/tensorflow/python/kernel_tests/linalg/ |
D | BUILD | 53 "nomsan", # TODO(b/213581489): MSAN false positives from LAPACK use inside NumPy.
|
/external/AFLplusplus/ |
D | GNUmakefile | 59 $(info Compiling MSAN version of binaries)
|
/external/skia/gn/skia/ |
D | BUILD.gn | 310 } else if (sanitize == "MSAN") {
|
/external/AFLplusplus/docs/ |
D | env_variables.md | 796 Be sure to include the first ones for LSAN and MSAN when customizing 797 anything, since some MSAN and LSAN versions don't call `abort()` on error,
|
12