Searched refs:redzone (Results 1 – 19 of 19) sorted by relevance
/external/linux-kselftest/tools/testing/selftests/powerpc/copyloops/ |
D | validate.c | 17 unsigned long dst_off, unsigned long len, void *redzone, in do_one() argument 49 if (memcmp(dst, redzone, dstp - dst)) { in do_one() 55 if (memcmp(dstp+len, redzone, dst+BUFLEN-(dstp+len))) { in do_one() 64 char *src, *dst, *redzone, *fill; in test_copy_loop() local 70 redzone = malloc(BUFLEN); in test_copy_loop() 73 if (!src || !dst || !redzone || !fill) { in test_copy_loop() 78 memset(redzone, POISON, BUFLEN); in test_copy_loop() 88 redzone, fill); in test_copy_loop()
|
/external/compiler-rt/lib/asan/ |
D | asan_flags.cc | 142 CHECK_GE(f->redzone, 16); in InitializeFlags() 143 CHECK_GE(f->max_redzone, f->redzone); in InitializeFlags() 145 CHECK(IsPowerOfTwo(f->redzone)); in InitializeFlags()
|
D | asan_flags.inc | 26 ASAN_FLAG(int, redzone, 16, 28 "Requirement: redzone >= 16, is a power of two.") 116 "If true, ASan tweaks a bunch of other flags (quarantine, redzone, heap "
|
D | asan_activation_flags.inc | 24 ASAN_ACTIVATION_FLAG(int, redzone)
|
D | asan_allocator.cc | 210 min_redzone = f->redzone; in SetFrom() 218 f->redzone = min_redzone; in CopyTo()
|
D | asan_rtl.cc | 388 Printf("redzone=%zu\n", (uptr)flags()->redzone); in PrintAddressSpaceLayout()
|
/external/valgrind/memcheck/tests/ |
D | clo_redzone_128.vgtest | 1 vgopts: --leak-check=no -q --redzone-size=128
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-redzone.ll | 1 ; RUN: llc < %s -march=arm64 -aarch64-redzone | FileCheck %s
|
D | fastcc.ll | 3 …s -mtriple=aarch64-none-linux-gnu -disable-fp-elim -tailcallopt -aarch64-redzone | FileCheck %s -c…
|
D | arm64-indexed-memory.ll | 1 ; RUN: llc < %s -march=arm64 -aarch64-redzone | FileCheck %s
|
/external/llvm/test/CodeGen/X86/ |
D | materialize.ll | 70 ; The function writes to the redzone, so push/pop cannot be used. 75 ; 32-bit X86 doesn't have a redzone.
|
/external/llvm/test/Instrumentation/AddressSanitizer/ |
D | adaptive_global_redzones.ll | 5 ; Here we check that the global redzone sizes grow with the object size.
|
/external/llvm/include/llvm/IR/ |
D | Attributes.td | 103 /// Disable redzone.
|
/external/valgrind/docs/internals/ |
D | 3_9_BUGSTATUS.txt | 90 336393 Implement new user request to get redzone size (wishlist)
|
/external/jemalloc/include/jemalloc/internal/ |
D | jemalloc_internal_defs.h.in | 166 /* Support memory filling (junk/zero/quarantine/redzone). */
|
/external/jemalloc/test/unit/ |
D | mallctl.c | 179 TEST_MALLCTL_OPT(bool, redzone, fill); in TEST_BEGIN()
|
/external/jemalloc/src/ |
D | stats.c | 738 OPT_WRITE_BOOL(redzone, ",") in stats_general_print()
|
/external/jemalloc/ |
D | INSTALL | 169 See the "opt.junk", "opt.zero", "opt.quarantine", and "opt.redzone" option
|
/external/valgrind/ |
D | NEWS | 1347 option --redzone-size=<number> allows users to specify the size of 1351 overrun or underrun. Prior to this change, the redzone size was 1368 - If a redzone size > 0 is given, VALGRIND_MALLOCLIKE_BLOCK now will 1370 noaccess. Similarly, if a redzone size is given for a memory
|