Home
last modified time | relevance | path

Searched full:stores (Results 1 – 25 of 6979) sorted by relevance

12345678910>>...280

/external/mesa3d/src/panfrost/util/
Dpan_lower_writeout.c29 * operation, so we merge depth/stencil stores with color stores.
30 * If there are no color stores, we add a write to the "depth RT".
34 * depth/stencil stores into a single +ZS_EMIT op.
50 unsigned writeout, nir_intrinsic_instr **stores) in pan_nir_emit_combined_store() argument
61 nir_intrinsic_set_dest_type(intr, pan_nir_rt_store_type(stores[2])); in pan_nir_emit_combined_store()
70 stores[0] ? stores[0]->src[0].ssa : zero, in pan_nir_emit_combined_store()
71 stores[1] ? stores[1]->src[0].ssa : zero, in pan_nir_emit_combined_store()
72 stores[2] ? stores[2]->src[0].ssa : zero4, in pan_nir_emit_combined_store()
89 nir_intrinsic_instr *stores[3] = {NULL}; in pan_nir_lower_zs_store() local
103 stores[0] = intr; in pan_nir_lower_zs_store()
[all …]
/external/cronet/net/cert/internal/
Dtrust_store_win.cc95 TrustStoreWin::CertStores stores; in CreateInMemoryStoresForTesting() local
96 stores.roots = crypto::ScopedHCERTSTORE(CertOpenStore( in CreateInMemoryStoresForTesting()
98 stores.intermediates = crypto::ScopedHCERTSTORE(CertOpenStore( in CreateInMemoryStoresForTesting()
100 stores.trusted_people = crypto::ScopedHCERTSTORE(CertOpenStore( in CreateInMemoryStoresForTesting()
102 stores.disallowed = crypto::ScopedHCERTSTORE(CertOpenStore( in CreateInMemoryStoresForTesting()
104 stores.InitializeAllCertsStore(); in CreateInMemoryStoresForTesting()
105 return stores; in CreateInMemoryStoresForTesting()
115 TrustStoreWin::CertStores stores; in CreateWithCollections() local
116 stores.roots = crypto::ScopedHCERTSTORE( in CreateWithCollections()
118 stores.intermediates = crypto::ScopedHCERTSTORE( in CreateWithCollections()
[all …]
Dtrust_store_win.h29 // Create a CertStores object with the stores initialized with (empty)
30 // CERT_STORE_PROV_COLLECTION stores.
33 // Create a CertStores object with the stores pre-initialized with
34 // in-memory cert stores for testing purposes.
41 // Returns true if any of the cert stores are not initialized.
70 static std::unique_ptr<TrustStoreWin> CreateForTesting(CertStores stores);
83 // Inner Impl class for use in initializing stores.
/external/threetenbp/src/main/java/org/threeten/bp/
Dpackage.html69 {@link org.threeten.bp.LocalDate} stores a date without a time.
70 This stores a date like '2010-12-03' and could be used to store a birthday.
73 {@link org.threeten.bp.LocalTime} stores a time without a date.
74 This stores a time like '11:30' and could be used to store an opening or closing time.
77 {@link org.threeten.bp.LocalDateTime} stores a date and time.
78 This stores a date-time like '2010-12-03T11:30'.
81 {@link org.threeten.bp.OffsetTime} stores a time and offset from UTC without a date.
82 This stores a date like '11:30+01:00'.
86 {@link org.threeten.bp.OffsetDateTime} stores a date and time and offset from UTC.
87 This stores a date-time like '2010-12-03T11:30+01:00'.
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/GlobalISel/
DLoadStoreOpt.h10 /// Specifically, it focuses on merging stores and loads to consecutive
54 /// aliasIsKnownForLoadStore just looks at the addresses of load/stores and is
84 // The base pointer used as the base for all stores in this candidate.
87 // order stores are writing to incremeneting consecutive addresses. So when
91 SmallVector<GStore *> Stores; variable
94 // unsigned value is an index into the Stores vector. The indexed store is
97 // alias checks that have been already done, only those with stores added
105 Stores.clear(); in reset()
118 /// stores in the candidate \p C.
120 /// Merges the stores in the given vector into a wide store.
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/GlobalISel/
DLoadStoreOpt.cpp46 STATISTIC(NumStoresMerged, "Number of stores merged");
290 // Try to merge all the stores in the vector, splitting into separate segments in mergeStores()
292 assert(StoresToMerge.size() > 1 && "Expected multiple stores to merge"); in mergeStores()
310 // Compute the biggest store we can generate to handle the number of stores. in mergeStores()
344 bool LoadStoreOpt::doSingleStoreMerge(SmallVectorImpl<GStore *> &Stores) { in doSingleStoreMerge() argument
345 assert(Stores.size() > 1); in doSingleStoreMerge()
346 // We know that all the stores are consecutive and there are no aliasing in doSingleStoreMerge()
351 GStore *FirstStore = Stores[0]; in doSingleStoreMerge()
352 const unsigned NumStores = Stores.size(); in doSingleStoreMerge()
358 DebugLoc MergedLoc = Stores.front()->getDebugLoc(); in doSingleStoreMerge()
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/Hexagon/
DHexagonStoreWidening.cpp8 // Replace sequences of "narrow" stores to adjacent memory locations with
9 // a fewer "wide" stores that have the same effect.
17 // The purpose of this pass is to reduce the number of outstanding stores,
18 // or as one could say, "reduce store queue pressure". Also, wide stores
19 // mean fewer stores, and since there are only two memory instructions allowed
51 #define DEBUG_TYPE "hexagon-widen-stores"
96 bool instrAliased(InstrGroup &Stores, const MachineMemOperand &MMO);
97 bool instrAliased(InstrGroup &Stores, const MachineInstr *MI);
115 INITIALIZE_PASS_BEGIN(HexagonStoreWidening, "hexagon-widen-stores",
118 INITIALIZE_PASS_END(HexagonStoreWidening, "hexagon-widen-stores", in INITIALIZE_PASS_DEPENDENCY()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonStoreWidening.cpp8 // Replace sequences of "narrow" stores to adjacent memory locations with
9 // a fewer "wide" stores that have the same effect.
17 // The purpose of this pass is to reduce the number of outstanding stores,
18 // or as one could say, "reduce store queue pressure". Also, wide stores
19 // mean fewer stores, and since there are only two memory instructions allowed
51 #define DEBUG_TYPE "hexagon-widen-stores"
96 bool instrAliased(InstrGroup &Stores, const MachineMemOperand &MMO);
97 bool instrAliased(InstrGroup &Stores, const MachineInstr *MI);
115 INITIALIZE_PASS_BEGIN(HexagonStoreWidening, "hexagon-widen-stores",
118 INITIALIZE_PASS_END(HexagonStoreWidening, "hexagon-widen-stores", in INITIALIZE_PASS_DEPENDENCY()
[all …]
/external/llvm/lib/Target/Hexagon/
DHexagonStoreWidening.cpp9 // Replace sequences of "narrow" stores to adjacent memory locations with
10 // a fewer "wide" stores that have the same effect.
18 // The purpose of this pass is to reduce the number of outstanding stores,
19 // or as one could say, "reduce store queue pressure". Also, wide stores
20 // mean fewer stores, and since there are only two memory instructions allowed
24 #define DEBUG_TYPE "hexagon-widen-stores"
86 bool instrAliased(InstrGroup &Stores, const MachineMemOperand &MMO);
87 bool instrAliased(InstrGroup &Stores, const MachineInstr *MI);
141 INITIALIZE_PASS_BEGIN(HexagonStoreWidening, "hexagon-widen-stores",
144 INITIALIZE_PASS_END(HexagonStoreWidening, "hexagon-widen-stores", in INITIALIZE_PASS_DEPENDENCY()
[all …]
/external/golang-protobuf/proto/
Dwrappers.go7 // Bool stores v in a new bool value and returns a pointer to it.
10 // Int32 stores v in a new int32 value and returns a pointer to it.
13 // Int64 stores v in a new int64 value and returns a pointer to it.
16 // Float32 stores v in a new float32 value and returns a pointer to it.
19 // Float64 stores v in a new float64 value and returns a pointer to it.
22 // Uint32 stores v in a new uint32 value and returns a pointer to it.
25 // Uint64 stores v in a new uint64 value and returns a pointer to it.
28 // String stores v in a new string value and returns a pointer to it.
/external/llvm/docs/
DAtomics.rst36 pair of volatile stores. On the other hand, a non-volatile non-atomic load can
54 because any optimization dealing with stores needs to be aware of it.
99 For cases where simple loads and stores are not sufficient, LLVM provides
104 non-atomic loads and stores, but provide additional guarantees in situations
150 The rule is essentially that all memory accessed with basic loads and stores
154 variable. Note that NotAtomic volatile loads and stores are not properly
161 otherwise exist is allowed; introducing stores to shared variables is not. See
167 unaligned stores: it is not allowed in general to convert an unaligned store
168 into two aligned stores of the same width as the unaligned store. Backends are
194 stores.)
[all …]
/external/llvm/test/CodeGen/SystemZ/
Dvec-move-03.ll1 ; Test vector stores.
5 ; Test v16i8 stores.
14 ; Test v8i16 stores.
23 ; Test v4i32 stores.
32 ; Test v2i64 stores.
41 ; Test v4f32 stores.
50 ; Test v2f64 stores.
113 ; Test v2i8 stores.
122 ; Test v4i8 stores.
131 ; Test v8i8 stores.
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/x509/
DExtendedPKIXParameters.java30 private List stores; field in ExtendedPKIXParameters
67 stores = new ArrayList(); in ExtendedPKIXParameters()
135 stores = new ArrayList(_params.stores); in setParams()
209 * @throws ClassCastException if an element of <code>stores</code> is not
212 public void setCertStores(List stores) in setCertStores() argument
214 if (stores != null) in setCertStores()
216 Iterator it = stores.iterator(); in setCertStores()
225 * Sets the Bouncy Castle Stores for finding CRLs, certificates, attribute
230 * @param stores A list of stores to use.
232 * @throws ClassCastException if an element of <code>stores</code> is not
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
DExtendedPKIXParameters.java28 private List stores; field in ExtendedPKIXParameters
65 stores = new ArrayList(); in ExtendedPKIXParameters()
133 stores = new ArrayList(_params.stores); in setParams()
207 * @throws ClassCastException if an element of <code>stores</code> is not
210 public void setCertStores(List stores) in setCertStores() argument
212 if (stores != null) in setCertStores()
214 Iterator it = stores.iterator(); in setCertStores()
223 * Sets the Bouncy Castle Stores for finding CRLs, certificates, attribute
228 * @param stores A list of stores to use.
230 * @throws ClassCastException if an element of <code>stores</code> is not
[all …]
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/x509/
DExtendedPKIXParameters.java30 private List stores; field in ExtendedPKIXParameters
67 stores = new ArrayList(); in ExtendedPKIXParameters()
135 stores = new ArrayList(_params.stores); in setParams()
209 * @throws ClassCastException if an element of <code>stores</code> is not
212 public void setCertStores(List stores) in setCertStores() argument
214 if (stores != null) in setCertStores()
216 Iterator it = stores.iterator(); in setCertStores()
225 * Sets the Bouncy Castle Stores for finding CRLs, certificates, attribute
230 * @param stores A list of stores to use.
232 * @throws ClassCastException if an element of <code>stores</code> is not
[all …]
/external/mesa3d/src/compiler/nir/
Dnir_trivialize_registers.c244 nir_intrinsic_instr **stores = entry->data; in clear_reg_stores() local
249 if (stores[c] == NULL) in clear_reg_stores()
252 clear_store(stores[c], num_components, stores); in clear_reg_stores()
270 nir_intrinsic_instr **stores = entry->data; in trivialize_store() local
276 if (stores[c] == store) in trivialize_store()
286 clear_store(store, num_components, stores); in trivialize_store()
301 nir_intrinsic_instr **stores = entry->data; in trivialize_reg_stores() local
307 if (stores[c] == NULL) in trivialize_reg_stores()
310 isolate_store(stores[c]); in trivialize_reg_stores()
311 clear_store(stores[c], num_components, stores); in trivialize_reg_stores()
[all …]
/external/libchrome/third_party/jinja2/
Didtracking.py37 self.stores = set()
74 rv.stores = self.stores.copy()
78 self.stores.add(name)
96 self.stores.add(name)
105 stores = {}
107 for target in branch.stores:
108 if target in self.stores:
110 stores[target] = stores.get(target, 0) + 1
115 self.stores.update(sym.stores)
117 for name, branch_count in iteritems(stores):
[all …]
/external/python/jinja/src/jinja2/
Didtracking.py34 self.stores = set()
73 rv.stores = self.stores.copy()
77 self.stores.add(name)
95 self.stores.add(name)
104 stores = {}
106 for target in branch.stores:
107 if target in self.stores:
109 stores[target] = stores.get(target, 0) + 1
114 self.stores.update(sym.stores)
116 for name, branch_count in stores.items():
[all …]
/external/google-cloud-java/java-biglake/proto-google-cloud-biglake-v1alpha1/src/main/java/com/google/cloud/bigquery/biglake/v1alpha1/
DHiveTableOptionsOrBuilder.java30 * Stores user supplied Hive table parameters.
40 * Stores user supplied Hive table parameters.
53 * Stores user supplied Hive table parameters.
63 * Stores user supplied Hive table parameters.
77 * Stores user supplied Hive table parameters.
113 * Stores physical storage information of the data.
127 * Stores physical storage information of the data.
142 * Stores physical storage information of the data.
/external/google-cloud-java/java-biglake/proto-google-cloud-biglake-v1/src/main/java/com/google/cloud/bigquery/biglake/v1/
DHiveTableOptionsOrBuilder.java30 * Stores user supplied Hive table parameters.
40 * Stores user supplied Hive table parameters.
53 * Stores user supplied Hive table parameters.
63 * Stores user supplied Hive table parameters.
77 * Stores user supplied Hive table parameters.
113 * Stores physical storage information of the data.
127 * Stores physical storage information of the data.
141 * Stores physical storage information of the data.
/external/libaom/av1/encoder/
Dtune_vmaf.h22 // Stores the scaling factors for rdmult when tuning for VMAF.
23 // rdmult_scaling_factors[row * num_cols + col] stores the scaling factors for
27 // Stores the luma sse of the last frame.
30 // Stores the VMAF of the last frame.
33 // Stores the filter strength of the last frame.
36 // Stores the origial qindex before scaling.
/external/webrtc/examples/objc/AppRTCMobile/
DARDSettingsModel.h21 * set. Also provides list of available options for different settings. Stores
44 * Stores the provided video resolution string into the store.
64 * Stores the provided video codec setting into the store.
79 * Stores the provided bitrate value into the store.
91 * Stores the provided audio only setting into the store.
103 * Stores the provided create AecDump setting into the store.
116 * Stores the provided use manual audio config setting into the store.
/external/libhevc/common/arm/
Dihevc_inter_pred_chroma_vert.s112 stmfd sp!,{r4-r12,r14} @stack stores the values of the arguments
163 vst1.8 {d6},[r1]! @stores the loaded value
165 vst1.8 {d4},[r6] @stores the loaded value
204 vst1.32 {d4[0]},[r1] @stores the loaded value
206 vst1.32 {d4[1]},[r6] @stores the loaded value
259 vst1.8 {d30},[r1]! @stores the loaded value
276 vst1.8 {d28},[r7],r3 @stores the loaded value
292 vst1.8 {d26},[r7],r3 @stores the loaded value
300 vst1.8 {d24},[r7],r3 @stores the loaded value
320 vst1.8 {d30},[r1]! @stores the loaded value
[all …]
Dihevc_inter_pred_chroma_vert_w16out.s112 stmfd sp!,{r4-r12,r14} @stack stores the values of the arguments
162 vst1.8 {q3},[r1]! @stores the loaded value
164 vst1.8 {q2},[r6] @stores the loaded value
202 vst1.32 {d4},[r1] @stores the loaded value
204 vst1.32 {d5},[r6] @stores the loaded value
257 vst1.8 {q15},[r1]! @stores the loaded value
274 vst1.8 {q14},[r7],r3 @stores the loaded value
287 vst1.8 {q13},[r7],r3 @stores the loaded value
294 vst1.8 {q12},[r7],r3 @stores the loaded value
311 vst1.8 {q15},[r1]! @stores the loaded value
[all …]
Dihevc_inter_pred_chroma_vert_w16inp_w16out.s112 stmfd sp!, {r4-r12, r14} @stack stores the values of the arguments
161 vst1.32 {d0},[r1]! @stores the loaded value
162 vst1.32 {d30},[r7] @stores the loaded value
222 vst1.32 {d30},[r1]! @stores the loaded value
239 vst1.32 {d28},[r9],r3 @stores the loaded value
250 vst1.32 {d26},[r9],r3 @stores the loaded value
260 vst1.32 {d24},[r9] @stores the loaded value
276 vst1.32 {d30},[r1]! @stores the loaded value
288 vst1.32 {d28},[r9],r3 @stores the loaded value
298 vst1.32 {d26},[r9],r3 @stores the loaded value
[all …]

12345678910>>...280