| /src/external/mit/xorg/server/xorg-server/miext/shadow/ |
| Makefile | 7 LIB= shadow 8 SRCS= ${SRCS.shadow} 10 .include "Makefile.shadow"
|
| /src/external/mit/xorg/server/xorg-server.old/miext/shadow/ |
| Makefile | 7 LIB= shadow 8 SRCS= ${SRCS.shadow} 10 .include "Makefile.shadow"
|
| /src/external/mit/xorg/server/xorg-server/miext/ |
| Makefile | 3 SUBDIR= damage shadow sync # rootless
|
| /src/external/mit/xorg/server/xorg-server.old/miext/ |
| Makefile | 3 SUBDIR= damage shadow cw sync # rootless
|
| /src/external/mit/xorg/server/xorg-server/hw/xfree86/dixmods/shadow/ |
| Makefile | 8 LIB= shadow 11 SRCS= ${SRCS.shadow} shmodule.c 13 .include "../../../../miext/shadow/Makefile.shadow"
|
| /src/external/mit/xorg/server/xorg-server.old/hw/xfree86/dixmods/shadow/ |
| Makefile | 8 LIB= shadow 11 SRCS= ${SRCS.shadow} shmodule.c 13 .include "../../../../miext/shadow/Makefile.shadow"
|
| /src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| asan_premap_shadow.cpp | 11 // Reserve shadow memory with an ifunc resolver. 40 uptr shadow = reinterpret_cast<uptr>(&__asan_shadow); local 42 // shadow == resolver is how Android KitKat and older handles ifunc. 43 // shadow == 0 just in case. 44 if (shadow == 0 || shadow == resolver) 52 // The resolver may be called multiple times. Map the shadow just once. 59 // the shadow mapping.
|
| asan_poisoning.h | 11 // Shadow memory poisoning by ASan RTL and by user application. 26 // Poisons the shadow memory for "size" bytes starting from "addr". 29 // Poisons the shadow memory for "redzone_size" bytes starting from 50 // for mapping shadow and zeroing out pages doesn't "just work", so we should 80 u8 *shadow = (u8*)MEM_TO_SHADOW(aligned_addr); local 81 for (uptr i = 0; i < redzone_size; i += ASAN_SHADOW_GRANULARITY, shadow++) { 83 *shadow = 0; // fully addressable 85 *shadow = 89 *shadow = poison_partial ? static_cast<u8>(size - i) : 0;
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_premap_shadow.cpp | 11 // Reserve shadow memory with an ifunc resolver. 40 uptr shadow = reinterpret_cast<uptr>(&__asan_shadow); local 42 // shadow == resolver is how Android KitKat and older handles ifunc. 43 // shadow == 0 just in case. 44 if (shadow == 0 || shadow == resolver) 52 // The resolver may be called multiple times. Map the shadow just once. 59 // the shadow mapping.
|
| asan_poisoning.h | 11 // Shadow memory poisoning by ASan RTL and by user application. 26 // Poisons the shadow memory for "size" bytes starting from "addr". 29 // Poisons the shadow memory for "redzone_size" bytes starting from 50 // for mapping shadow and zeroing out pages doesn't "just work", so we should 80 u8 *shadow = (u8*)MEM_TO_SHADOW(aligned_addr); local 81 for (uptr i = 0; i < redzone_size; i += SHADOW_GRANULARITY, shadow++) { 83 *shadow = 0; // fully addressable 85 *shadow = (SHADOW_GRANULARITY == 128) ? 0xff : value; // unaddressable 88 *shadow = poison_partial ? static_cast<u8>(size - i) : 0;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| m-data.cc | 43 int shadow = 0; variable 48 C (int x) : shadow (x) {} 51 int shadow; member in class:C 63 return shadow;
|
| namespace.cc | 94 int shadow = 12; member in namespace:C 140 int shadow = 13; member in namespace:C::D 159 (void) shadow;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| m-data.cc | 43 int shadow = 0; variable 48 C (int x) : shadow (x) {} 51 int shadow; member in class:C 63 return shadow;
|
| namespace.cc | 94 int shadow = 12; member in namespace:C 140 int shadow = 13; member in namespace:C::D 159 (void) shadow;
|
| /src/external/gpl3/gcc/dist/libsanitizer/hwasan/ |
| hwasan_dynamic_shadow.cpp | 10 /// This file is a part of HWAddressSanitizer. It reserves dynamic shadow memory 51 const uptr shadow = reinterpret_cast<uptr>(&__hwasan_shadow); local 53 // shadow == resolver is how Android KitKat and older handles ifunc. 54 // shadow == 0 just in case. 55 return shadow != 0 && shadow != resolver; 74 // The resolver might be called multiple times. Map the shadow just once. 75 static __sanitizer::uptr shadow = 0; local 76 if (!shadow) 77 shadow = __hwasan::PremapShadow() [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/ |
| hwasan_dynamic_shadow.cpp | 10 /// This file is a part of HWAddressSanitizer. It reserves dynamic shadow memory 51 const uptr shadow = reinterpret_cast<uptr>(&__hwasan_shadow); local 53 // shadow == resolver is how Android KitKat and older handles ifunc. 54 // shadow == 0 just in case. 55 return shadow != 0 && shadow != resolver; 74 // The resolver might be called multiple times. Map the shadow just once. 75 static __sanitizer::uptr shadow = 0; local 76 if (!shadow) 77 shadow = __hwasan::PremapShadow() [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_poisoning.h | 12 // Shadow memory poisoning by ASan RTL and by user application. 26 // Poisons the shadow memory for "size" bytes starting from "addr". 29 // Poisons the shadow memory for "redzone_size" bytes starting from 46 // for mapping shadow and zeroing out pages doesn't "just work", so we should 50 // TODO(mcgrathr): Fuchsia doesn't allow the shadow mapping to be 82 u8 *shadow = (u8*)MEM_TO_SHADOW(aligned_addr); local 83 for (uptr i = 0; i < redzone_size; i += SHADOW_GRANULARITY, shadow++) { 85 *shadow = 0; // fully addressable 87 *shadow = (SHADOW_GRANULARITY == 128) ? 0xff : value; // unaddressable 90 *shadow = poison_partial ? static_cast<u8>(size - i) : 0 [all...] |
| asan_premap_shadow.cc | 12 // Reserve shadow memory with an ifunc resolver. 55 uptr shadow = reinterpret_cast<uptr>(&__asan_shadow); local 57 // shadow == resolver is how Android KitKat and older handles ifunc. 58 // shadow == 0 just in case. 59 if (shadow == 0 || shadow == resolver) 67 // The resolver may be called multiple times. Map the shadow just once. 74 // the shadow mapping.
|
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| k_getpwnam.c | 40 #include <shadow.h>
|
| k_getpwuid.c | 40 #include <shadow.h>
|
| /src/external/mit/libcbor/dist/docs/doxygen/ |
| customdoxygen.css | 44 -webkit-transition: text-shadow 0.5s linear; 45 -moz-transition: text-shadow 0.5s linear; 46 -ms-transition: text-shadow 0.5s linear; 47 -o-transition: text-shadow 0.5s linear; 48 transition: text-shadow 0.5s linear; 65 text-shadow: 0 0 15px cyan; 235 -webkit-transition-property: background-color, box-shadow; 237 -moz-transition-property: background-color, box-shadow; 239 -ms-transition-property: background-color, box-shadow; 241 -o-transition-property: background-color, box-shadow; [all...] |
| /src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| tsan_rtl_access.cpp | 148 NOINLINE void DoReportRace(ThreadState* thr, RawShadow* shadow_mem, Shadow cur, 149 Shadow old, 151 // For the free shadow markers the first element (that contains kFreeSid) 155 old = Shadow(LoadShadow(&shadow_mem[1])); 158 StoreShadow(&shadow_mem[i], i == 0 ? Shadow::kRodata : Shadow::kEmpty); 166 ReportRace(thr, shadow_mem, cur, Shadow(old), typ); 173 bool ContainsSameAccess(RawShadow* s, Shadow cur, int unused0, int unused1, 183 static_cast<u32>(Shadow::kRodata)); 187 if (old == Shadow::kRodata 616 const m128 shadow = _mm_load_si128((m128*)shadow_mem); local [all...] |
| /src/external/gpl3/gdb/dist/readline/readline/examples/rlfe/ |
| Makefile.in | 78 shadow: 79 mkdir shadow; 80 cd shadow; ln -s ../*.[ch] ../*.in ../*.sh ../configure ../doc ../terminfo ../etc . 81 rm -f shadow/term.h shadow/tty.c shadow/comm.h shadow/osdef.h 82 echo "install all Makefiles and config:" > shadow/Makefile 83 echo " rm -f config.cache" >> shadow/Makefile 84 echo " sh ./configure" >> shadow/Makefil [all...] |
| /src/external/gpl3/gdb.old/dist/readline/readline/examples/rlfe/ |
| Makefile.in | 78 shadow: 79 mkdir shadow; 80 cd shadow; ln -s ../*.[ch] ../*.in ../*.sh ../configure ../doc ../terminfo ../etc . 81 rm -f shadow/term.h shadow/tty.c shadow/comm.h shadow/osdef.h 82 echo "install all Makefiles and config:" > shadow/Makefile 83 echo " rm -f config.cache" >> shadow/Makefile 84 echo " sh ./configure" >> shadow/Makefil [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
| amdgpu_vm_sdma.c | 49 if (table->shadow) 50 r = amdgpu_ttm_alloc_gart(&table->shadow->tbo); 241 if (bo->shadow) 242 amdgpu_vm_sdma_set_ptes(p, bo->shadow, pe, addr, 251 (bo->shadow ? 2 : 1); 266 if (bo->shadow) 267 amdgpu_vm_sdma_copy_ptes(p, bo->shadow, pe, nptes);
|