/external/jmonkeyengine/engine/src/core-data/Common/MatDefs/Shadow/ |
D | PostShadowPSSM.j3md | 1 MaterialDef Post Shadow { 24 VertexShader GLSL150: Common/MatDefs/Shadow/PostShadowPSSM.vert 25 FragmentShader GLSL150: Common/MatDefs/Shadow/PostShadowPSSM15.frag 44 VertexShader GLSL100: Common/MatDefs/Shadow/PostShadowPSSM.vert 45 FragmentShader GLSL100: Common/MatDefs/Shadow/PostShadowPSSM.frag
|
D | PostShadow.j3md | 1 MaterialDef Post Shadow { 9 VertexShader GLSL100: Common/MatDefs/Shadow/PostShadow.vert 10 FragmentShader GLSL100: Common/MatDefs/Shadow/PostShadow.frag
|
D | PreShadow.j3md | 1 MaterialDef Pre Shadow { 3 VertexShader GLSL100 : Common/MatDefs/Shadow/PreShadow.vert 4 FragmentShader GLSL100 : Common/MatDefs/Shadow/PreShadow.frag
|
D | PostShadow.frag | 1 #import "Common/ShaderLib/Shadow.glsllib"
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_update_shadow_word_inl.h | 30 if (Shadow::Addr0AndSizeAreEqual(cur, old)) { 33 if (Shadow::TidsAreEqual(old, cur)) { 49 if (Shadow::TwoRangesIntersect(old, cur, kAccessSize)) { 51 if (Shadow::TidsAreEqual(old, cur)) {
|
D | tsan_rtl.h | 158 friend class Shadow; 175 class Shadow : public FastState { 177 explicit Shadow(u64 x) in Shadow() function 181 explicit Shadow(const FastState &s) in Shadow() function 217 static inline bool TidsAreEqual(const Shadow s1, const Shadow s2) { in TidsAreEqual() 224 bool Addr0AndSizeAreEqual(const Shadow s1, const Shadow s2) { in Addr0AndSizeAreEqual() 229 static ALWAYS_INLINE bool TwoRangesIntersect(Shadow s1, Shadow s2, in TwoRangesIntersect() 306 static bool TwoRangesIntersectSlow(const Shadow s1, const Shadow s2) { in TwoRangesIntersectSlow() 519 void AddMemoryAccess(uptr addr, Shadow s, StackTrace stack, 622 u64 *shadow_mem, Shadow cur);
|
D | tsan_rtl.cc | 524 Shadow LoadShadow(u64 *p) { in LoadShadow() 526 return Shadow(raw); in LoadShadow() 542 Shadow cur, Shadow old) { in HandleRace() 553 static inline bool HappensBefore(Shadow old, ThreadState *thr) { in HappensBefore() 560 u64 *shadow_mem, Shadow cur) { in MemoryAccessImpl1() 579 Shadow old(0); in MemoryAccessImpl1() 637 Shadow cur(a); in ContainsSameAccessSlow() 639 Shadow old(LoadShadow(&s[i])); in ContainsSameAccessSlow() 640 if (Shadow::Addr0AndSizeAreEqual(cur, old) && in ContainsSameAccessSlow() 762 Shadow cur(fast_state); in MemoryAccess() [all …]
|
D | tsan_rtl_report.cc | 158 void ScopedReport::AddMemoryAccess(uptr addr, Shadow s, StackTrace stack, in AddMemoryAccess() 553 Shadow s0(thr->racy_state[0]); in RaceBetweenAtomicAndFree() 554 Shadow s1(thr->racy_state[1]); in RaceBetweenAtomicAndFree() 579 Shadow s(thr->racy_state[1]); in ReportRace() 588 uptr a0 = addr + Shadow(thr->racy_state[0]).addr0(); in ReportRace() 589 uptr a1 = addr + Shadow(thr->racy_state[1]).addr0(); in ReportRace() 590 uptr e0 = a0 + Shadow(thr->racy_state[0]).size(); in ReportRace() 591 uptr e1 = a1 + Shadow(thr->racy_state[1]).size(); in ReportRace() 618 Shadow s2(thr->racy_state[1]); in ReportRace() 627 Shadow s(thr->racy_state[i]); in ReportRace() [all …]
|
D | tsan_rtl_thread.cc | 380 Shadow cur(fast_state); in MemoryAccessRange() 391 Shadow cur(fast_state); in MemoryAccessRange() 401 Shadow cur(fast_state); in MemoryAccessRange()
|
/external/compiler-rt/lib/tsan/tests/unit/ |
D | tsan_shadow_test.cc | 19 TEST(Shadow, FastState) { in TEST() argument 20 Shadow s(FastState(11, 22)); in TEST() 49 TEST(Shadow, Mapping) { in TEST() argument 64 TEST(Shadow, Celling) { in TEST() argument
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | DataFlowSanitizer.cpp | 294 Value *Shadow; member 313 void setShadow(Instruction *I, Value *Shadow); 318 void storeShadow(Value *Addr, uint64_t Size, uint64_t Align, Value *Shadow, 889 Value *&Shadow = ValShadowMap[V]; in getShadow() local 890 if (!Shadow) { in getShadow() 901 Shadow = IRB.CreateLoad(getArgTLS(A->getArgNo(), ArgTLSPos)); in getShadow() 909 Shadow = i; in getShadow() 910 assert(Shadow->getType() == DFS.ShadowTy); in getShadow() 914 NonZeroChecks.push_back(Shadow); in getShadow() 916 Shadow = DFS.ZeroShadow; in getShadow() [all …]
|
D | MemorySanitizer.cpp | 571 Value *Shadow; member 575 : Shadow(S), Origin(O), OrigIns(I) { } in ShadowOriginAndInsertPoint() 642 void storeOrigin(IRBuilder<> &IRB, Value *Addr, Value *Shadow, Value *Origin, in storeOrigin() 646 unsigned StoreSize = DL.getTypeStoreSize(Shadow->getType()); in storeOrigin() 647 if (isa<StructType>(Shadow->getType())) { in storeOrigin() 652 Value *ConvertedShadow = convertToShadowTyNoVec(Shadow, IRB); in storeOrigin() 692 Value *Shadow = SI.isAtomic() ? getCleanShadow(Val) : getShadow(Val); in materializeStores() local 693 Value *ShadowPtr = getShadowPtr(Addr, Shadow->getType(), IRB); in materializeStores() 696 IRB.CreateAlignedStore(Shadow, ShadowPtr, SI.getAlignment()); in materializeStores() 705 storeOrigin(IRB, Addr, Shadow, getOrigin(Val), SI.getAlignment(), in materializeStores() [all …]
|
D | AddressSanitizer.cpp | 426 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB); 777 Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) { in memToShadow() argument 779 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale); in memToShadow() 780 if (Mapping.Offset == 0) return Shadow; in memToShadow() 783 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset)); in memToShadow() 785 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset)); in memToShadow()
|
/external/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/ |
D | README.md | 12 **Shadow DOM**: provides encapsulation by hiding DOM subtrees under shadow roots ([spec](https://w3… 35 | Shadow DOM | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | 41 ~Indicates support may be flaky. If using Custom Elements or HTML Imports with Shadow DOM, 42 you will get the non-flaky Mutation Observer polyfill that Shadow DOM includes.
|
/external/deqp/doc/testspecs/GLES3/ |
D | functional.texture.shadow.txt | 19 Shadow compare tests 34 Shadow compare tests render two adjecent quads. Left one has texture
|
/external/jmonkeyengine/engine/src/terrain/Common/MatDefs/Terrain/ |
D | TerrainLighting.j3md | 168 VertexShader GLSL100 : Common/MatDefs/Shadow/PreShadow.vert 169 FragmentShader GLSL100 : Common/MatDefs/Shadow/PreShadow.frag
|
/external/jmonkeyengine/engine/src/core-data/Common/MatDefs/Light/ |
D | Lighting.j3md | 150 VertexShader GLSL100 : Common/MatDefs/Shadow/PreShadow.vert 151 FragmentShader GLSL100 : Common/MatDefs/Shadow/PreShadow.frag
|
/external/mesa3d/src/mesa/program/ |
D | program_parser.h | 207 unsigned Shadow:1; member
|
D | program_parse_extra.c | 216 state->option.Shadow = 1; in _mesa_ARBfp_parse_option()
|
/external/chromium-trace/trace-viewer/tracing/third_party/components/polymer/ |
D | README.md | 11 Polymer is based on a set of future technologies, including [Shadow DOM](http://w3c.github.io/webco…
|
/external/clang/lib/AST/ |
D | DeclCXX.cpp | 930 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(D)) { in addedMember() local 931 if (Shadow->getDeclName().getNameKind() in addedMember() 934 data().Conversions.get(Ctx).addDecl(Ctx, Shadow, Shadow->getAccess()); in addedMember() 2057 const UsingShadowDecl *Shadow = this; in getUsingDecl() local 2059 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow)) in getUsingDecl() 2060 Shadow = NextShadow; in getUsingDecl() 2061 return cast<UsingDecl>(Shadow->UsingOrNextShadow); in getUsingDecl()
|
/external/skia/src/sfnt/ |
D | SkOTTable_head.h | 100 Shadow,
|
/external/openssh/ |
D | CREDITS | 10 Andreas Steinmetz <ast@domdv.de> - Shadow password expiry support 90 Thomas Neumann <tom@smart.ruhr.de> - Shadow passwords
|
/external/clang/lib/Sema/ |
D | SemaLookup.cpp | 3084 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3128 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3138 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3145 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3152 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3160 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3166 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3172 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3179 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3267 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local [all …]
|
D | SemaTemplateInstantiateDecl.cpp | 2281 for (auto *Shadow : D->shadows()) { in VisitUsingDecl() local 2284 Shadow->getLocation(), Shadow->getTargetDecl(), TemplateArgs)); in VisitUsingDecl() 2293 getPreviousDeclForInstantiation(Shadow)) { in VisitUsingDecl() 2295 Shadow->getLocation(), OldPrev, TemplateArgs)); in VisitUsingDecl() 2301 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow); in VisitUsingDecl() 2304 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow); in VisitUsingDecl() 4297 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other)) in isInstantiationOf() local 4298 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx); in isInstantiationOf()
|