Home
last modified time | relevance | path

Searched refs:shadow_begin (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.cpp200 auto shadow_begin = ShadowBeg(); in DoResetImpl() local
204 shadow_begin = ctx->mapped_shadow_begin; in DoResetImpl()
207 shadow_begin, shadow_end); in DoResetImpl()
212 !ZeroMmapFixedRegion(shadow_begin, shadow_end - shadow_begin); in DoResetImpl()
215 !MmapFixedSuperNoReserve(shadow_begin, shadow_end-shadow_begin, "shadow"); in DoResetImpl()
217 DontDumpShadow(shadow_begin, shadow_end - shadow_begin); in DoResetImpl()
591 if (!MmapFixedNoReserve(shadow_begin, shadow_end - shadow_begin, "shadow")) in MapShadow()
601 if (!MmapFixedSuperNoReserve(shadow_begin, shadow_end - shadow_begin, "shadow")) in MapShadow()
612 shadow_begin = ctx->mapped_shadow_end; in MapShadow()
614 shadow_begin, shadow_end); in MapShadow()
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/cfi/
H A Dcfi.cpp154 uint16_t *shadow_begin = MemToShadow(begin, shadow_); in AddUnchecked() local
160 memset(shadow_begin, kUncheckedShadow & 0xff, in AddUnchecked()
161 (shadow_end - shadow_begin) * sizeof(*shadow_begin)); in AddUnchecked()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3477 return shadow_range(shadow_begin(), shadow_end()); in shadows()
3480 shadow_iterator shadow_begin() const { in shadow_begin() function
3489 return std::distance(shadow_begin(), shadow_end()); in shadow_size()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6657 return matchesFirstInPointerRange(InnerMatcher, Node.shadow_begin(), in AST_MATCHER_P()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h15177 assert(++Using->shadow_begin() == Using->shadow_end()); in RebuildUnresolvedUsingType()
15179 UsingShadowDecl *Shadow = *Using->shadow_begin(); in RebuildUnresolvedUsingType()
H A DSemaDeclCXX.cpp13285 EC = dyn_cast<EnumConstantDecl>(UD->shadow_begin()->getTargetDecl()); in CheckUsingDeclQualifier()