Home
last modified time | relevance | path

Searched refs:store (Results 76 - 100 of 1211) sorted by relevance

12345678910>>...49

/third_party/node/deps/v8/third_party/wasm-api/example/
H A Dhello.c24 wasm_store_t* store = wasm_store_new(engine); in main() local
46 own wasm_module_t* module = wasm_module_new(store, &binary); in main()
58 wasm_func_new(store, hello_type, hello_callback); in main()
66 wasm_instance_new(store, module, imports, NULL); in main()
102 wasm_store_delete(store); in main()
H A Dserialize.cc25 auto store = store_.get(); in run() local
43 auto module = wasm::Module::make(store, binary); in run()
55 auto deserialized = wasm::Module::deserialize(store, serialized); in run()
66 auto hello_func = wasm::Func::make(store, hello_type.get(), hello_callback); in run()
71 auto instance = wasm::Instance::make(store, deserialized.get(), imports); in run()
H A Dstart.c25 wasm_store_t* store = wasm_store_new(engine); in main() local
47 own wasm_module_t* module = wasm_module_new(store, &binary); in main()
59 wasm_instance_new(store, module, NULL, &trap); in main()
99 wasm_store_delete(store); in main()
H A Dglobal.c52 wasm_store_t* store = wasm_store_new(engine); in main() local
74 own wasm_module_t* module = wasm_module_new(store, &binary); in main()
95 wasm_global_new(store, const_f32_type, &val_f32_1); in main()
98 wasm_global_new(store, const_i64_type, &val_i64_2); in main()
101 wasm_global_new(store, var_f32_type, &val_f32_3); in main()
104 wasm_global_new(store, var_i64_type, &val_i64_4); in main()
120 wasm_instance_new(store, module, imports, NULL); in main()
226 wasm_store_delete(store); in main()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant_lib/cert_mgr_deps/src/
H A Dcert_manager_api.c23 CM_API_EXPORT int32_t CmGetAppCert(const struct CmBlob *keyUri, const uint32_t store, in CmGetAppCert() argument
27 if (keyUri == NULL || certificate == NULL || (store != CM_CREDENTIAL_STORE && in CmGetAppCert()
28 store != CM_PRI_CREDENTIAL_STORE && store != CM_SYS_CREDENTIAL_STORE)) { in CmGetAppCert()
32 int32_t ret = CmClientGetAppCert(keyUri, store, certificate); in CmGetAppCert()
/third_party/mesa3d/src/panfrost/shared/test/
H A Dtest-tiling.cpp128 enum pipe_format format, bool store)
137 unsigned dst_stride = store ? tiled_stride : linear_stride;
138 unsigned src_stride = store ? linear_stride : tiled_stride;
142 void *ref = calloc(bpp, store ? (tiled_width * tiled_height) : (rw * linear_stride));
144 if (store) {
160 ref_access_tiled(ref, store ? linear : tiled, rx, ry, rw, rh,
161 dst_stride, src_stride, format, store);
163 if (store)
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dhashtablez_sampler.h23 // store information about a single sample.
25 // `Record*` methods store information into samples.
108 info->total_probe_length.store(total_probe_length, std::memory_order_relaxed); in RecordRehashSlow()
109 info->num_erases.store(0, std::memory_order_relaxed); in RecordRehashSlow()
110 // There is only one concurrent writer, so `load` then `store` is sufficient in RecordRehashSlow()
112 info->num_rehashes.store( in RecordRehashSlow()
119 info->size.store(size, std::memory_order_relaxed); in RecordStorageChangedSlow()
120 info->capacity.store(capacity, std::memory_order_relaxed); in RecordStorageChangedSlow()
123 info->total_probe_length.store(0, std::memory_order_relaxed); in RecordStorageChangedSlow()
124 info->num_erases.store( in RecordStorageChangedSlow()
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DCopyTextureForBrowserHelper.cpp176 RenderPipelineBase* GetCachedPipeline(InternalPipelineStore* store, in GetCachedPipeline() argument
178 auto pipeline = store->copyTextureForBrowserPipelines.find(dstFormat); in GetCachedPipeline()
179 if (pipeline != store->copyTextureForBrowserPipelines.end()) { in GetCachedPipeline()
188 InternalPipelineStore* store = device->GetInternalPipelineStore(); in GetOrCreateCopyTextureForBrowserPipeline() local
190 if (GetCachedPipeline(store, dstFormat) == nullptr) { in GetOrCreateCopyTextureForBrowserPipeline()
192 if (store->copyTextureForBrowser == nullptr) { in GetOrCreateCopyTextureForBrowserPipeline()
194 store->copyTextureForBrowser, in GetOrCreateCopyTextureForBrowserPipeline()
198 ShaderModuleBase* shaderModule = store->copyTextureForBrowser.Get(); in GetOrCreateCopyTextureForBrowserPipeline()
230 store->copyTextureForBrowserPipelines.insert({dstFormat, std::move(pipeline)}); in GetOrCreateCopyTextureForBrowserPipeline()
233 return GetCachedPipeline(store, dstForma in GetOrCreateCopyTextureForBrowserPipeline()
[all...]
H A DIndirectDrawValidationEncoder.cpp137 InternalPipelineStore* store = device->GetInternalPipelineStore(); in GetOrCreateRenderValidationPipeline() local
139 if (store->renderValidationPipeline == nullptr) { in GetOrCreateRenderValidationPipeline()
141 if (store->renderValidationShader == nullptr) { in GetOrCreateRenderValidationPipeline()
143 store->renderValidationShader, in GetOrCreateRenderValidationPipeline()
166 computePipelineDescriptor.compute.module = store->renderValidationShader.Get(); in GetOrCreateRenderValidationPipeline()
169 DAWN_TRY_ASSIGN(store->renderValidationPipeline, in GetOrCreateRenderValidationPipeline()
173 return store->renderValidationPipeline.Get(); in GetOrCreateRenderValidationPipeline()
284 auto* const store = device->GetInternalPipelineStore(); in EncodeIndirectDrawValidationCommands() local
285 ScratchBuffer& validatedParamsBuffer = store->scratchIndirectStorage; in EncodeIndirectDrawValidationCommands()
286 ScratchBuffer& batchDataBuffer = store in EncodeIndirectDrawValidationCommands()
[all...]
/third_party/rust/crates/rust-openssl/openssl/src/x509/
H A Dtests.rs17 use crate::x509::store::X509Lookup;
18 use crate::x509::store::X509StoreBuilder;
530 let store = store_bldr.build(); in test_verify_cert()
534 .init(&store, &cert, &chain, |c| c.verify_cert()) in test_verify_cert()
537 .init(&store, &cert, &chain, |c| c.verify_cert()) in test_verify_cert()
551 let store = store_bldr.build(); in test_verify_fails()
555 .init(&store, &cert, &chain, |c| c.verify_cert()) in test_verify_fails()
571 let store = store_bldr.build(); in test_verify_fails_with_crl_flag_set_and_no_crl()
576 .init(&store, &cert, &chain, |c| { in test_verify_fails_with_crl_flag_set_and_no_crl()
605 let store in test_verify_cert_with_purpose()
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_blend.c369 nir_lower_blend_store(nir_builder *b, nir_intrinsic_instr *store, in nir_lower_blend_store() argument
372 assert(store->intrinsic == nir_intrinsic_store_deref); in nir_lower_blend_store()
374 nir_variable *var = nir_intrinsic_get_var(store, 0); in nir_lower_blend_store()
381 b->cursor = nir_before_instr(&store->instr); in nir_lower_blend_store()
386 assert(store->src[1].is_ssa); in nir_lower_blend_store()
387 nir_ssa_def *src = nir_pad_vector(b, store->src[1].ssa, 4); in nir_lower_blend_store()
410 /* Shave off any components we don't want to store */ in nir_lower_blend_store()
413 /* Grow or shrink the store destination as needed */ in nir_lower_blend_store()
414 assert(nir_intrinsic_write_mask(store) == in nir_lower_blend_store()
415 nir_component_mask(store in nir_lower_blend_store()
[all...]
/third_party/node/deps/openssl/openssl/include/internal/
H A Dcore.h31 /* Get a temporary store */
33 /* Reserve the appropriate method store */
34 int (*lock_store)(void *store, void *data);
35 /* Unreserve the appropriate method store */
36 int (*unlock_store)(void *store, void *data);
37 /* Get an already existing method from a store */
38 void *(*get)(void *store, const OSSL_PROVIDER **prov, void *data);
39 /* Store a method in a store */
40 int (*put)(void *store, void *method, const OSSL_PROVIDER *prov,
/third_party/openssl/include/internal/
H A Dcore.h31 /* Get a temporary store */
33 /* Reserve the appropriate method store */
34 int (*lock_store)(void *store, void *data);
35 /* Unreserve the appropriate method store */
36 int (*unlock_store)(void *store, void *data);
37 /* Get an already existing method from a store */
38 void *(*get)(void *store, const OSSL_PROVIDER **prov, void *data);
39 /* Store a method in a store */
40 int (*put)(void *store, void *method, const OSSL_PROVIDER *prov,
/third_party/mesa3d/src/panfrost/shared/
H A Dpan_tiling.c142 * We iterate across the pixels we're trying to store in source-order. For each
159 * store in expanded_y.
220 #define TILED_UNALIGNED_TYPES(store, shift) { \
222 TILED_UNALIGNED_TYPE(uint8_t, store, shift) \
224 TILED_UNALIGNED_TYPE(uint16_t, store, shift) \
226 TILED_UNALIGNED_TYPE(pan_uint24_t, store, shift) \
228 TILED_UNALIGNED_TYPE(uint32_t, store, shift) \
230 TILED_UNALIGNED_TYPE(pan_uint48_t, store, shift) \
232 TILED_UNALIGNED_TYPE(uint64_t, store, shift) \
234 TILED_UNALIGNED_TYPE(pan_uint96_t, store, shif
[all...]
/third_party/python/Tools/scripts/
H A Dobjgraph.py41 def store(dict, key, item): function
77 store(def2file, name, fn)
78 store(file2def, fn, name)
80 store(file2undef, fn, name)
81 store(undef2file, name, fn)
131 store(undefs, ext, filename)
/third_party/node/lib/
H A Dasync_hooks.js312 const store = triggerResource[this.kResourceStore];
314 resource[this.kResourceStore] = store;
318 enterWith(store) {
321 resource[this.kResourceStore] = store;
324 run(store, callback, ...args) {
325 // Avoid creation of an AsyncResource if store is already active
326 if (ObjectIs(store, this.getStore())) {
335 resource[this.kResourceStore] = store;
/third_party/node/test/cctest/
H A Dtest_node_crypto.cc18 X509_STORE* store = node::crypto::NewRootCertStore(); in TEST() local
19 ASSERT_TRUE(store); in TEST()
22 X509_STORE_free(store); in TEST()
/third_party/libwebsockets/lib/secure-streams/
H A Dpolicy-common.c295 * trust store behind it.
297 * Static policy: We want to make use of a trust store / vhost from the policy and add to its
311 if (!pol->trust.store) { in lws_ss_policy_ref_trust_store()
314 /* corner case... there's no trust store used */ in lws_ss_policy_ref_trust_store()
329 v = lws_get_vhost_by_name(context, pol->trust.store->name); in lws_ss_policy_ref_trust_store()
336 i.vhost_name = pol->trust.store->name; in lws_ss_policy_ref_trust_store()
339 i.client_ssl_ca_mem = pol->trust.store->ssx509[0]->ca_der; in lws_ss_policy_ref_trust_store()
341 pol->trust.store->ssx509[0]->ca_der_len; in lws_ss_policy_ref_trust_store()
344 lwsl_info("%s: %s trust store initial '%s'\n", __func__, in lws_ss_policy_ref_trust_store()
345 i.vhost_name, pol->trust.store in lws_ss_policy_ref_trust_store()
[all...]
/third_party/mesa3d/src/compiler/nir/tests/
H A Dload_store_vectorizer_tests.cpp93 _b = nir_builder_init_simple_shader(MESA_SHADER_COMPUTE, &options, "load store tests"); in nir_load_store_vectorize_test()
283 nir_intrinsic_instr *store = nir_intrinsic_instr_create(b->shader, intrinsic); in create_indirect_store() local
284 nir_ssa_dest_init(&store->instr, &store->dest, components, bit_size, NULL); in create_indirect_store()
285 store->num_components = components; in create_indirect_store()
287 store->src[0] = nir_src_for_ssa(value); in create_indirect_store()
288 store->src[1] = nir_src_for_ssa(res); in create_indirect_store()
289 store->src[2] = nir_src_for_ssa(offset); in create_indirect_store()
291 store->src[0] = nir_src_for_ssa(value); in create_indirect_store()
292 store in create_indirect_store()
736 nir_intrinsic_instr *store = get_intrinsic(nir_intrinsic_store_ssbo, 0); TEST_F() local
759 nir_intrinsic_instr *store = get_intrinsic(nir_intrinsic_store_ssbo, 0); TEST_F() local
783 nir_intrinsic_instr *store = get_intrinsic(nir_intrinsic_store_ssbo, 0); TEST_F() local
1062 nir_intrinsic_instr *store = get_intrinsic(nir_intrinsic_store_ssbo, 0); TEST_F() local
1087 nir_intrinsic_instr *store = get_intrinsic(nir_intrinsic_store_ssbo, 0); TEST_F() local
1113 nir_intrinsic_instr *store = get_intrinsic(nir_intrinsic_store_ssbo, 0); TEST_F() local
1137 nir_intrinsic_instr *store = get_intrinsic(nir_intrinsic_store_ssbo, 0); TEST_F() local
1174 nir_intrinsic_instr *store = get_intrinsic(nir_intrinsic_store_ssbo, 0); TEST_F() local
1524 nir_intrinsic_instr *store = get_intrinsic(nir_intrinsic_store_deref, 0); TEST_F() local
[all...]
/third_party/node/src/
H A Dnode_blob.cc75 const std::vector<BlobEntry>& store, in Create()
87 return MakeBaseObject<Blob>(env, obj, store, length); in Create()
108 std::shared_ptr<BackingStore> store = view->Buffer()->GetBackingStore(); in New() local
110 view->Buffer()->Detach(); // The Blob will own the backing store now. in New()
111 entries.emplace_back(BlobEntry{std::move(store), byte_length, 0}); in New()
151 tracker->TrackFieldWithSize("store", length_); in MemoryInfo()
157 std::shared_ptr<BackingStore> store = in GetArrayBuffer() local
160 unsigned char* dest = static_cast<unsigned char*>(store->Data()); in GetArrayBuffer()
163 unsigned char* src = static_cast<unsigned char*>(entry.store->Data()); in GetArrayBuffer()
172 return scope.Escape(ArrayBuffer::New(env->isolate(), store)); in GetArrayBuffer()
74 Create(Environment* env, const std::vector<BlobEntry>& store, size_t length) Create() argument
206 Blob( Environment* env, v8::Local<v8::Object> obj, const std::vector<BlobEntry>& store, size_t length) Blob() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DOptimizer.cpp54 static bool loadTypeMatchesStore(const Ice::Inst *load, const Ice::Inst *store);
110 // Eliminate allocas which store the address of other allocas. in run()
129 // Eliminates allocas which store the address of other allocas.
153 for(auto *store : uses) in propagateAlloca()
155 if(isStore(*store) && store->getData() == address) in propagateAlloca()
157 Ice::Operand *dest = store->getStoreAddress(); in propagateAlloca()
166 // Make sure the only store into the stack variable is this address, and that all of its other uses are loads. in propagateAlloca()
175 // The address is now only stored, never loaded, so the store can be eliminated, together with its alloca. in propagateAlloca()
177 deleteInstruction(store); in propagateAlloca()
395 Ice::Inst *store; optimizeSingleBasicBlockLoadsStores() member
449 const Ice::Inst *store = entry->second.store; optimizeSingleBasicBlockLoadsStores() local
705 loadTypeMatchesStore(const Ice::Inst *load, const Ice::Inst *store) loadTypeMatchesStore() argument
[all...]
/third_party/libunwind/libunwind/src/arm/
H A Dgetcontext.S37 @ store r0
47 @ store r1 to r12
49 @ reconstruct r13 at call site, then store
52 @ retrieve r14 from call site, then store
/third_party/node/deps/v8/src/sandbox/
H A Dexternal-pointer-table.cc43 store(i, make_freelist_entry(current_freelist_head)); in Sweep()
47 store(i, clear_mark_bit(entry)); in Sweep()
82 store(i, make_freelist_entry(i + 1)); in Grow()
84 store(last, make_freelist_entry(0)); in Grow()
86 // This must be a release store to prevent reordering of the preceeding in Grow()
87 // stores to the freelist from being reordered past this store. See in Grow()
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_util.c79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr + in draw_alloc_temp_verts() local
81 if (!store) in draw_alloc_temp_verts()
86 FREE(store); in draw_alloc_temp_verts()
91 stage->tmp[i] = (struct vertex_header *)(store + i * MAX_VERTEX_SIZE); in draw_alloc_temp_verts()
/third_party/mesa3d/src/intel/tools/
H A Di965_asm.c130 void *store = p->store; in i965_postprocess_labels() local
140 brw_inst *inst = store + ilabel->offset; in i965_postprocess_labels()
213 void *store; in main() local
326 store = p->store; in main()
337 brw_validate_instructions(p->isa, p->store, 0, in main()
346 const brw_inst *insn = store + offset; in main()

Completed in 13 milliseconds

12345678910>>...49