/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_rtl_access.cpp | 234 # define LOAD_CURRENT_SHADOW(cur, shadow_mem) UNUSED int access = 0, shadow = 0 239 bool ContainsSameAccess(RawShadow* unused0, Shadow unused1, m128 shadow, in ContainsSameAccess() argument 248 const m128 same = _mm_cmpeq_epi32(shadow, access); in ContainsSameAccess() 262 const m128 masked_shadow = _mm_or_si128(shadow, read_mask); in ContainsSameAccess() 268 const m128 ro = _mm_cmpeq_epi32(shadow, read_mask); in ContainsSameAccess() 275 u32 race_mask, m128 shadow, AccessType typ) { in DoReportRaceV() argument 283 old = _mm_extract_epi32(shadow, 0); in DoReportRaceV() 286 old = _mm_extract_epi32(shadow, 1); in DoReportRaceV() 289 old = _mm_extract_epi32(shadow, 2); in DoReportRaceV() 292 old = _mm_extract_epi32(shadow, 3); in DoReportRaceV() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan.h | 57 {0x002200000000ULL, 0x004000000000ULL, MappingDesc::SHADOW, "shadow-2"}, 61 {0x006200000000ULL, 0x008000000000ULL, MappingDesc::SHADOW, "shadow-3"}, 62 {0x008000000000ULL, 0x008200000000ULL, MappingDesc::SHADOW, "shadow-1"}, 70 #define SHADOW_TO_ORIGIN(shadow) (((uptr)(shadow)) + 0x2000000000ULL) 79 // the larger app/shadow/origin regions. 83 {0X0100000000000, 0X0200000000000, MappingDesc::SHADOW, "shadow-14"}, 86 {0X0400000000000, 0X0600000000000, MappingDesc::SHADOW, "shadow-15"}, 90 {0X0B00000000000, 0X0C00000000000, MappingDesc::SHADOW, "shadow-10-13"}, argument 97 # define SHADOW_TO_ORIGIN(shadow) (((upt 64 SHADOW_TO_ORIGIN(shadow) global() argument 111 SHADOW_TO_ORIGIN(shadow) global() argument 134 SHADOW_TO_ORIGIN(shadow) global() argument 148 SHADOW_TO_ORIGIN(shadow) global() argument 169 SHADOW_TO_ORIGIN(shadow) global() argument 190 SHADOW_TO_ORIGIN(shadow) global() argument [all...] |
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_dynamic_shadow.cpp | 56 const uptr shadow = reinterpret_cast<uptr>(&__hwasan_shadow); in IsPremapShadowAvailable() local 60 return shadow != 0 && shadow != resolver; in IsPremapShadowAvailable() 80 static __sanitizer::uptr shadow = 0; in __hwasan_premap_shadow() local 81 if (!shadow) in __hwasan_premap_shadow() 82 shadow = __hwasan::PremapShadow(); in __hwasan_premap_shadow() 83 return reinterpret_cast<decltype(__hwasan_shadow)*>(shadow); in __hwasan_premap_shadow()
|
H A D | hwasan_report.cpp | 489 shadow(CopyShadow()) {} in BaseReport() 559 const Shadow shadow; member in __hwasan::__anon865875d10511::BaseReport 600 uptr short_end = kShortDumpOffset + ARRAY_SIZE(shadow.short_tags); in CopyShadow() 618 CHECK_GE(addr, shadow.addr); in GetTagCopy() 619 uptr idx = addr - shadow.addr; in GetTagCopy() 620 CHECK_LT(idx, ARRAY_SIZE(shadow.tags)); in GetTagCopy() 621 return shadow.tags[idx]; in GetTagCopy() 625 CHECK_GE(addr, shadow.addr + kShortDumpOffset); in GetShortTagCopy() 626 uptr idx = addr - shadow.addr - kShortDumpOffset; in GetShortTagCopy() 627 CHECK_LT(idx, ARRAY_SIZE(shadow.short_tags)); in GetShortTagCopy() [all …]
|
/freebsd/tools/test/stress2/misc/ |
H A D | unionfs12.sh | 61 mkdir $mp2/shadow 62 cp /bin/ls $mp2/shadow/ 71 chmod +w $mp2/shadow/ls 72 sleep 2 >> $mp2/shadow/ls & 76 $mp1/shadow/ls -l /bin/ls $mp1 $mp2 && echo FAIL || echo OK
|
/freebsd/contrib/libxo/xohtml/external/ |
H A D | jquery.qtip.css | 27 box-shadow: none; 236 .qtip-shadow{ 237 -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15); 238 -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15); 239 box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15); 263 -webkit-box-shadow: 0 0 3px #333; 264 -moz-box-shadow: 0 0 3px #333; 265 box-shadow: 0 0 3px #333; 317 -webkit-box-shadow: 0 0 12px #333; 318 -moz-box-shadow: 0 0 12px #333; [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_poisoning.h | 80 u8 *shadow = (u8*)MEM_TO_SHADOW(aligned_addr); in FastPoisonShadowPartialRightRedzone() local 81 for (uptr i = 0; i < redzone_size; i += ASAN_SHADOW_GRANULARITY, shadow++) { in FastPoisonShadowPartialRightRedzone() 83 *shadow = 0; // fully addressable in FastPoisonShadowPartialRightRedzone() 85 *shadow = in FastPoisonShadowPartialRightRedzone() 89 *shadow = poison_partial ? static_cast<u8>(size - i) : 0; in FastPoisonShadowPartialRightRedzone()
|
H A D | asan_premap_shadow.cpp | 41 uptr shadow = reinterpret_cast<uptr>(&__asan_shadow); in PremapShadowFailed() local 45 if (shadow == 0 || shadow == resolver) in PremapShadowFailed()
|
H A D | asan_descriptions.h | 199 ShadowAddressDescription shadow; member 223 return data.shadow.addr; in Address() 239 return data.shadow.Print(); 254 return data.kind == kAddressKindShadow ? &data.shadow : nullptr; in AsShadow()
|
H A D | asan_interceptors_memintrinsics.h | 40 u8 shadow = AddressIsPoisoned(last); in DECLARE_REAL() local 42 shadow |= *((u8 *)shadow_first); in DECLARE_REAL() 43 return !shadow; in DECLARE_REAL()
|
/freebsd/contrib/bsddialog/lib/ |
H A D | theme.c | 59 .shadow.color = GET_COLOR(COLOR_BLACK, COLOR_BLACK), 60 .shadow.y = 1, 61 .shadow.x = 2, 108 .shadow.color = GET_COLOR(COLOR_BLACK, COLOR_BLACK), 109 .shadow.y = 1, 110 .shadow.x = 2, 159 dst->shadow.color = src->shadow.color; in set_theme() 160 dst->shadow.y = src->shadow.y; in set_theme() 161 dst->shadow.x = src->shadow.x; in set_theme()
|
H A D | lib_util.c | 426 maxheight = conf->shadow ? SCREENLINES - (int)t.shadow.y : SCREENLINES; in widget_max_height() 428 RETURN_ERROR("Terminal too small, screen lines - shadow <= 0"); in widget_max_height() 441 "shadow - y <= 0"); in widget_max_height() 456 maxwidth = conf->shadow ? SCREENCOLS - (int)t.shadow.x : SCREENCOLS; in widget_max_width() 458 RETURN_ERROR("Terminal too small, screen cols - shadow <= 0"); in widget_max_width() 463 RETURN_ERROR("Terminal too small, screen cols - shadow " in widget_max_width() 883 int hshadow = conf->shadow ? (int)t.shadow in set_widget_position() [all...] |
/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
H A D | nsan.cpp | 326 const u8 *const shadow = GetShadowAddrFor(addr); in __nsan_dump_shadow_mem() local 359 ReadShadow(shadow + kShadowScale * (Offset + 1 - sizeof(float)), in __nsan_dump_shadow_mem() 368 shadow + kShadowScale * (Offset + 1 - sizeof(double)), in __nsan_dump_shadow_mem() 377 shadow + kShadowScale * (Offset + 1 - sizeof(long double)), in __nsan_dump_shadow_mem() 549 float value, double shadow, int32_t check_type, uptr check_arg) { in __nsan_internal_check_float_d() argument 550 return checkFT(value, shadow, static_cast<CheckTypeT>(check_type), check_arg); in __nsan_internal_check_float_d() 554 double value, long double shadow, int32_t check_type, uptr check_arg) { in __nsan_internal_check_double_l() argument 555 return checkFT(value, shadow, static_cast<CheckTypeT>(check_type), check_arg); in __nsan_internal_check_double_l() 559 double value, __float128 shadow, int32_t check_type, uptr check_arg) { in __nsan_internal_check_double_q() argument 560 return checkFT(value, shadow, static_cast<CheckTypeT>(check_type), check_arg); in __nsan_internal_check_double_q() [all …]
|
/freebsd/contrib/bsddialog/utility/ |
H A D | util_theme.c | 99 "theme.shadow.color", COLOR, &t.shadow.color}, 101 "theme.shadow.y", UINT, &t.shadow.y}, 102 {"", "theme.shadow.x", UINT, &t.shadow.x}, 313 * Set t.shadow.[y|x] for compatibilty. in loadtheme() 317 t.shadow.y = t.shadow.x = 0; in loadtheme() 390 t.shadow in bikeshed() [all...] |
/freebsd/contrib/dialog/ |
H A D | util.c | 116 #define UseShadow(dw) ((dw) != 0 && (dw)->normal != 0 && (dw)->shadow != 0) 127 DATA(A_NORMAL, SHADOW, shadow, "Shadow"), 179 p->shadow = child; in add_subwindow() 195 delwin(p->shadow); in del_subwindows() 1596 WINDOW *check = normal ? p->normal : p->shadow; in find_window() 1653 int y_want = y + getbegy(dw->shadow); in window_at_cell() 1654 int x_want = x + getbegx(dw->shadow); in window_at_cell() 1658 && dw->shadow != p->normal in window_at_cell() 1670 in_shadow(WINDOW *normal, WINDOW *shadow, int y, int x) in in_shadow() argument 1678 y += getbegy(shadow); in in_shadow() [all …]
|
/freebsd/usr.sbin/ypserv/ |
H A D | Makefile.yp | 177 TARGETS+= shadow 212 shadow: shadow.byname shadow.byuid 234 @if [ ! $(NOPUSH) ]; then $(YPPUSH) -d $(DOMAIN) shadow.byname ; fi 235 @if [ ! $(NOPUSH) ]; then $(YPPUSH) -d $(DOMAIN) shadow.byuid ; fi 647 shadow.byname: $(MASTER) 662 shadow.byuid: $(MASTER)
|
/freebsd/crypto/openssh/contrib/ |
H A D | sshd.pam.generic | 2 auth required /lib/security/pam_unix.so shadow nodelay 6 password required /lib/security/pam_unix.so shadow nullok use_authtok
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_flags.inc | 20 "If set, explicitly unmaps the (huge) shadow at exit.") 21 MEMPROF_FLAG(bool, protect_shadow_gap, true, "If set, mprotect the shadow gap") 22 MEMPROF_FLAG(bool, print_legend, true, "Print the legend for the shadow bytes.")
|
H A D | memprof_allocator.cpp | 223 u64 *shadow = (u64 *)MEM_TO_SHADOW(p); in GetShadowCount() local 226 for (; shadow <= shadow_end; shadow++) in GetShadowCount() 227 count += *shadow; in GetShadowCount() 234 u8 *shadow = (u8 *)HISTOGRAM_MEM_TO_SHADOW(p); in GetShadowCountHistogram() local 237 for (; shadow <= shadow_end; shadow++) in GetShadowCountHistogram() 238 count += *shadow; in GetShadowCountHistogram()
|
/freebsd/contrib/bsddialog/ |
H A D | CHANGELOG | 172 * fix: shadow top-left corner (trick wresize() before wmove()). 263 * change: fixed-rows becomes at most rows, min(rows, screenH - shadow). 264 * change: fixed-cols becomes at most cols, min(cols, screenW - shadow). 286 * fix: avoid to overlay down shadow with menus and forms bottomdesc 333 * fix: internal segmentation fault with disabled shadow. 334 * fix: center position without shadow. 337 * fix: rename theme.shadow.h to theme.shadow.y. 338 * fix: rename theme.shadow.w to theme.shadow [all...] |
/freebsd/sys/contrib/device-tree/Bindings/gpio/ |
H A D | gpio-mm-lantiq.txt | 19 - lantiq,shadow : The default value that we shall assume as already set on the 36 lantiq,shadow = <0x77f>
|
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan_platform.h | 69 # define SHADOW_TO_ORIGIN(shadow) (((uptr)(shadow)) + 0x200000000000ULL) argument
|
H A D | dfsan_flags.inc | 41 "Whether to zero shadow space of new allocated memory.") 43 "Whether to zero shadow space of deallocated memory.")
|
/freebsd/sys/netpfil/pf/ |
H A D | pf_table.c | 1503 struct pfr_ktable *kt, *rt, *shadow, key; in pfr_ina_define() local 1550 shadow = pfr_create_ktable(tbl, 0, 0); in pfr_ina_define() 1551 if (shadow == NULL) { in pfr_ina_define() 1559 if (pfr_lookup_addr(shadow, ad, 1) != NULL) in pfr_ina_define() 1562 (shadow->pfrkt_flags & PFR_TFLAG_COUNTERS) != 0); in pfr_ina_define() 1565 if (pfr_route_kentry(shadow, p)) { in pfr_ina_define() 1577 shadow->pfrkt_cnt = (flags & PFR_FLAG_ADDRSTOO) ? in pfr_ina_define() 1579 kt->pfrkt_shadow = shadow; in pfr_ina_define() 1581 pfr_clean_node_mask(shadow, &addrq); in pfr_ina_define() 1582 pfr_destroy_ktable(shadow, 0); in pfr_ina_define() [all …]
|
/freebsd/crypto/heimdal/appl/login/ |
H A D | ChangeLog | 211 * login.c (do_login): conditionalize shadow stuff on getspnam 253 * shadow.c (check_shadow): check for a NULL sp 265 * login_locl.h: add <shadow.h> and some prototypes 267 * login.c: fixes with v4 and shadow support. From Miroslav Ruda 270 * shadow.c: new file with functions for handling shadow passwords 272 * Makefile.am: add shadow
|