Home
last modified time | relevance | path

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

12345678910>>...504

/aosp_15_r20/external/cronet/net/cert/internal/
H A Dtrust_store_win.cc97 TrustStoreWin::CertStores stores; in CreateInMemoryStoresForTesting() local
98 stores.roots = crypto::ScopedHCERTSTORE(CertOpenStore( in CreateInMemoryStoresForTesting()
100 stores.intermediates = crypto::ScopedHCERTSTORE(CertOpenStore( in CreateInMemoryStoresForTesting()
102 stores.trusted_people = crypto::ScopedHCERTSTORE(CertOpenStore( in CreateInMemoryStoresForTesting()
104 stores.disallowed = crypto::ScopedHCERTSTORE(CertOpenStore( in CreateInMemoryStoresForTesting()
106 stores.InitializeAllCertsStore(); in CreateInMemoryStoresForTesting()
107 return stores; in CreateInMemoryStoresForTesting()
117 TrustStoreWin::CertStores stores; in CreateWithCollections() local
118 stores.roots = crypto::ScopedHCERTSTORE( in CreateWithCollections()
120 stores.intermediates = crypto::ScopedHCERTSTORE( in CreateWithCollections()
[all …]
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202302/MdePkg/Include/Library/
H A DSafeIntLib.h72 and stores the converted value into the caller allocated output buffer
99 and stores the converted value into the caller allocated output buffer
126 and stores the converted value into the caller allocated output buffer
153 and stores the converted value into the caller allocated output buffer
180 and stores the converted value into the caller allocated output buffer
207 and stores the converted value into the caller allocated output buffer
234 and stores the converted value into the caller allocated output buffer
261 and stores the converted value into the caller allocated output buffer
288 and stores the converted value into the caller allocated output buffer
315 and stores the converted value into the caller allocated output buffer
[all …]
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202005/MdePkg/Include/Library/
H A DSafeIntLib.h71 and stores the converted value into the caller allocated output buffer
98 and stores the converted value into the caller allocated output buffer
125 and stores the converted value into the caller allocated output buffer
152 and stores the converted value into the caller allocated output buffer
179 and stores the converted value into the caller allocated output buffer
206 and stores the converted value into the caller allocated output buffer
233 and stores the converted value into the caller allocated output buffer
260 and stores the converted value into the caller allocated output buffer
287 and stores the converted value into the caller allocated output buffer
314 and stores the converted value into the caller allocated output buffer
[all …]
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/Library/
H A DSafeIntLib.h71 and stores the converted value into the caller allocated output buffer
98 and stores the converted value into the caller allocated output buffer
125 and stores the converted value into the caller allocated output buffer
152 and stores the converted value into the caller allocated output buffer
179 and stores the converted value into the caller allocated output buffer
206 and stores the converted value into the caller allocated output buffer
233 and stores the converted value into the caller allocated output buffer
260 and stores the converted value into the caller allocated output buffer
287 and stores the converted value into the caller allocated output buffer
314 and stores the converted value into the caller allocated output buffer
[all …]
/aosp_15_r20/external/mesa3d/src/panfrost/util/
H A 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 …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/GlobalISel/
H A 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 …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A 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 …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/Hexagon/
H A 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 …]
/aosp_15_r20/external/llvm/lib/Target/Hexagon/
H A 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 …]
/aosp_15_r20/external/threetenbp/src/main/java/org/threeten/bp/
H A 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 …]
/aosp_15_r20/external/llvm/docs/
H A 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 …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
Ddeadstore.go13 // Dead stores are those which are unconditionally followed by
17 var stores []*Value
27 // Find all the stores in this block. Categorize their uses:
28 // loadUse contains stores which are used by a subsequent load.
29 // storeUse contains stores which are used by a subsequent store.
36 stores = stores[:0]
43 stores = append(stores, v)
69 if len(stores) == 0 {
75 for _, v := range stores {
80 b.Fatalf("two final stores - simultaneous live stores %s %s", last.LongString(), v.LongString())
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/CodeGen/GlobalISel/
DLoadStoreOpt.h10 /// Specifically, it focuses on merging stores and loads to consecutive
56 /// aliasIsKnownForLoadStore just looks at the addresses of load/stores and is
86 // The base pointer used as the base for all stores in this candidate.
89 // order stores are writing to incremeneting consecutive addresses. So when
93 SmallVector<GStore *> Stores; variable
96 // unsigned value is an index into the Stores vector. The indexed store is
99 // alias checks that have been already done, only those with stores added
107 Stores.clear(); in reset()
120 /// stores in the candidate \p C.
122 /// Merges the stores in the given vector into a wide store.
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/CodeGen/GlobalISel/
DLoadStoreOpt.h10 /// Specifically, it focuses on merging stores and loads to consecutive
56 /// aliasIsKnownForLoadStore just looks at the addresses of load/stores and is
86 // The base pointer used as the base for all stores in this candidate.
89 // order stores are writing to incremeneting consecutive addresses. So when
93 SmallVector<GStore *> Stores; variable
96 // unsigned value is an index into the Stores vector. The indexed store is
99 // alias checks that have been already done, only those with stores added
107 Stores.clear(); in reset()
120 /// stores in the candidate \p C.
122 /// Merges the stores in the given vector into a wide store.
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/CodeGen/GlobalISel/
DLoadStoreOpt.h10 /// Specifically, it focuses on merging stores and loads to consecutive
56 /// aliasIsKnownForLoadStore just looks at the addresses of load/stores and is
86 // The base pointer used as the base for all stores in this candidate.
89 // order stores are writing to incremeneting consecutive addresses. So when
93 SmallVector<GStore *> Stores; variable
96 // unsigned value is an index into the Stores vector. The indexed store is
99 // alias checks that have been already done, only those with stores added
107 Stores.clear(); in reset()
120 /// stores in the candidate \p C.
122 /// Merges the stores in the given vector into a wide store.
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/GlobalISel/
H A 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 …]
/aosp_15_r20/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/x509/
H A 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 …]
/aosp_15_r20/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A 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 …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/CodeGen/GlobalISel/
DLoadStoreOpt.h10 /// Specifically, it focuses on merging stores and loads to consecutive
68 /// aliasIsKnownForLoadStore just looks at the addresses of load/stores and is
98 // The base pointer used as the base for all stores in this candidate.
101 // order stores are writing to incremeneting consecutive addresses. So when
105 SmallVector<GStore *> Stores; variable
108 // unsigned value is an index into the Stores vector. The indexed store is
111 // alias checks that have been already done, only those with stores added
119 Stores.clear(); in reset()
132 /// stores in the candidate \p C.
134 /// Merges the stores in the given vector into a wide store.
[all …]
/aosp_15_r20/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/x509/
H A 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 …]
/aosp_15_r20/external/aws-sdk-java-v2/services/kms/target/generated-sources/sdk/software/amazon/awssdk/services/kms/model/
H A DCreateCustomKeyStoreRequest.java144 * and Region. This parameter is required for all custom key stores.
154 …* account and Region. This parameter is required for all custom key stores.</p> <important>
166 …e CloudHSM cluster for an CloudHSM key store. This parameter is required for custom key stores with
177 * stores with <code>CustomKeyStoreType</code> of <code>AWS_CLOUDHSM</code>.</p>
190 … the certificate for an CloudHSM key store. This parameter is required for custom key stores with a
199 …ecifies the certificate for an CloudHSM key store. This parameter is required for custom key stores
214 * stores with a <code>CustomKeyStoreType</code> of <code>AWS_CLOUDHSM</code>.
231 …* custom key stores with a <code>CustomKeyStoreType</code> of <code>AWS_CLOUDHSM</code>.</…
306 …* is required for custom key stores with a <code>CustomKeyStoreType</code> of <code>EXTERNAL_KEY_S…
313 …* For external key stores with <code>XksProxyConnectivity</code> value of <code>VPC_ENDPOINT_SERVI…
[all …]
/aosp_15_r20/external/mesa3d/src/compiler/nir/
H A 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 …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/time/
H A Dpackage-info.java102 * {@link java.time.LocalDate} stores a date without a time.
103 * This stores a date like '2010-12-03' and could be used to store a birthday.
106 * {@link java.time.LocalTime} stores a time without a date.
107 * This stores a time like '11:30' and could be used to store an opening or closing time.
110 * {@link java.time.LocalDateTime} stores a date and time.
111 * This stores a date-time like '2010-12-03T11:30'.
114 * {@link java.time.ZonedDateTime} stores a date and time with a time-zone.
131 * {@link java.time.Month} stores a month on its own.
132 * This stores a single month-of-year in isolation, such as 'DECEMBER'.
135 * {@link java.time.DayOfWeek} stores a day-of-week on its own.
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/17/libcore/ojluni/src/main/java/java/time/
Dpackage-info.java102 * {@link java.time.LocalDate} stores a date without a time.
103 * This stores a date like '2010-12-03' and could be used to store a birthday.
106 * {@link java.time.LocalTime} stores a time without a date.
107 * This stores a time like '11:30' and could be used to store an opening or closing time.
110 * {@link java.time.LocalDateTime} stores a date and time.
111 * This stores a date-time like '2010-12-03T11:30'.
114 * {@link java.time.ZonedDateTime} stores a date and time with a time-zone.
131 * {@link java.time.Month} stores a month on its own.
132 * This stores a single month-of-year in isolation, such as 'DECEMBER'.
135 * {@link java.time.DayOfWeek} stores a day-of-week on its own.
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/time/
Dpackage-info.java102 * {@link java.time.LocalDate} stores a date without a time.
103 * This stores a date like '2010-12-03' and could be used to store a birthday.
106 * {@link java.time.LocalTime} stores a time without a date.
107 * This stores a time like '11:30' and could be used to store an opening or closing time.
110 * {@link java.time.LocalDateTime} stores a date and time.
111 * This stores a date-time like '2010-12-03T11:30'.
114 * {@link java.time.ZonedDateTime} stores a date and time with a time-zone.
131 * {@link java.time.Month} stores a month on its own.
132 * This stores a single month-of-year in isolation, such as 'DECEMBER'.
135 * {@link java.time.DayOfWeek} stores a day-of-week on its own.
[all …]

12345678910>>...504