/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | Reactor.cpp | 271 store(argument.rvalue()); in Bool() 281 store(rhs); in Bool() 286 store(rhs.load()); in Bool() 291 store(rhs.load()); in Bool() 296 return store(rhs); in operator =() 301 return store(rhs.load()); in operator =() 306 return store(rhs.load()); in operator =() 336 store(argument.rvalue()); in Byte() 372 store(rhs); in Byte() 377 store(rh in Byte() [all...] |
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/ |
H A D | instr.c | 109 /* check if this node is child of one store node. in gpir_instr_insert_alu_check() 110 * complex1 won't be any of this instr's store node's child, in gpir_instr_insert_alu_check() 111 * because it has two instr latency before store can use it. in gpir_instr_insert_alu_check() 272 gpir_store_node *store = gpir_node_to_store(node); in gpir_instr_insert_store_check() local 275 if (store->component != i) in gpir_instr_insert_store_check() 281 /* store temp has only one address reg for two store unit */ in gpir_instr_insert_store_check() 284 instr->store_index[!i] != store->index) in gpir_instr_insert_store_check() 290 instr->store_index[i] != store->index) in gpir_instr_insert_store_check() 296 instr->store_index[i] != store in gpir_instr_insert_store_check() 372 gpir_store_node *store = gpir_node_to_store(node); gpir_instr_remove_store() local [all...] |
H A D | scheduler.c | 52 * constrained register load/store units, there is an explicit bypass 529 /* This node may have a store as a successor, in which case we have to in _try_place_node() 622 gpir_store_node *store = gpir_node_to_store(node); in schedule_try_place_node() local 624 ~(1ull << (4 * store->index + store->component)); in schedule_try_place_node() 625 if (store->child->sched.physreg_store == store) in schedule_try_place_node() 626 store->child->sched.physreg_store = NULL; in schedule_try_place_node() 897 gpir_store_node *store = gpir_node_to_store(instr->slots[slot]); in get_killed_regs() local 898 if (store in get_killed_regs() 913 spill_node(sched_ctx *ctx, gpir_node *node, gpir_store_node *store) spill_node() argument 1009 gpir_store_node *store = node->sched.physreg_store; try_spill_node() local 1033 gpir_store_node *store = gpir_node_create(ctx->block, gpir_op_store_reg); try_spill_node() local [all...] |
H A D | nir.c | 58 * register and store to it. in register_node_ssa() 79 gpir_store_node *store = gpir_node_create(block, gpir_op_store_reg); in register_node_ssa() local 80 store->child = node; in register_node_ssa() 81 store->reg = gpir_create_reg(block->comp); in register_node_ssa() 82 gpir_node_add_dep(&store->node, node, GPIR_DEP_INPUT); in register_node_ssa() 83 list_addtail(&store->node.list, &block->node_list); in register_node_ssa() 84 block->comp->reg_for_ssa[ssa->index] = store->reg; in register_node_ssa() 91 gpir_store_node *store = gpir_node_create(block, gpir_op_store_reg); in register_node_reg() local 95 store->child = node; in register_node_reg() 96 store in register_node_reg() 276 gpir_store_node *store = gpir_node_create(block, gpir_op_store_varying); gpir_emit_intrinsic() local [all...] |
/test/xts/acts/distributeddatamgr/relationalStoretest/RdbJstest/hap/entry/src/ohosTest/js/test/ |
H A D | RdbstoreRdbstoreJsunit.test.js | 55 * @tc.name rdb store getRdbStore test
57 * @tc.desc rdb store getRdbStore test
61 await dataRdb.getRdbStore(STORE_CONFIG, 1).then(async (store) => {
63 console.info(TAG + "getRdbStore done: " + store);
75 * @tc.name rdb store getRdbStore and create table
77 * @tc.desc rdb store getRdbStore and create table
82 storePromise.then(async (store) => {
84 console.info(TAG + "getRdbStore done: " + store);
85 await store.executeSql(CREATE_TABLE_TEST);
101 * @tc.desc rdb store getRdbStor [all...] |
/third_party/node/benchmark/async_hooks/ |
H A D | async-local-storage-run.js | 9 async function run(store, n) { 11 await new Promise((resolve) => store.run(i, resolve)); 16 const store = new AsyncLocalStorage(); 18 run(store, n).then(() => {
|
H A D | async-local-storage-getstore-nested-resources.js | 22 function runBenchmark(store, n) { 24 store.getStore(); 40 const store = new AsyncLocalStorage(); 43 runBenchmark(store, n);
|
H A D | async-resource-vs-destroy.js | 115 const store = asyncLocalStorage.getStore(); 116 if (store === undefined) { 119 return store.state; 123 const store = asyncLocalStorage.getStore(); 124 if (store === undefined) { 127 store.state = state;
|
/applications/standard/contacts_data/ability/common/utils/src/ |
H A D | merge_utils.cpp | 32 std::shared_ptr<OHOS::NativeRdb::RdbStore> store, int rawId, int typeId) in QueryRawContactByType() 50 auto rawIdsSet = store->QuerySql(sql, selectionArgs); in QueryRawContactByType() 60 return QueryDataExecute(store, rawIds, typeId); in QueryRawContactByType() 64 std::shared_ptr<OHOS::NativeRdb::RdbStore> store, std::set<int> rawIds, int typeId) in QueryDataExecute() 89 auto resultSet = store->QuerySql(query, selectionArgs); in QueryDataExecute() 104 int rawId, std::set<std::string> data, std::shared_ptr<OHOS::NativeRdb::RdbStore> store) in QueryByDataName() 123 auto resultSet = store->QuerySql(query); in QueryByDataName() 152 std::shared_ptr<OHOS::NativeRdb::RdbStore> store, int rawId, OHOS::NativeRdb::ValuesBucket &values) in AddHasJudgeForRawId() 168 auto resultSet = store->QuerySql(sql); in AddHasJudgeForRawId() 196 void MergeUtils::GetRawIdsByRawId(std::shared_ptr<OHOS::NativeRdb::RdbStore> store, in argument 31 QueryRawContactByType( std::shared_ptr<OHOS::NativeRdb::RdbStore> store, int rawId, int typeId) QueryRawContactByType() argument 63 QueryDataExecute( std::shared_ptr<OHOS::NativeRdb::RdbStore> store, std::set<int> rawIds, int typeId) QueryDataExecute() argument 103 QueryByDataName( int rawId, std::set<std::string> data, std::shared_ptr<OHOS::NativeRdb::RdbStore> store) QueryByDataName() argument 151 AddHasJudgeForRawId( std::shared_ptr<OHOS::NativeRdb::RdbStore> store, int rawId, OHOS::NativeRdb::ValuesBucket &values) AddHasJudgeForRawId() argument [all...] |
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | ssa.c | 97 struct instruction *store = NULL; in rewrite_local_var() local 110 if (!store) in rewrite_local_var() 112 else if (same_memop(store, insn)) in rewrite_local_var() 113 replace_with_pseudo(insn, store->target); in rewrite_local_var() 118 store = insn; in rewrite_local_var() 124 kill_store(store); in rewrite_local_var() 362 struct instruction *store; in remove_dead_stores() local 364 FOR_EACH_PTR(stores, store) { in remove_dead_stores() 365 struct symbol *var = store->addr->sym; in remove_dead_stores() 368 kill_store(store); in remove_dead_stores() [all...] |
/test/xts/acts/distributeddatamgr/relationalStoretest/relationalStoreNdktestHvigor/entry/src/main/cpp/ |
H A D | napi_init.cpp | 229 auto store = OH_Rdb_CreateOrOpen(config, &errCode);
in OH_Rdb_SetDbType_SQLITE_0200() local 232 errCode = OH_Rdb_ExecuteByTrxId(store, 0, createTableSql);
in OH_Rdb_SetDbType_SQLITE_0200() 235 errCode = OH_Rdb_BeginTransWithTrxId(store, &trxId);
in OH_Rdb_SetDbType_SQLITE_0200() 240 errCode = OH_Rdb_ExecuteByTrxId(store, trxId, insertSql);
in OH_Rdb_SetDbType_SQLITE_0200() 242 errCode = OH_Rdb_CommitByTrxId(store, trxId);
in OH_Rdb_SetDbType_SQLITE_0200() 246 OH_Cursor *cursor = OH_Rdb_ExecuteQuery(store, querySql);
in OH_Rdb_SetDbType_SQLITE_0200() 254 errCode = OH_Rdb_ExecuteByTrxId(store, 0, dropSql);
in OH_Rdb_SetDbType_SQLITE_0200() 257 errCode =OH_Rdb_Execute(store, dropTableSql);
in OH_Rdb_SetDbType_SQLITE_0200() 258 errCode = OH_Rdb_CloseStore(store);
in OH_Rdb_SetDbType_SQLITE_0200() 283 auto store in OH_Rdb_SetDbType_SQLITE_0300() local 333 auto store = OH_Rdb_CreateOrOpen(config, &errCode); OH_Rdb_SetDbType_SQLITE_Id_0100() local 382 auto store = OH_Rdb_CreateOrOpen(config, &errCode); OH_Rdb_SetDbType_SQLITE_Id_0200() local 1702 auto store = OH_Rdb_CreateOrOpen(NULL, &errcode); OH_Rdb_CreateOrOpen_Param_0100() local 1732 auto store = OH_Rdb_CreateOrOpen(config, &errCode); OH_Rdb_ExecuteByTrxId_Param_0100() local 1761 auto store = OH_Rdb_CreateOrOpen(config, &errCode); OH_Rdb_ExecuteByTrxId_Param_0200() local 1807 auto store = OH_Rdb_CreateOrOpen(config, &errCode); OH_Rdb_ExecuteByTrxId_Param_0300() local 1837 auto store = OH_Rdb_CreateOrOpen(config, &errCode); OH_Rdb_BeginTransWithTrxId_Param_0100() local 1864 auto store = OH_Rdb_CreateOrOpen(config, &errCode); OH_Rdb_BeginTransWithTrxId_Param_0200() local 1891 auto store = OH_Rdb_CreateOrOpen(config, &errCode); OH_Rdb_CommitByTrxId_Param_0100() local 1918 auto store = OH_Rdb_CreateOrOpen(config, &errCode); OH_Rdb_CommitByTrxId_Param_0200() local 1952 auto store = OH_Rdb_CreateOrOpen(config, &errCode); OH_Rdb_RollBackByTrxId_Param_0100() local 1977 auto store = OH_Rdb_CreateOrOpen(config, &errCode); OH_Rdb_RollBackByTrxId_Param_0200() local [all...] |
/third_party/node/deps/v8/src/wasm/ |
H A D | c-api.cc | 481 auto store = make_own(new (std::nothrow) StoreImpl()); variable 482 if (!store) return own<Store>(); 485 store->create_params_.array_buffer_allocator = 488 store->create_params_.counter_lookup_callback = EngineImpl::LookupCounter; 489 store->create_params_.create_histogram_callback = EngineImpl::CreateHistogram; 490 store->create_params_.add_histogram_sample_callback = 493 v8::Isolate* isolate = v8::Isolate::New(store->create_params_); 495 store->isolate_ = isolate; 496 isolate->SetData(0, store.get()); 509 store 902 make(StoreImpl* store, i::Handle<JSType> obj) make() argument 914 StoreImpl* store() const { return StoreImpl::get(isolate()); } store() function in wasm::RefImpl 1017 auto store = impl(store_abs); global() variable 1048 CreateFrameFromInternal(i::Handle<i::FixedArray> frames, int index, i::Isolate* isolate, StoreImpl* store) CreateFrameFromInternal() argument 1103 StoreImpl* store = impl(store_abs); global() variable 1132 StoreImpl* store = impl(store_abs); global() variable 1217 StoreImpl* store = impl(store_abs); global() variable 1344 Store* store; global() member 1438 auto store = impl(store_abs); global() variable 1512 V8RefValueToWasm(StoreImpl* store, i::Handle<i::Object> value) V8RefValueToWasm() argument 1540 PushArgs(const i::wasm::FunctionSig* sig, const Val args[], i::wasm::CWasmArgumentsPacker* packer, StoreImpl* store) PushArgs() argument 1575 PopArgs(const i::wasm::FunctionSig* sig, Val results[], i::wasm::CWasmArgumentsPacker* packer, StoreImpl* store) PopArgs() argument 1647 auto store = func->store(); global() variable 1715 StoreImpl* store = impl(self->store); v8_callback() local 1815 StoreImpl* store = impl(store_abs); global() variable 1859 StoreImpl* store = impl(this)->store(); global() variable 1916 StoreImpl* store = impl(store_abs); global() variable 2048 StoreImpl* store = impl(store_abs); global() variable 2118 StoreImpl* store = impl(store_abs); make() local 2180 GetInstance(StoreImpl* store, i::Handle<i::WasmInstanceObject> instance) GetInstance() argument 2189 StoreImpl* store = instance->store(); global() variable 2948 wasm_trap_new(wasm_store_t* store, const wasm_message_t* message) wasm_trap_new() argument 2969 wasm_foreign_new(wasm_store_t* store) wasm_foreign_new() argument 2977 wasm_module_validate(wasm_store_t* store, const wasm_byte_vec_t* binary) wasm_module_validate() argument 2982 wasm_module_new(wasm_store_t* store, const wasm_byte_vec_t* binary) wasm_module_new() argument 3002 wasm_module_deserialize(wasm_store_t* store, const wasm_byte_vec_t* binary) wasm_module_deserialize() argument 3012 wasm_module_obtain(wasm_store_t* store, const wasm_shared_module_t* shared) wasm_module_obtain() argument 3050 wasm_func_new(wasm_store_t* store, const wasm_functype_t* type, wasm_func_callback_t callback) wasm_func_new() argument 3056 wasm_func_new_with_env(wasm_store_t* store, const wasm_functype_t* type, wasm_func_callback_with_env_t callback, void* env, void (*finalizer)(void*)) wasm_func_new_with_env() argument 3087 wasm_global_new(wasm_store_t* store, const wasm_globaltype_t* type, const wasm_val_t* val) wasm_global_new() argument 3111 wasm_table_new(wasm_store_t* store, const wasm_tabletype_t* type, wasm_ref_t* ref) wasm_table_new() argument 3142 wasm_memory_new(wasm_store_t* store, const wasm_memorytype_t* type) wasm_memory_new() argument 3235 wasm_instance_new(wasm_store_t* store, const wasm_module_t* module, const wasm_extern_t* const imports[], wasm_trap_t** trap) wasm_instance_new() argument [all...] |
/third_party/node/test/parallel/ |
H A D | test-timers-clearImmediate-als.js | 14 const store = asyncLocalStorage.getStore(); 15 store.set('immediate', immediate); 20 const store = asyncLocalStorage.getStore(); 21 const immediate = store.get('immediate');
|
/third_party/openssl/test/ |
H A D | x509_dup_cert_test.c | 21 X509_STORE *store = NULL; in test_509_dup_cert() local 25 if (TEST_ptr(store = X509_STORE_new()) in test_509_dup_cert() 26 && TEST_ptr(lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file())) in test_509_dup_cert() 32 X509_STORE_free(store); in test_509_dup_cert()
|
/kernel/linux/linux-6.6/arch/arm/lib/ |
H A D | bitops.h | 31 .macro __testop, name, instr, store, barrier variable 61 .macro testop, name, instr, store 62 __testop \name, \instr, \store, smp_dmb variable 65 .macro sync_testop, name, instr, store 66 __testop \name, \instr, \store, __smp_dmb variable 91 * @store: store instruction 93 * Note: we can trivially conditionalise the store instruction 96 .macro testop, name, instr, store 108 \store r [all...] |
/third_party/node/deps/v8/third_party/wasm-api/example/ |
H A D | threads.cc | 27 // Create store. in run() 29 auto store = store_.get(); in run() local 32 auto module = wasm::Module::obtain(store, shared); in run() 48 auto func = wasm::Func::make(store, func_type.get(), callback, mutex); in run() 53 store, global_type.get(), wasm::Val::i32(i)); in run() 57 auto instance = wasm::Instance::make(store, module.get(), imports); in run() 99 auto store = wasm::Store::make(engine.get()); in main() local 100 auto module = wasm::Module::make(store.get(), binary); in main()
|
H A D | trap.cc | 14 auto store = reinterpret_cast<wasm::Store*>(env); variable 16 return wasm::Trap::make(store, message); 33 auto store = store_.get(); in run() local 51 auto module = wasm::Module::make(store, binary); in run() 64 wasm::Func::make(store, fail_type.get(), fail_callback, store); in run() 69 auto instance = wasm::Instance::make(store, module.get(), imports); in run()
|
H A D | hello.c | 24 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 D | trap.c | 37 wasm_store_t* store = wasm_store_new(engine); in main() local 59 own wasm_module_t* module = wasm_module_new(store, &binary); in main() 72 wasm_func_new_with_env(store, fail_type, fail_callback, store, NULL); in main() 80 wasm_instance_new(store, module, imports, NULL); in main() 149 wasm_store_delete(store); in main()
|
H A D | callback.c | 67 wasm_store_t* store = wasm_store_new(engine); in main() local 89 own wasm_module_t* module = wasm_module_new(store, &binary); in main() 100 own wasm_func_t* print_func = wasm_func_new(store, print_type, print_callback); in main() 104 own wasm_func_t* closure_func = wasm_func_new_with_env(store, closure_type, closure_callback, &i, NULL); in main() 115 wasm_instance_new(store, module, imports, NULL); in main() 162 wasm_store_delete(store); in main()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | x509_vfy.rs | 29 pub fn X509_STORE_free(store: *mut X509_STORE); in X509_STORE_free() 36 store: *mut X509_STORE, in X509_STORE_CTX_init() 42 pub fn X509_STORE_add_cert(store: *mut X509_STORE, x: *mut X509) -> c_int; in X509_STORE_add_cert() 45 store: *mut X509_STORE, in X509_STORE_add_lookup() 49 pub fn X509_STORE_set_default_paths(store: *mut X509_STORE) -> c_int; in X509_STORE_set_default_paths() 50 pub fn X509_STORE_set_flags(store: *mut X509_STORE, flags: c_ulong) -> c_int; in X509_STORE_set_flags() 58 pub fn X509_STORE_set1_param(store: *mut X509_STORE, pm: #[const_ptr_if(ossl300)] X509_VERIFY_PARAM) -> c_int; in X509_STORE_set1_param()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant_lib/cert_mgr_deps/src/ |
H A D | cert_manager_api.c | 23 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/mesa/main/ |
H A D | texstore.c | 34 * device driver functions which actually copy/convert/store the user's 1048 /* we'll store 3D images as a series of slices */ in store_texsubimage() 1267 * \param store returns the compressed_pixelstore parameters 1274 struct compressed_pixelstore *store) in _mesa_compute_compressed_pixelstore() 1280 store->SkipBytes = 0; in _mesa_compute_compressed_pixelstore() 1281 store->TotalBytesPerRow = store->CopyBytesPerRow = in _mesa_compute_compressed_pixelstore() 1283 store->TotalRowsPerSlice = store->CopyRowsPerSlice = in _mesa_compute_compressed_pixelstore() 1285 store in _mesa_compute_compressed_pixelstore() 1270 _mesa_compute_compressed_pixelstore(GLuint dims, mesa_format texFormat, GLsizei width, GLsizei height, GLsizei depth, const struct gl_pixelstore_attrib *packing, struct compressed_pixelstore *store) _mesa_compute_compressed_pixelstore() argument 1336 struct compressed_pixelstore store; _mesa_store_compressed_texsubimage() local [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/internal/ |
H A D | sequence_lock.h | 65 lock_.store(0, std::memory_order_release); in MarkInitialized() 106 lock_.store(orig_seq + 1, std::memory_order_relaxed); in Write() 117 lock_.store(orig_seq + 2, std::memory_order_release); in Write() 137 lock_.store(val + 2, std::memory_order_relaxed); in IncrementModificationCount() 167 dst->store(word, std::memory_order_relaxed); in RelaxedCopyToAtomic() 175 dst->store(word, std::memory_order_relaxed); in RelaxedCopyToAtomic()
|
/test/xts/acts/multimedia/media/media_cpp_standard/audioDecEncNdk/src/ |
H A D | ADecEncNdkSample.cpp | 185 isDecRunning_.store(true); in StartDec() 205 acodecSignal_->isFlushing_.store(true); in ResetDecParam() 218 acodecSignal_->isFlushing_.store(false); in ResetDecParam() 219 isDecRunning_.store(true); in ResetDecParam() 228 acodecSignal_->isFlushing_.store(true); in ResetEncParam() 241 acodecSignal_->isFlushing_.store(false); in ResetEncParam() 242 isEncRunning_.store(true); in ResetEncParam() 250 acodecSignal_->isFlushing_.store(true); in StopDec() 264 acodecSignal_->isFlushing_.store(false); in StopDec() 276 acodecSignal_->isFlushing_.store(tru in FlushDec() [all...] |