Searched refs:Store (Results 1 - 25 of 349) sorted by relevance

1234567891011>>

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStoreRef.h22 /// Store - This opaque type encapsulates an immutable mapping from
26 typedef const void *Store; typedef in namespace:clang::ento
31 Store store;
34 StoreRef(Store, StoreManager &);
46 Store getStore() const { return store; }
H A DStore.h1 //== Store.h - Interface for maps from Locations to Values ------*- C++ -*--==//
10 // This file defined the types Store and StoreManager.
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,
151 /// the specified Store object.
152 virtual void incrementReferenceCount(Store stor
[all...]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/
H A DStoreTile_TileW.cpp25 * @brief Functionality for Store.
34 sStoreTilesTableColor[SWR_TILE_MODE_WMAJOR][R8_UINT] = StoreMacroTile<TilingTraits<SWR_TILE_MODE_WMAJOR, 8>, R32G32B32A32_FLOAT, R8_UINT>::Store;
H A DStoreTile.h25 * @brief Functionality for Store.
47 /// Store Raster Tile Function Tables.
74 static void Store(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) = delete;
89 static void Store(const uint8_t* pSrc, uint8_t* (&ppDsts)[2]) function in struct:StorePixels
109 static void Store(const uint8_t* pSrc, uint8_t* (&ppDsts)[4]) function in struct:StorePixels
144 static void Store(const uint8_t* pSrc, uint8_t* (&ppDsts)[2]) function in struct:StorePixels
164 static void Store(const uint8_t* pSrc, uint8_t* (&ppDsts)[4]) function in struct:StorePixels
199 static void Store(const uint8_t* pSrc, uint8_t* (&ppDsts)[2]) function in struct:StorePixels
218 static void Store(const uint8_t* pSrc, uint8_t* (&ppDsts)[4]) function in struct:StorePixels
251 static void Store(cons function in struct:StorePixels
269 static void Store(const uint8_t* pSrc, uint8_t* (&ppDsts)[8]) function in struct:StorePixels
301 static void Store(const uint8_t* pSrc, uint8_t* (&ppDsts)[8]) function in struct:StorePixels
323 static void Store(const uint8_t* pSrc, uint8_t* (&ppDsts)[16]) function in struct:StorePixels
1113 INLINE static void Store( function in struct:StoreRasterTile
1164 INLINE static void Store( function in struct:OptStoreRasterTile
1251 INLINE static void Store( function in struct:OptStoreRasterTile
1338 INLINE static void Store( function in struct:OptStoreRasterTile
1430 INLINE static void Store( function in struct:OptStoreRasterTile
1540 INLINE static void Store( function in struct:OptStoreRasterTile
1660 INLINE static void Store( function in struct:OptStoreRasterTile
1751 INLINE static void Store( function in struct:OptStoreRasterTile
1843 INLINE static void Store( function in struct:OptStoreRasterTile
1934 INLINE static void Store( function in struct:OptStoreRasterTile
2027 INLINE static void Store( function in struct:OptStoreRasterTile
2146 INLINE static void Store( function in struct:OptStoreRasterTile
2301 static void Store( function in struct:StoreMacroTile
[all...]
/external/llvm/lib/IR/
H A DMetadataImpl.h23 static T *getUniqued(DenseSet<T *, InfoT> &Store, argument
25 auto I = Store.find_as(Key);
26 return I == Store.end() ? nullptr : *I;
43 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { argument
46 Store.insert(N);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStore.java10 public interface Store<T> interface
H A DCollectionStore.java12 implements Store<T>, Iterable<T>
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
H A DPKIXCRLStore.java7 import org.bouncycastle.util.Store;
16 extends Store<T>
H A DPKIXCertStore.java7 import org.bouncycastle.util.Store;
16 extends Store<T>
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCContract.cpp199 StoreInst *Store = nullptr; local
212 if (Store && SawRelease)
235 if (Store) {
238 // instruction in between Store and the Release conservatively can not use
254 Store = dyn_cast<StoreInst>(Inst);
260 if (!Store || !Store->isSimple())
264 // found our Store!
265 if (Store->getPointerOperand()->stripPointerCasts() == LocPtr)
274 if (!Store || !SawReleas
282 findRetainForStoreStrongContraction(Value *New, StoreInst *Store, Instruction *Release, ProvenanceAnalysis &PA) argument
[all...]
/external/v8/src/compiler/
H A Djs-create-lowering.cc55 void Store(const FieldAccess& access, Node* value) { function in class:v8::internal::compiler::__anon27573::final
61 void Store(ElementAccess const& access, Node* index, Node* value) { function in class:v8::internal::compiler::__anon27573::final
75 Store(AccessBuilder::ForMap(), map);
76 Store(AccessBuilder::ForFixedArrayLength(), jsgraph()->Constant(length));
80 void Store(const FieldAccess& access, Handle<Object> value) { function in class:v8::internal::compiler::__anon27573::final
81 Store(access, jsgraph()->Constant(value));
272 a.Store(AccessBuilder::ForMap(), initial_map);
273 a.Store(AccessBuilder::ForJSObjectProperties(),
275 a.Store(AccessBuilder::ForJSObjectElements(),
278 a.Store(AccessBuilde
[all...]
/external/google-breakpad/src/processor/
H A Daddress_map_unittest.cc90 ASSERT_TRUE(test_map.Store(1,
103 ASSERT_TRUE(test_map.Store(10,
114 ASSERT_TRUE(test_map.Store(5,
117 ASSERT_TRUE(test_map.Store(20,
119 ASSERT_TRUE(test_map.Store(15,
121 ASSERT_FALSE(test_map.Store(10,
123 ASSERT_TRUE(test_map.Store(16,
125 ASSERT_TRUE(test_map.Store(14,
H A Daddress_map-inl.h48 bool AddressMap<AddressType, EntryType>::Store(const AddressType &address, function in class:google_breakpad::AddressMap
53 BPLOG(INFO) << "Store failed, address " << HexString(address) <<
H A Daddress_map.h56 bool Store(const AddressType &address, const EntryType &entry);
H A Dmap_serializers_unittest.cc165 address_map_.Store(1, 2);
166 address_map_.Store(3, 6);
187 address_map_.Store(-6, 2);
188 address_map_.Store(-4, 3);
189 address_map_.Store(8, 5);
190 address_map_.Store(123, 8);
364 // Store child1.
366 // Store child2.
368 // Store grandchild1.
370 // Store grandchild
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cmc/
H A DSimplePKIResponse.java12 import org.bouncycastle.util.Store;
79 * Return any X.509 certificate objects in this SimplePKIResponse structure as a Store of X509CertificateHolder objects.
81 * @return a Store of X509CertificateHolder objects.
83 public Store<X509CertificateHolder> getCertificates()
89 * Return any X.509 CRL objects in this SimplePKIResponse structure as a Store of X509CRLHolder objects.
91 * @return a Store of X509CRLHolder objects.
93 public Store<X509CRLHolder> getCRLs()
/external/llvm/lib/Transforms/Scalar/
H A DLoopLoadElimination.cpp58 StoreInst *Store; member in struct:__anon14723::StoreToLoadForwardingCandidate
60 StoreToLoadForwardingCandidate(LoadInst *Load, StoreInst *Store) argument
61 : Load(Load), Store(Store) {}
68 Value *StorePtr = Store->getPointerOperand();
103 OS << *Cand.Store << " -->\n";
173 auto *Store = dyn_cast<StoreInst>(Source); local
174 if (!Store)
181 if (Store->getPointerOperand()->getType() !=
185 Candidates.emplace_front(Load, Store);
[all...]
/external/webrtc/webrtc/modules/video_processing/test/
H A DreadYUV420file.m31 % Store luminance
34 % Store U channel
37 % Store V channel
/external/webrtc/webrtc/video/
H A Dreport_block_stats.h35 void Store(const RtcpStatistics& rtcp_stats,
/external/python/cpython3/Lib/test/
H A Dtest_ast.py584 m = ast.Interactive([ast.Expr(ast.Name("x", ast.Store()))])
586 m = ast.Expression(ast.Name("x", ast.Store()))
604 args = [ast.arg("x", ast.Name("x", ast.Store()))]
612 check(arguments(args=args, defaults=[ast.Name("x", ast.Store())]),
617 kw_defaults=[None, ast.Name("x", ast.Store())]),
624 f = ast.FunctionDef("x", a, [ast.Pass()], [ast.Name("x", ast.Store())],
628 ast.Name("x", ast.Store()))
646 self.stmt(cls(bases=[ast.Name("x", ast.Store())]),
648 self.stmt(cls(keywords=[ast.keyword("x", ast.Name("x", ast.Store()))]),
652 self.stmt(cls(decorator_list=[ast.Name("x", ast.Store())]),
[all...]
/external/curl/docs/cmdline-opts/
H A Dxattr.d2 Help: Store metadata in extended file attributes
/external/libmpeg2/common/arm/
H A 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 an
[all...]
/external/tensorflow/tensorflow/contrib/lite/testing/
H A Dmessage.h65 Message* Store(Message* n) { function in class:tflite::testing::Message
/external/tensorflow/tensorflow/contrib/py2tf/pyct/
H A Dcompiler_test.py36 targets=[gast.Name('a', gast.Store(), None)],
41 targets=[gast.Name('a', gast.Store(), None)],
/external/v8/src/crankshaft/
H A Dtyping.h39 typedef v8::internal::NestedEffects<int, kNoVar> Store; typedef in class:v8::internal::final
48 Store store_;

Completed in 3232 milliseconds

1234567891011>>