/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | Store.h | 61 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0; 70 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0; 72 virtual StoreRef BindDefault(Store store, const MemRegion *R, SVal V); 77 virtual StoreRef killBinding(Store ST, Loc L) = 0; 144 virtual StoreRef removeDeadBindings(Store store, const StackFrameContext *LCtx, 147 virtual bool includedInBindings(Store store, 152 virtual void incrementReferenceCount(Store store) {} in incrementReferenceCount() 157 virtual void decrementReferenceCount(Store store) {} in decrementReferenceCount() 184 virtual StoreRef invalidateRegions(Store store, 196 StoreRef enterStackFrame(Store store, [all …]
|
D | StoreRef.h | 26 typedef const void *Store; typedef 31 Store store; 34 StoreRef(Store, StoreManager &); 46 Store getStore() const { return store; } in getStore()
|
/external/llvm/lib/Transforms/ObjCARC/ |
D | ObjCARCContract.cpp | 199 StoreInst *Store = nullptr; in findSafeStoreForStoreStrongContraction() local 211 if (Store && SawRelease) in findSafeStoreForStoreStrongContraction() 234 if (Store) { in findSafeStoreForStoreStrongContraction() 253 Store = dyn_cast<StoreInst>(Inst); in findSafeStoreForStoreStrongContraction() 259 if (!Store || !Store->isSimple()) in findSafeStoreForStoreStrongContraction() 264 if (Store->getPointerOperand() == Loc.Ptr) in findSafeStoreForStoreStrongContraction() 273 if (!Store || !SawRelease) in findSafeStoreForStoreStrongContraction() 277 return Store; in findSafeStoreForStoreStrongContraction() 281 findRetainForStoreStrongContraction(Value *New, StoreInst *Store, in findRetainForStoreStrongContraction() argument 285 BasicBlock::iterator I = Store->getIterator(); in findRetainForStoreStrongContraction() [all …]
|
/external/v8/src/compiler/ |
D | machine-operator.cc | 283 struct Store##Type##Operator : public Operator1<StoreRepresentation> { \ 284 explicit Store##Type##Operator(WriteBarrierKind write_barrier_kind) \ 291 struct Store##Type##NoWriteBarrier##Operator final \ 292 : public Store##Type##Operator { \ 293 Store##Type##NoWriteBarrier##Operator() \ 294 : Store##Type##Operator(kNoWriteBarrier) {} \ 296 struct Store##Type##MapWriteBarrier##Operator final \ 297 : public Store##Type##Operator { \ 298 Store##Type##MapWriteBarrier##Operator() \ 299 : Store##Type##Operator(kMapWriteBarrier) {} \ [all …]
|
D | js-typed-lowering.cc | 45 void Store(const FieldAccess& access, Node* value) { in Store() function in v8::internal::compiler::__anonf3c2a0f30111::AllocationBuilder 51 void Store(ElementAccess const& access, Node* index, Node* value) { in Store() function in v8::internal::compiler::__anonf3c2a0f30111::AllocationBuilder 65 Store(AccessBuilder::ForMap(), map); in AllocateArray() 66 Store(AccessBuilder::ForFixedArrayLength(), jsgraph()->Constant(length)); in AllocateArray() 70 void Store(const FieldAccess& access, Handle<Object> value) { in Store() function in v8::internal::compiler::__anonf3c2a0f30111::AllocationBuilder 71 Store(access, jsgraph()->Constant(value)); in Store() 1477 a.Store(AccessBuilder::ForMap(), initial_map); in ReduceJSCreate() 1478 a.Store(AccessBuilder::ForJSObjectProperties(), in ReduceJSCreate() 1480 a.Store(AccessBuilder::ForJSObjectElements(), in ReduceJSCreate() 1483 a.Store(AccessBuilder::ForJSObjectInObjectProperty(initial_map, i), in ReduceJSCreate() [all …]
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopLoadElimination.cpp | 57 StoreInst *Store; member 59 StoreToLoadForwardingCandidate(LoadInst *Load, StoreInst *Store) in StoreToLoadForwardingCandidate() 60 : Load(Load), Store(Store) {} in StoreToLoadForwardingCandidate() 66 Value *StorePtr = Store->getPointerOperand(); in isDependenceDistanceOfOne() 94 OS << *Cand.Store << " -->\n"; in operator <<() 159 auto *Store = dyn_cast<StoreInst>(Source); in findStoreToLoadDependences() local 160 if (!Store) in findStoreToLoadDependences() 165 Candidates.emplace_front(Load, Store); in findStoreToLoadDependences() 225 if (Cand.Store->getParent() == OtherCand->Store->getParent() && in removeDependencesFromMultipleStores() 229 if (getInstrIndex(OtherCand->Store) < getInstrIndex(Cand.Store)) in removeDependencesFromMultipleStores() [all …]
|
/external/libmpeg2/common/arm/ |
D | impeg2_inter_pred.s | 110 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst 114 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst 116 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst 118 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst 120 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst 122 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst 124 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst 126 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst 128 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst 130 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst [all …]
|
/external/google-breakpad/src/processor/ |
D | address_map_unittest.cc | 90 ASSERT_TRUE(test_map.Store(1, in DoAddressMapTest() 103 ASSERT_TRUE(test_map.Store(10, in DoAddressMapTest() 114 ASSERT_TRUE(test_map.Store(5, in DoAddressMapTest() 117 ASSERT_TRUE(test_map.Store(20, in DoAddressMapTest() 119 ASSERT_TRUE(test_map.Store(15, in DoAddressMapTest() 121 ASSERT_FALSE(test_map.Store(10, in DoAddressMapTest() 123 ASSERT_TRUE(test_map.Store(16, in DoAddressMapTest() 125 ASSERT_TRUE(test_map.Store(14, in DoAddressMapTest()
|
D | map_serializers_unittest.cc | 165 address_map_.Store(1, 2); in TEST_F() 166 address_map_.Store(3, 6); in TEST_F() 187 address_map_.Store(-6, 2); in TEST_F() 188 address_map_.Store(-4, 3); in TEST_F() 189 address_map_.Store(8, 5); in TEST_F() 190 address_map_.Store(123, 8); in TEST_F()
|
/external/llvm/lib/IR/ |
D | MetadataImpl.h | 23 static T *getUniqued(DenseSet<T *, InfoT> &Store, in getUniqued() argument 25 auto I = Store.find_as(Key); in getUniqued() 26 return I == Store.end() ? nullptr : *I; in getUniqued() 43 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { in storeImpl() argument 46 Store.insert(N); in storeImpl()
|
D | Metadata.cpp | 86 auto &Store = Context.pImpl->MetadataAsValues; in getIfExists() local 87 return Store.lookup(MD); in getIfExists() 93 auto &Store = Context.pImpl->MetadataAsValues; in handleChangedMetadata() local 96 Store.erase(this->MD); in handleChangedMetadata() 101 auto *&Entry = Store[MD]; in handleChangedMetadata() 279 auto &Store = V->getType()->getContext().pImpl->ValuesAsMetadata; in handleDeletion() local 280 auto I = Store.find(V); in handleDeletion() 281 if (I == Store.end()) in handleDeletion() 288 Store.erase(I); in handleDeletion() 302 auto &Store = Context.pImpl->ValuesAsMetadata; in handleRAUW() local [all …]
|
/external/opencv3/platforms/winrt/ |
D | readme.txt | 7 Windows Phone/Store 8.1 Visual Studio 2013 8 Windows Phone/Store 8.0 Visual Studio 2012 10 For example, to be able to build all Windows Phone and Windows Store projects install the following: 20 To create and build all Windows Phone (8.0, 8.1) and Windows Store (8.0, 8.1) Visual Studio projects 78 Windows Store | Yes | Yes | 83 CMake command line options for Windows Phone and Store 94 Windows Store 8.1 x86 97 Windows Store 8.1 ARM 100 Note: For Windows 8.0 Phone and Store you can specify either Visual Studio 11 2012 or Visual Studio… 108 Windows Store 8.0 x86 [all …]
|
/external/vulkan-validation-layers/demos/smoke/android/src/main/jni/ |
D | Smoke.push_constant.vert.h | 104 Store 9(world_light) 33 117 Store 34(world_pos) 48 135 Store 49(world_normal) 69 139 Store 70(light_dir) 73 149 Store 75(brightness) 84 152 Store 75(brightness) 86 162 Store 100 98 167 Store 102(color) 107
|
D | Smoke.vert.h | 105 Store 9(world_light) 33 118 Store 34(world_pos) 48 136 Store 49(world_normal) 69 140 Store 70(light_dir) 73 150 Store 75(brightness) 84 153 Store 75(brightness) 86 163 Store 100 98 168 Store 102(color) 107
|
/external/v8/test/unittests/compiler/ |
D | escape-analysis-unittest.cc | 76 Node* Store(const FieldAccess& access, Node* allocation, Node* value, in Store() function in v8::internal::compiler::EscapeAnalysisTest 188 Store(AccessAtIndex(0), allocation, object1); in TEST_F() 209 Store(AccessAtIndex(0), allocation, object1); in TEST_F() 232 Store(AccessAtIndex(0), allocation1, object1); in TEST_F() 237 Store(AccessAtIndex(0), allocation2, finish1); in TEST_F() 260 Store(AccessAtIndex(0), allocation, object1); in TEST_F() 265 Node* effect1 = Store(AccessAtIndex(0), allocation, object1, finish, ifFalse); in TEST_F() 266 Node* effect2 = Store(AccessAtIndex(0), allocation, object2, finish, ifTrue); in TEST_F() 290 Node* store1 = Store(AccessAtIndex(0), allocation, object1); in TEST_F() 292 Node* store2 = Store(AccessAtIndex(0), allocation, object2); in TEST_F() [all …]
|
D | control-equivalence-unittest.cc | 26 Store(graph()->start()); in ControlEquivalenceTest() 64 return Store(graph()->NewNode(common()->Branch(), Value(), control)); in Branch() 68 return Store(graph()->NewNode(common()->IfTrue(), control)); in IfTrue() 72 return Store(graph()->NewNode(common()->IfFalse(), control)); in IfFalse() 76 return Store(graph()->NewNode(common()->Merge(1), control)); in Merge1() 80 return Store(graph()->NewNode(common()->Merge(2), control1, control2)); in Merge2() 84 return Store(graph()->NewNode(common()->Loop(2), control, control)); in Loop2() 88 return Store(graph()->NewNode(common()->End(1), control)); in End() 92 Node* Store(Node* node) { in Store() function in v8::internal::compiler::ControlEquivalenceTest
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZISelDAGToDAG.cpp | 309 SDNode *tryScatter(StoreSDNode *Store, unsigned Opcode); 320 bool canUseBlockOperation(StoreSDNode *Store, LoadSDNode *Load) const; 1080 SDNode *SystemZDAGToDAGISel::tryScatter(StoreSDNode *Store, unsigned Opcode) { in tryScatter() argument 1081 SDValue Value = Store->getValue(); in tryScatter() 1084 if (Store->getMemoryVT().getSizeInBits() != in tryScatter() 1100 if (!selectBDVAddr12Only(Store->getBasePtr(), ElemV, Base, Disp, Index) || in tryScatter() 1104 SDLoc DL(Store); in tryScatter() 1107 Store->getChain() in tryScatter() 1112 bool SystemZDAGToDAGISel::canUseBlockOperation(StoreSDNode *Store, in canUseBlockOperation() argument 1115 if (Load->getMemoryVT() != Store->getMemoryVT()) in canUseBlockOperation() [all …]
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
D | CMSSignedData.java | 31 import org.bouncycastle.util.Store; 295 public Store getCertificates() in getCertificates() 305 public Store getCRLs() in getCRLs() 315 public Store getAttributeCertificates() in getAttributeCertificates() 552 Store certificates, in replaceCertificatesAndCRLs() 553 Store attrCerts, in replaceCertificatesAndCRLs() 554 Store revocations) in replaceCertificatesAndCRLs()
|
D | CMSSignedGenerator.java | 29 import org.bouncycastle.util.Store; 128 Store certStore) in addCertificates() 151 Store crlStore) in addCRLs() 177 Store attrStore) in addAttributeCertificates()
|
/external/llvm/lib/Target/Mips/ |
D | MipsEVAInstrInfo.td | 20 // Memory Load/Store EVA encodings 37 // Load-linked EVA, Store-conditional EVA encodings 53 // Memory Load/Store EVA descriptions 84 // Load/Store Left/Right EVA descriptions 109 // Load-linked EVA, Store-conditional EVA descriptions 160 /// Load and Store EVA Instructions 182 /// Load-linked EVA, Store-conditional EVA
|
/external/webrtc/webrtc/modules/video_processing/test/ |
D | readYUV420file.m | 31 % Store luminance 34 % Store U channel 37 % Store V channel
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/ |
D | PKIXCertStore.java | 7 import org.bouncycastle.util.Store; 16 extends Store<T>
|
D | PKIXCRLStore.java | 7 import org.bouncycastle.util.Store; 16 extends Store<T>
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
D | ExtendedPKIXParameters.java | 4 import org.bouncycastle.util.Store; 243 if (!(i.next() instanceof Store)) in setStores() 268 public void addStore(Store store) in addStore() 291 public void addAdditionalStore(Store store) in addAdditionalStore() 302 public void addAddionalStore(Store store) in addAddionalStore()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | Store.cpp | 28 StoreRef StoreManager::enterStackFrame(Store OldStore, in enterStackFrame() 31 StoreRef Store = StoreRef(OldStore, *this); in enterStackFrame() local 39 Store = Bind(Store.getStore(), I->first, I->second); in enterStackFrame() 42 return Store; in enterStackFrame() 51 StoreRef StoreManager::BindDefault(Store store, const MemRegion *R, SVal V) { in BindDefault() 495 Store store, in HandleBinding()
|