HomeSort by: relevance | last modified time | path
    Searched refs:redzone (Results 1 - 17 of 17) sorted by relevancy

  /src/external/mpl/bind/dist/bin/tests/system/dlzexternal/ns1/
named.conf.j2 56 dlz redzone {
68 dlz redzone;
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_flags.cc 148 // Ensure that redzone is at least SHADOW_GRANULARITY.
149 if (f->redzone < (int)SHADOW_GRANULARITY)
150 f->redzone = SHADOW_GRANULARITY;
158 CHECK_GE(f->redzone, 16);
159 CHECK_GE(f->max_redzone, f->redzone);
161 CHECK(IsPowerOfTwo(f->redzone));
asan_rtl.cc 368 Printf("redzone=%zu\n", (uptr)flags()->redzone);
asan_allocator.cc 36 // Valid redzone sizes are 16, 32, 64, ... 2048, so we encode them in 3 bits.
56 // L -- left redzone words (0 or more bytes)
57 // H -- ChunkHeader (16 bytes), which is also a part of the left redzone.
59 // R -- right redzone (0 or more bytes)
63 // If the left redzone is greater than the ChunkHeader size we store a magic
223 min_redzone = f->redzone;
233 f->redzone = min_redzone;
433 // automatic right redzone, so add the right redzone manually.
744 // The address is in the chunk's left redzone, so maybe it is actuall
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_flags.cpp 143 // Ensure that redzone is at least ASAN_SHADOW_GRANULARITY.
144 if (f->redzone < (int)ASAN_SHADOW_GRANULARITY)
145 f->redzone = ASAN_SHADOW_GRANULARITY;
153 CHECK_GE(f->redzone, 16);
154 CHECK_GE(f->max_redzone, f->redzone);
156 CHECK(IsPowerOfTwo(f->redzone));
asan_rtl.cpp 375 Printf("redzone=%zu\n", (uptr)flags()->redzone);
asan_allocator.cpp 38 // Valid redzone sizes are 16, 32, 64, ... 2048, so we encode them in 3 bits.
74 // L -- left redzone words (0 or more bytes)
75 // H -- ChunkHeader (16 bytes), which is also a part of the left redzone.
77 // R -- right redzone (0 or more bytes)
81 // If the left redzone is greater than the ChunkHeader size we store a magic
333 min_redzone = f->redzone;
343 f->redzone = min_redzone;
562 // automatic right redzone, so add the right redzone manually.
852 // The address is in the chunk's left redzone, so maybe it is actuall
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_flags.cpp 143 // Ensure that redzone is at least SHADOW_GRANULARITY.
144 if (f->redzone < (int)SHADOW_GRANULARITY)
145 f->redzone = SHADOW_GRANULARITY;
153 CHECK_GE(f->redzone, 16);
154 CHECK_GE(f->max_redzone, f->redzone);
156 CHECK(IsPowerOfTwo(f->redzone));
asan_rtl.cpp 360 Printf("redzone=%zu\n", (uptr)flags()->redzone);
asan_allocator.cpp 36 // Valid redzone sizes are 16, 32, 64, ... 2048, so we encode them in 3 bits.
72 // L -- left redzone words (0 or more bytes)
73 // H -- ChunkHeader (16 bytes), which is also a part of the left redzone.
75 // R -- right redzone (0 or more bytes)
79 // If the left redzone is greater than the ChunkHeader size we store a magic
280 min_redzone = f->redzone;
290 f->redzone = min_redzone;
516 // automatic right redzone, so add the right redzone manually.
816 // The address is in the chunk's left redzone, so maybe it is actuall
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/
x86_64cpuid.pl 405 my $redzone=win64?8:-8;
452 mov $cnt,$redzone(%rsp)
488 mov $redzone(%rsp),%rax
  /src/crypto/external/bsd/openssl/dist/crypto/
x86_64cpuid.pl 379 my $redzone=win64?8:-8;
426 mov $cnt,$redzone(%rsp)
462 mov $redzone(%rsp),%rax
  /src/crypto/external/bsd/openssl.old/dist/crypto/
x86_64cpuid.pl 371 my $redzone=win64?8:-8;
416 mov $cnt,$redzone(%rsp)
452 mov $redzone(%rsp),%rax
  /src/lib/libpthread/
pthread.c 333 void *stackbase, *stackbase2, *redzone; local
380 redzone = (char *)stackbase + stacksize;
383 redzone = (char *)stackbase;
387 mprotect(redzone, guardsize, PROT_NONE) == -1) {
  /src/sys/arch/sparc/include/
cpu.h 253 void *redzone; /* DEBUG: stack red zone */ member in struct:cpu_info
  /src/sys/arch/sparc64/sparc64/
locore.s 580 !! Check the sp redzone
622 !! Check the sp redzone
627 sethi %hi(_C_LABEL(redzone)), t1
628 ldx [t1 + %lo(_C_LABEL(redzone))], t2
1247 redzone: label
1257 /* set stack pointer redzone to base+minstack; alters base */
1260 sethi %hi(_C_LABEL(redzone)), tmp; \
1261 stx base, [tmp + %lo(_C_LABEL(redzone))]
1266 sethi %hi(_C_LABEL(redzone)), tmp2; \
1267 stx tmp1, [tmp2 + %lo(_C_LABEL(redzone))]
    [all...]
  /src/sys/arch/sparc/sparc/
cpu.c 479 cpi->redzone = (void *)((long)cpi->eintstack + REDSIZE);

Completed in 75 milliseconds