Home
last modified time | relevance | path

Searched refs:store (Results 226 - 250 of 1249) sorted by relevance

12345678910>>...50

/third_party/node/deps/v8/src/objects/
H A Djs-array-buffer.h9 #include "src/objects/backing-store.h"
93 // Attaches the backing store to an already constructed empty ArrayBuffer.
96 // Detach the backing store from this array buffer if it is detachable.
98 // store from the array buffer tracker. If the array buffer is not detachable,
108 // Get a reference to backing store of this array buffer, if there is a
109 // backing store. Returns nullptr if there is no backing store (e.g. detached
126 // Frees the associated ArrayBufferExtension and returns its backing store.
139 // the backing store reference is stored in the backing store fiel
[all...]
H A Dtagged-field.h44 static inline void store(HeapObject host, T value);
45 static inline void store(HeapObject host, int offset, T value);
/third_party/skia/modules/skottie/src/effects/
H A DMotionBlurEffect.cpp144 (d + skvx::cast<uint16_t>(s)).store(dst); in renderToRaster8888Pow2Samples()
154 (d + skvx::cast<uint16_t>(s)).store(dst); in renderToRaster8888Pow2Samples()
174 skvx::cast<uint8_t>(s >> shift).store(dst); in renderToRaster8888Pow2Samples()
182 skvx::cast<uint8_t>(s >> shift).store(dst); in renderToRaster8888Pow2Samples()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant_lib/cert_mgr_deps/src/
H A Dcm_ipc_client.c125 static int32_t GetAppCert(enum CertManagerInterfaceCode type, const struct CmBlob *certUri, const uint32_t store, in GetAppCert() argument
136 .uint32Param = store }, in GetAppCert()
173 int32_t CmClientGetAppCert(const struct CmBlob *keyUri, const uint32_t store, struct Credential *certificate) in CmClientGetAppCert() argument
175 return GetAppCert(CM_MSG_GET_APP_CERTIFICATE, keyUri, store, certificate); in CmClientGetAppCert()
/third_party/mesa3d/src/broadcom/vulkan/
H A Dv3dvx_cmd_buffer.c317 cl_emit(cl, STORE_TILE_BUFFER_GENERAL, store) { in cmd_buffer_render_pass_emit_store()
318 store.buffer_to_store = buffer; in cmd_buffer_render_pass_emit_store()
319 store.address = v3dv_cl_address(image->mem->bo, layer_offset); in cmd_buffer_render_pass_emit_store()
320 store.clear_buffer_being_stored = clear; in cmd_buffer_render_pass_emit_store()
322 store.output_image_format = iview->format->rt_type; in cmd_buffer_render_pass_emit_store()
334 store.output_image_format = image->format->rt_type; in cmd_buffer_render_pass_emit_store()
337 store.r_b_swap = iview->swap_rb; in cmd_buffer_render_pass_emit_store()
338 store.channel_reverse = iview->channel_reverse; in cmd_buffer_render_pass_emit_store()
339 store.memory_format = slice->tiling; in cmd_buffer_render_pass_emit_store()
343 store in cmd_buffer_render_pass_emit_store()
[all...]
/third_party/curl/lib/
H A Dnetrc.c117 char *store = tok; in parsenetrc() local
145 *store++ = s; in parsenetrc()
148 *store = 0; in parsenetrc()
/third_party/node/deps/v8/src/libplatform/
H A Ddefault-job.cc118 is_canceled_.store(true, std::memory_order_relaxed); in CancelAndWait()
126 is_canceled_.store(true, std::memory_order_relaxed); in CancelAndDetach()
190 is_canceled_.store(true, std::memory_order_relaxed); in WaitForParticipationOpportunityLockRequired()
/third_party/node/deps/openssl/openssl/crypto/cmp/
H A Dcmp_util.c202 int ossl_cmp_X509_STORE_add1_certs(X509_STORE *store, STACK_OF(X509) *certs, in ossl_cmp_X509_STORE_add1_certs() argument
207 if (store == NULL) { in ossl_cmp_X509_STORE_add1_certs()
217 if (!X509_STORE_add_cert(store, cert)) /* ups cert ref counter */ in ossl_cmp_X509_STORE_add1_certs()
/third_party/openssl/crypto/cmp/
H A Dcmp_util.c202 int ossl_cmp_X509_STORE_add1_certs(X509_STORE *store, STACK_OF(X509) *certs, in ossl_cmp_X509_STORE_add1_certs() argument
207 if (store == NULL) { in ossl_cmp_X509_STORE_add1_certs()
217 if (!X509_STORE_add_cert(store, cert)) /* ups cert ref counter */ in ossl_cmp_X509_STORE_add1_certs()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-atomic.hh88 #define hb_atomic_int_impl_set_relaxed(AI, V) (reinterpret_cast<std::atomic<int> *> (AI)->store ((V), std::memory_order_relaxed))
89 #define hb_atomic_int_impl_set(AI, V) (reinterpret_cast<std::atomic<int> *> (AI)->store ((V), std::memory_order_release))
93 #define hb_atomic_ptr_impl_set_relaxed(P, V) (reinterpret_cast<std::atomic<void*> *> (P)->store ((V), std::memory_order_relaxed))
/third_party/mesa3d/src/compiler/nir/
H A Dnir_deref.c207 /* A use in src[1] of a store means we're taking that pointer and in nir_deref_instr_has_complex_use()
1346 opt_store_vec_deref(nir_builder *b, nir_intrinsic_instr *store) in opt_store_vec_deref() argument
1348 nir_deref_instr *deref = nir_src_as_deref(store->src[0]); in opt_store_vec_deref()
1349 nir_component_mask_t write_mask = nir_intrinsic_write_mask(store); in opt_store_vec_deref()
1356 assert(store->src[1].is_ssa); in opt_store_vec_deref()
1357 nir_ssa_def *data = store->src[1].ssa; in opt_store_vec_deref()
1365 nir_instr_rewrite_src(&store->instr, &store->src[0], in opt_store_vec_deref()
1373 nir_instr_rewrite_src(&store->instr, &store in opt_store_vec_deref()
[all...]
H A Dnir_lower_io.c419 /* Only the first store has a component offset */ in lower_load()
455 nir_intrinsic_instr *store = in emit_store() local
457 store->num_components = num_components; in emit_store()
459 store->src[0] = nir_src_for_ssa(data); in emit_store()
461 nir_intrinsic_set_base(store, var->data.driver_location); in emit_store()
462 nir_intrinsic_set_component(store, component); in emit_store()
463 nir_intrinsic_set_src_type(store, src_type); in emit_store()
465 nir_intrinsic_set_write_mask(store, write_mask); in emit_store()
467 if (nir_intrinsic_has_access(store)) in emit_store()
468 nir_intrinsic_set_access(store, va in emit_store()
1687 nir_intrinsic_instr *store = nir_intrinsic_instr_create(b->shader, op); build_explicit_io_store() local
[all...]
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt_fetch_shade_pipeline_llvm.c82 char store[DRAW_GS_LLVM_MAX_VARIANT_KEY_SIZE]; in llvm_middle_end_prepare_gs() local
84 key = draw_gs_llvm_make_variant_key(llvm, store); in llvm_middle_end_prepare_gs()
149 char store[DRAW_TCS_LLVM_MAX_VARIANT_KEY_SIZE]; in llvm_middle_end_prepare_tcs() local
152 key = draw_tcs_llvm_make_variant_key(llvm, store); in llvm_middle_end_prepare_tcs()
217 char store[DRAW_TES_LLVM_MAX_VARIANT_KEY_SIZE]; in llvm_middle_end_prepare_tes() local
220 key = draw_tes_llvm_make_variant_key(llvm, store); in llvm_middle_end_prepare_tes()
347 char store[DRAW_LLVM_MAX_VARIANT_KEY_SIZE]; in llvm_middle_end_prepare() local
350 key = draw_llvm_make_variant_key(llvm, store); in llvm_middle_end_prepare()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dscalar_replacement_pass.cpp287 Instruction* store, const std::vector<Instruction*>& replacements) { in ReplaceWholeStore()
288 // Replaces a store to the whole composite with a series of extract and stores in ReplaceWholeStore()
290 uint32_t storeInput = store->GetSingleWordInOperand(1u); in ReplaceWholeStore()
291 BasicBlock* block = context()->get_instr_block(store); in ReplaceWholeStore()
292 BasicBlock::iterator where(store); in ReplaceWholeStore()
312 iter->UpdateDebugInfoFrom(store); in ReplaceWholeStore()
316 // Create the store. in ReplaceWholeStore()
324 for (uint32_t i = 2; i < store->NumInOperands(); ++i) { in ReplaceWholeStore()
325 Operand copy(store->GetInOperand(i)); in ReplaceWholeStore()
329 iter->UpdateDebugInfoFrom(store); in ReplaceWholeStore()
286 ReplaceWholeStore( Instruction* store, const std::vector<Instruction*>& replacements) ReplaceWholeStore() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dscalar_replacement_pass.cpp287 Instruction* store, const std::vector<Instruction*>& replacements) { in ReplaceWholeStore()
288 // Replaces a store to the whole composite with a series of extract and stores in ReplaceWholeStore()
290 uint32_t storeInput = store->GetSingleWordInOperand(1u); in ReplaceWholeStore()
291 BasicBlock* block = context()->get_instr_block(store); in ReplaceWholeStore()
292 BasicBlock::iterator where(store); in ReplaceWholeStore()
312 iter->UpdateDebugInfoFrom(store); in ReplaceWholeStore()
316 // Create the store. in ReplaceWholeStore()
324 for (uint32_t i = 2; i < store->NumInOperands(); ++i) { in ReplaceWholeStore()
325 Operand copy(store->GetInOperand(i)); in ReplaceWholeStore()
329 iter->UpdateDebugInfoFrom(store); in ReplaceWholeStore()
286 ReplaceWholeStore( Instruction* store, const std::vector<Instruction*>& replacements) ReplaceWholeStore() argument
[all...]
/test/xts/acts/multimedia/av_codec/vcodec/hdrcodec/src/
H A Dhdrcodec_ndk_sample.cpp103 g_isRunning.store(false); in VencOutputDataReady()
300 g_isRunning.store(false); in InputFunc()
423 g_isRunning.store(true); in Start()
434 g_isRunning.store(false); in Start()
448 g_isRunning.store(false); in StopInloop()
/third_party/protobuf/src/google/protobuf/
H A Darena.cc73 hint_.store(nullptr, std::memory_order_relaxed); in Init()
74 threads_.store(nullptr, std::memory_order_relaxed); in Init()
84 threads_.store(serial, std::memory_order_relaxed); in Init()
85 space_allocated_.store(options_.initial_block_size, in Init()
89 space_allocated_.store(0, std::memory_order_relaxed); in Init()
/third_party/mesa3d/src/microsoft/compiler/
H A Ddxil_nir.c290 /* The number of components to store depends on the number of bytes. */ in lower_load_ssbo()
347 * extra complexity to store >= 32 bit components. in lower_store_ssbo()
360 * store. If a component is skipped by the write mask, do a smaller in lower_store_ssbo()
361 * sub-store in lower_store_ssbo()
374 nir_intrinsic_instr *store; in lower_store_ssbo() local
379 /* If we have 16 bits or less to store we need to place them in lower_store_ssbo()
391 store = nir_intrinsic_instr_create(b->shader, in lower_store_ssbo()
393 store->src[0] = nir_src_for_ssa(vec32); in lower_store_ssbo()
394 store->src[1] = nir_src_for_ssa(nir_inot(b, mask)); in lower_store_ssbo()
395 store in lower_store_ssbo()
499 nir_intrinsic_instr *store = lower_store_vec32() local
[all...]
/third_party/node/deps/openssl/openssl/apps/lib/
H A Dapps.c39 #include <openssl/store.h>
47 #include <openssl/store.h>
750 static X509_STORE *sk_X509_to_store(X509_STORE *store /* may be NULL */, in sk_X509_to_store()
755 if (store == NULL) in sk_X509_to_store()
756 store = X509_STORE_new(); in sk_X509_to_store()
757 if (store == NULL) in sk_X509_to_store()
760 if (!X509_STORE_add_cert(store, sk_X509_value(certs, i))) { in sk_X509_to_store()
761 X509_STORE_free(store); in sk_X509_to_store()
765 return store; in sk_X509_to_store()
769 * Create cert store structur
775 X509_STORE *store = NULL; load_certstore() local
1364 X509_STORE *store = X509_STORE_new(); setup_verify() local
[all...]
/third_party/openssl/apps/lib/
H A Dapps.c39 #include <openssl/store.h>
47 #include <openssl/store.h>
750 static X509_STORE *sk_X509_to_store(X509_STORE *store /* may be NULL */, in sk_X509_to_store()
755 if (store == NULL) in sk_X509_to_store()
756 store = X509_STORE_new(); in sk_X509_to_store()
757 if (store == NULL) in sk_X509_to_store()
760 if (!X509_STORE_add_cert(store, sk_X509_value(certs, i))) { in sk_X509_to_store()
761 X509_STORE_free(store); in sk_X509_to_store()
765 return store; in sk_X509_to_store()
769 * Create cert store structur
775 X509_STORE *store = NULL; load_certstore() local
1362 X509_STORE *store = X509_STORE_new(); setup_verify() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dtls_openssl.c324 X509_STORE *store; in tls_crl_cert_reload() local
326 store = X509_STORE_new(); in tls_crl_cert_reload()
327 if (!store) { in tls_crl_cert_reload()
329 "OpenSSL: %s - failed to allocate new certificate store", in tls_crl_cert_reload()
334 if (ca_cert && X509_STORE_load_locations(store, ca_cert, NULL) != 1) { in tls_crl_cert_reload()
337 X509_STORE_free(store); in tls_crl_cert_reload()
345 X509_STORE_set_flags(store, flags); in tls_crl_cert_reload()
347 return store; in tls_crl_cert_reload()
507 static const CERT_CONTEXT * cryptoapi_find_cert(const char *name, DWORD store) in cryptoapi_find_cert() argument
513 store | CERT_STORE_OPEN_EXISTING_FLA in cryptoapi_find_cert()
660 const char *store; tls_cryptoapi_ca_cert() local
2588 X509_STORE *store; tls_connection_ca_cert() local
3560 X509_STORE *store; tls_connection_engine_ca_cert() local
4703 X509_STORE *store; ocsp_resp_cb() local
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_nir_lower_storage_image.c543 /* Color conversion goes before the store */ in lower_image_store_instr()
585 nir_intrinsic_instr *store = in lower_image_store_instr() local
588 store->src[0] = nir_src_for_ssa(&deref->dest.ssa); in lower_image_store_instr()
589 store->src[1] = nir_src_for_ssa(addr); in lower_image_store_instr()
590 store->src[2] = nir_src_for_ssa(color); in lower_image_store_instr()
591 store->num_components = image_fmtl->bpb / 32; in lower_image_store_instr()
592 nir_builder_instr_insert(b, &store->instr); in lower_image_store_instr()
/third_party/node/deps/openssl/openssl/apps/
H A Dsmime.c112 {"CAstore", OPT_CASTORE, ':', "Trusted certificates store URI"},
118 "Do not load certificates from the default certificates store"},
141 X509_STORE *store = NULL; in smime_main() local
535 if ((store = setup_verify(CAfile, noCAfile, CApath, noCApath, in smime_main()
538 X509_STORE_set_verify_cb(store, smime_cb); in smime_main()
540 X509_STORE_set1_param(store, vpm); in smime_main()
612 if (PKCS7_verify(p7, other, store, indata, out, flags)) in smime_main()
662 X509_STORE_free(store); in smime_main()
/third_party/openssl/apps/
H A Dsmime.c112 {"CAstore", OPT_CASTORE, ':', "Trusted certificates store URI"},
118 "Do not load certificates from the default certificates store"},
141 X509_STORE *store = NULL; in smime_main() local
534 if ((store = setup_verify(CAfile, noCAfile, CApath, noCApath, in smime_main()
537 X509_STORE_set_verify_cb(store, smime_cb); in smime_main()
539 X509_STORE_set1_param(store, vpm); in smime_main()
611 if (PKCS7_verify(p7, other, store, indata, out, flags)) in smime_main()
661 X509_STORE_free(store); in smime_main()
/third_party/node/deps/v8/src/heap/
H A Dcollection-barrier.cc65 collection_requested_.store(false); in ResumeThreadsAwaitingCollection()
74 collection_requested_.store(false); in CancelCollectionAndResumeThreads()

Completed in 30 milliseconds

12345678910>>...50