Home
last modified time | relevance | path

Searched refs:Store (Results 1 – 25 of 362) sorted by relevance

12345678910>>...15

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DStore.h61 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 …]
DStoreRef.h26 typedef const void *Store; typedef
31 Store store;
34 StoreRef(Store, StoreManager &);
46 Store getStore() const { return store; } in getStore()
/external/v8/src/compiler/
Dmachine-operator.cc166 struct Store##Type##Operator : public Operator1<StoreRepresentation> { \
167 explicit Store##Type##Operator(WriteBarrierKind write_barrier_kind) \
172 struct Store##Type##NoWriteBarrier##Operator FINAL \
173 : public Store##Type##Operator { \
174 Store##Type##NoWriteBarrier##Operator() \
175 : Store##Type##Operator(kNoWriteBarrier) {} \
177 struct Store##Type##FullWriteBarrier##Operator FINAL \
178 : public Store##Type##Operator { \
179 Store##Type##FullWriteBarrier##Operator() \
180 : Store##Type##Operator(kFullWriteBarrier) {} \
[all …]
/external/llvm/lib/Transforms/ObjCARC/
DObjCARCContract.cpp199 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; in findRetainForStoreStrongContraction()
[all …]
/external/llvm/lib/IR/
DMetadataImpl.h23 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()
30 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { in storeImpl() argument
33 Store.insert(N); in storeImpl()
DMetadata.cpp86 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/libmpeg2/common/arm/
Dimpeg2_inter_pred.s110 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/
Daddress_map_unittest.cc90 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()
Dmap_serializers_unittest.cc165 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/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DCMSSignedData.java27 import org.bouncycastle.util.Store;
265 public Store getCertificates() in getCertificates()
275 public Store getCRLs() in getCRLs()
285 public Store getAttributeCertificates() in getAttributeCertificates()
505 Store certificates, in replaceCertificatesAndCRLs()
506 Store attrCerts, in replaceCertificatesAndCRLs()
507 Store revocations) in replaceCertificatesAndCRLs()
DCMSSignedGenerator.java29 import org.bouncycastle.util.Store;
128 Store certStore) in addCertificates()
151 Store crlStore) in addCRLs()
177 Store attrStore) in addAttributeCertificates()
DCMSUtils.java32 import org.bouncycastle.util.Store;
56 static List getCertificatesFromStore(Store certStore) in getCertificatesFromStore()
78 static List getAttributeCertificatesFromStore(Store attrStore) in getAttributeCertificatesFromStore()
101 static List getCRLsFromStore(Store crlStore) in getCRLsFromStore()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
DExtendedPKIXParameters.java4 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
DPKIXCertStore.java7 import org.bouncycastle.util.Store;
11 extends Store<T>
DPKIXCRLStore.java7 import org.bouncycastle.util.Store;
11 extends Store<T>
/external/clang/lib/StaticAnalyzer/Core/
DStore.cpp28 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()
/external/libavc/common/arm/
Dih264_inter_pred_chroma_a9q.s173 vst1.8 {q7}, [r1], r3 @ Store dest row
189 vst1.8 {q7}, [r1], r3 @ Store dest row
214 vst1.8 {d6}, [r1], r3 @ Store dest row
223 vst1.8 {d6}, [r1], r3 @ Store dest row
239 vst1.32 d4[0], [r1], r3 @ Store dest row0
246 vst1.32 d8[0], [r1], r3 @ Store dest row1
/external/e2fsprogs/tests/progs/test_data/
Dtest.icount70 # Store 1 then test...
79 # Store 0 then test
89 # Store something, then store 0, then test...
/external/llvm/lib/Target/AArch64/
DAArch64Schedule.td45 def WriteST : SchedWrite; // Store to base addr plus immediate offset
46 def WriteSTP : SchedWrite; // Store a register pair.
50 def WriteSTIdx : SchedWrite; // Store to a register index (maybe scaled).
76 // Store-exclusive is a store followed by a dependent load.
102 // Store a shuffled vector.
/external/v8/test/cctest/
Dtest-macro-assembler-x87.cc71 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::UInteger8()); in TEST() local
85 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::Integer8()); in TEST() local
99 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::Integer16()); in TEST() local
113 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::UInteger16()); in TEST() local
Dtest-macro-assembler-ia32.cc71 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::UInteger8()); in TEST() local
85 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::Integer8()); in TEST() local
99 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::Integer16()); in TEST() local
113 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::UInteger16()); in TEST() local
/external/v8/src/arm64/
Dlithium-gap-resolver-arm64.cc187 __ Store(SavedValueRegister(), cgen_->ToMemOperand(saved_destination_)); in RestoreValue() local
193 __ Store(SavedFPValueRegister(), cgen_->ToMemOperand(saved_destination_)); in RestoreValue() local
216 __ Store(source_register, cgen_->ToMemOperand(destination)); in EmitMove() local
263 __ Store(SavedValueRegister(), cgen_->ToMemOperand(destination)); in EmitMove() local
275 __ Store(src, cgen_->ToMemOperand(destination)); in EmitMove() local
/external/llvm/test/Instrumentation/MemorySanitizer/
Dstore-origin.ll12 define void @Store(i32* nocapture %p, i32 %x) #0 {
34Store", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isO…
55 ; CHECK: @Store
/external/eigen/Eigen/src/SuperLUSupport/
DSuperLUSupport.h94 Store = &storage; in SluMatrix()
100 Store = &storage; in SluMatrix()
107 Store = &storage;
124 Store = &storage; in setStorageType()
128 Store = 0; in setStorageType()
418 m_sluL.Store = 0;
419 m_sluU.Store = 0;
426 if(m_sluL.Store)
428 if(m_sluU.Store)
431 m_sluL.Store = 0;
[all …]
/external/llvm/lib/Target/R600/
DAMDGPUISelLowering.cpp1277 StoreSDNode *Store = cast<StoreSDNode>(Op); in MergeVectorStore() local
1278 EVT MemVT = Store->getMemoryVT(); in MergeVectorStore()
1289 SDValue Value = Store->getValue(); in MergeVectorStore()
1292 SDValue Ptr = Store->getBasePtr(); in MergeVectorStore()
1320 return DAG.getTruncStore(Store->getChain(), DL, PackedValue, Ptr, in MergeVectorStore()
1321 Store->getMemOperand()->getPointerInfo(), in MergeVectorStore()
1323 Store->isNonTemporal(), Store->isVolatile(), in MergeVectorStore()
1324 Store->getAlignment()); in MergeVectorStore()
1327 return DAG.getStore(Store->getChain(), DL, PackedValue, Ptr, in MergeVectorStore()
1328 Store->getMemOperand()->getPointerInfo(), in MergeVectorStore()
[all …]

12345678910>>...15