Searched defs:Shadow (Results 1 - 5 of 5) sorted by relevance

/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h115 friend class Shadow;
123 // Shadow (from most significant bit):
130 class Shadow : public FastState { class in namespace:__tsan
132 explicit Shadow(u64 x) : FastState(x) { } function in class:__tsan::Shadow
134 explicit Shadow(const FastState &s) : FastState(s.x_) { } function in class:__tsan::Shadow
154 static inline bool TidsAreEqual(const Shadow s1, const Shadow s2) {
160 static inline bool Addr0AndSizeAreEqual(const Shadow s1, const Shadow s2) {
165 static inline bool TwoRangesIntersect(Shadow s
[all...]
/external/clang/lib/AST/
H A DDeclCXX.cpp933 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(D))
934 if (Shadow->getDeclName().getNameKind()
936 data().Conversions.addDecl(Shadow, Shadow->getAccess());
1917 const UsingShadowDecl *Shadow = this; local
1919 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow))
1920 Shadow = NextShadow;
1921 return cast<UsingDecl>(Shadow->UsingOrNextShadow);
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp122 // Shadow = (Mem >> scale) + (1 << offset_log)
176 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
287 Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) { argument
288 // Shadow >> scale
289 Shadow = IRB.CreateLShr(Shadow, MappingScale);
291 return Shadow;
292 // (Shadow >> scale) | offset
293 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy,
941 static void PoisonShadowPartialRightRedzone(uint8_t *Shadow, argument
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp1991 UsingShadowDecl *Shadow = *I; local
1994 Shadow->getLocation(),
1995 Shadow->getTargetDecl(),
2006 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
2009 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
3326 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3327 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
H A DSemaDeclCXX.cpp6064 UsingShadowDecl *Shadow local
6067 UD->addShadowDecl(Shadow);
6069 Shadow->setAccess(UD->getAccess());
6071 Shadow->setInvalidDecl();
6074 PushOnScopeChains(Shadow, S);
6076 CurContext->addDecl(Shadow);
6079 return Shadow;
6109 void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) { argument
6110 if (Shadow->getDeclName().getNameKind() ==
6112 cast<CXXRecordDecl>(Shadow
[all...]

Completed in 243 milliseconds