Home
last modified time | relevance | path

Searched refs:tx (Results 1 – 25 of 802) sorted by relevance

12345678910>>...33

/netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Dtxg.c124 tx_state_t *tx = &dp->dp_tx; in txg_init() local
126 bzero(tx, sizeof (tx_state_t)); in txg_init()
128 tx->tx_cpu = kmem_zalloc(max_ncpus * sizeof (tx_cpu_t), KM_SLEEP); in txg_init()
133 mutex_init(&tx->tx_cpu[c].tc_lock, NULL, MUTEX_DEFAULT, NULL); in txg_init()
134 mutex_init(&tx->tx_cpu[c].tc_open_lock, NULL, MUTEX_DEFAULT, in txg_init()
137 cv_init(&tx->tx_cpu[c].tc_cv[i], NULL, CV_DEFAULT, in txg_init()
139 list_create(&tx->tx_cpu[c].tc_callbacks[i], in txg_init()
145 mutex_init(&tx->tx_sync_lock, NULL, MUTEX_DEFAULT, NULL); in txg_init()
147 cv_init(&tx->tx_sync_more_cv, NULL, CV_DEFAULT, NULL); in txg_init()
148 cv_init(&tx->tx_sync_done_cv, NULL, CV_DEFAULT, NULL); in txg_init()
[all …]
H A Ddmu_tx.c43 typedef void (*dmu_tx_hold_func_t)(dmu_tx_t *tx, struct dnode *dn,
50 dmu_tx_t *tx = kmem_zalloc(sizeof (dmu_tx_t), KM_SLEEP); in dmu_tx_create_dd() local
51 tx->tx_dir = dd; in dmu_tx_create_dd()
53 tx->tx_pool = dd->dd_pool; in dmu_tx_create_dd()
54 list_create(&tx->tx_holds, sizeof (dmu_tx_hold_t), in dmu_tx_create_dd()
56 list_create(&tx->tx_callbacks, sizeof (dmu_tx_callback_t), in dmu_tx_create_dd()
58 tx->tx_start = gethrtime(); in dmu_tx_create_dd()
60 refcount_create(&tx->tx_space_written); in dmu_tx_create_dd()
61 refcount_create(&tx->tx_space_freed); in dmu_tx_create_dd()
63 return (tx); in dmu_tx_create_dd()
[all …]
H A Ddsl_destroy.c89 dsl_destroy_snapshot_check(void *arg, dmu_tx_t *tx) in dsl_destroy_snapshot_check() argument
92 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_destroy_snapshot_check()
96 if (!dmu_tx_is_syncing(tx)) in dsl_destroy_snapshot_check()
144 process_old_cb(void *arg, const blkptr_t *bp, dmu_tx_t *tx) in process_old_cb() argument
152 dsl_deadlist_insert(&poa->ds->ds_deadlist, bp, tx); in process_old_cb()
163 dsl_free_sync(poa->pio, dp, tx->tx_txg, bp); in process_old_cb()
170 dsl_dataset_t *ds_next, boolean_t after_branch_point, dmu_tx_t *tx) in process_old_deadlist() argument
185 process_old_cb, &poa, tx)); in process_old_deadlist()
191 -poa.used, -poa.comp, -poa.uncomp, tx); in process_old_deadlist()
207 dsl_dataset_remove_clones_key(dsl_dataset_t *ds, uint64_t mintxg, dmu_tx_t *tx) in dsl_dataset_remove_clones_key() argument
[all …]
H A Ddmu_object.c36 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dmu_object_alloc() argument
86 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); in dmu_object_alloc()
91 dmu_tx_add_new_object(tx, os, object); in dmu_object_alloc()
97 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dmu_object_claim() argument
102 if (object == DMU_META_DNODE_OBJECT && !dmu_tx_private_ok(tx)) in dmu_object_claim()
108 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); in dmu_object_claim()
111 dmu_tx_add_new_object(tx, os, object); in dmu_object_claim()
117 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dmu_object_reclaim() argument
130 dnode_reallocate(dn, ot, blocksize, bonustype, bonuslen, tx); in dmu_object_reclaim()
137 dmu_object_free(objset_t *os, uint64_t object, dmu_tx_t *tx) in dmu_object_free() argument
[all …]
H A Ddsl_deadlist.c147 dsl_deadlist_alloc(objset_t *os, dmu_tx_t *tx) in dsl_deadlist_alloc() argument
150 return (bpobj_alloc(os, SPA_OLD_MAXBLOCKSIZE, tx)); in dsl_deadlist_alloc()
152 sizeof (dsl_deadlist_phys_t), tx)); in dsl_deadlist_alloc()
156 dsl_deadlist_free(objset_t *os, uint64_t dlobj, dmu_tx_t *tx) in dsl_deadlist_free() argument
164 bpobj_free(os, dlobj, tx); in dsl_deadlist_free()
173 bpobj_decr_empty(os, tx); in dsl_deadlist_free()
175 bpobj_free(os, obj, tx); in dsl_deadlist_free()
178 VERIFY3U(0, ==, dmu_object_free(os, dlobj, tx)); in dsl_deadlist_free()
183 const blkptr_t *bp, dmu_tx_t *tx) in dle_enqueue() argument
187 uint64_t obj = bpobj_alloc(dl->dl_os, SPA_OLD_MAXBLOCKSIZE, tx); in dle_enqueue()
[all …]
H A Dzfs_dir.c239 zfs_unlinked_add(znode_t *zp, dmu_tx_t *tx) in zfs_unlinked_add() argument
247 zap_add_int(zfsvfs->z_os, zfsvfs->z_unlinkedobj, zp->z_id, tx)); in zfs_unlinked_add()
320 dmu_tx_t *tx; in zfs_purgedir() local
339 tx = dmu_tx_create(zfsvfs->z_os); in zfs_purgedir()
340 dmu_tx_hold_sa(tx, dzp->z_sa_hdl, B_FALSE); in zfs_purgedir()
341 dmu_tx_hold_zap(tx, dzp->z_id, FALSE, zap.za_name); in zfs_purgedir()
342 dmu_tx_hold_sa(tx, xzp->z_sa_hdl, B_FALSE); in zfs_purgedir()
343 dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL); in zfs_purgedir()
345 zfs_sa_upgrade_txholds(tx, xzp); in zfs_purgedir()
346 dmu_tx_mark_netfree(tx); in zfs_purgedir()
[all …]
H A Ddsl_pool.c446 dmu_tx_t *tx = dmu_tx_create_assigned(dp, txg); in dsl_pool_create() local
455 NULL, &dp->dp_meta_rootbp, DMU_OST_META, tx); in dsl_pool_create()
459 DMU_OT_OBJECT_DIRECTORY, DMU_OT_NONE, 0, tx); in dsl_pool_create()
466 dp->dp_root_dir_obj = dsl_dir_create_sync(dp, NULL, NULL, tx); in dsl_pool_create()
471 (void) dsl_dir_create_sync(dp, dp->dp_root_dir, MOS_DIR_NAME, tx); in dsl_pool_create()
478 FREE_DIR_NAME, tx); in dsl_pool_create()
483 obj = bpobj_alloc(dp->dp_meta_objset, SPA_OLD_MAXBLOCKSIZE, tx); in dsl_pool_create()
485 DMU_POOL_FREE_BPOBJ, sizeof (uint64_t), 1, &obj, tx) == 0); in dsl_pool_create()
491 dsl_pool_create_origin(dp, tx); in dsl_pool_create()
494 obj = dsl_dataset_create_sync_dd(dp->dp_root_dir, NULL, 0, tx); in dsl_pool_create()
[all …]
H A Dspa_history.c86 spa_history_create_obj(spa_t *spa, dmu_tx_t *tx) in spa_history_create_obj() argument
95 sizeof (spa_history_phys_t), tx); in spa_history_create_obj()
99 &spa->spa_history, tx) == 0); in spa_history_create_obj()
105 dmu_buf_will_dirty(dbp, tx); in spa_history_create_obj()
151 dmu_tx_t *tx) in spa_history_write() argument
170 dmu_write(mos, spa->spa_history, phys_eof, firstwrite, buf, tx); in spa_history_write()
176 len, (char *)buf + firstwrite, tx); in spa_history_write()
200 spa_history_log_sync(void *arg, dmu_tx_t *tx) in spa_history_log_sync() argument
203 spa_t *spa = dmu_tx_pool(tx)->dp_spa; in spa_history_log_sync()
218 spa_history_create_obj(spa, tx); in spa_history_log_sync()
[all …]
H A Ddsl_dataset.c116 dsl_dataset_block_born(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx) in dsl_dataset_block_born() argument
118 int used = bp_get_dsize_sync(tx->tx_pool->dp_spa, bp); in dsl_dataset_block_born()
125 ASSERT(dmu_tx_is_syncing(tx)); in dsl_dataset_block_born()
132 dsl_pool_mos_diduse_space(tx->tx_pool, in dsl_dataset_block_born()
138 dmu_buf_will_dirty(ds->ds_dbuf, tx); in dsl_dataset_block_born()
157 compressed, uncompressed, tx); in dsl_dataset_block_born()
163 dsl_dataset_block_kill(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx, in dsl_dataset_block_kill() argument
166 int used = bp_get_dsize_sync(tx->tx_pool->dp_spa, bp); in dsl_dataset_block_kill()
173 ASSERT(dmu_tx_is_syncing(tx)); in dsl_dataset_block_kill()
174 ASSERT(bp->blk_birth <= tx->tx_txg); in dsl_dataset_block_kill()
[all …]
H A Ddsl_scan.c201 dsl_scan_setup_check(void *arg, dmu_tx_t *tx) in dsl_scan_setup_check() argument
203 dsl_scan_t *scn = dmu_tx_pool(tx)->dp_scan; in dsl_scan_setup_check()
212 dsl_scan_setup_sync(void *arg, dmu_tx_t *tx) in dsl_scan_setup_sync() argument
214 dsl_scan_t *scn = dmu_tx_pool(tx)->dp_scan; in dsl_scan_setup_sync()
226 scn->scn_phys.scn_max_txg = tx->tx_txg; in dsl_scan_setup_sync()
271 ot ? ot : DMU_OT_SCAN_QUEUE, DMU_OT_NONE, 0, tx); in dsl_scan_setup_sync()
273 dsl_scan_sync_state(scn, tx); in dsl_scan_setup_sync()
275 spa_history_log_internal(spa, "scan setup", tx, in dsl_scan_setup_sync()
282 dsl_scan_done(dsl_scan_t *scn, boolean_t complete, dmu_tx_t *tx) in dsl_scan_done() argument
303 DMU_POOL_DIRECTORY_OBJECT, old_names[i], tx); in dsl_scan_done()
[all …]
H A Dzfeature.c297 dmu_tx_t *tx) in feature_sync() argument
304 sizeof (uint64_t), 1, &refcount, tx)); in feature_sync()
327 spa_activate_mos_feature(spa, feature->fi_guid, tx); in feature_sync()
335 feature_enable_sync(spa_t *spa, zfeature_info_t *feature, dmu_tx_t *tx) in feature_enable_sync() argument
353 spa_feature_enable(spa, feature->fi_depends[i], tx); in feature_enable_sync()
357 feature->fi_desc, tx)); in feature_enable_sync()
359 feature_sync(spa, feature, initial_refcount, tx); in feature_enable_sync()
362 uint64_t enabling_txg = dmu_tx_get_txg(tx); in feature_enable_sync()
368 DMU_POOL_FEATURE_ENABLED_TXG, tx); in feature_enable_sync()
370 spa_feature_incr(spa, SPA_FEATURE_ENABLED_TXG, tx); in feature_enable_sync()
[all …]
H A Ddsl_dir.c505 dsl_dir_init_fs_ss_count(dsl_dir_t *dd, dmu_tx_t *tx) in dsl_dir_init_fs_ss_count() argument
517 ASSERT(dmu_tx_is_syncing(tx)); in dsl_dir_init_fs_ss_count()
519 dsl_dir_zapify(dd, tx); in dsl_dir_init_fs_ss_count()
552 dsl_dir_init_fs_ss_count(chld_dd, tx); in dsl_dir_init_fs_ss_count()
583 dmu_buf_will_dirty(dd->dd_dbuf, tx); in dsl_dir_init_fs_ss_count()
585 sizeof (my_fs_cnt), 1, &my_fs_cnt, tx)); in dsl_dir_init_fs_ss_count()
587 sizeof (my_ss_cnt), 1, &my_ss_cnt, tx)); in dsl_dir_init_fs_ss_count()
591 dsl_dir_actv_fs_ss_limit_check(void *arg, dmu_tx_t *tx) in dsl_dir_actv_fs_ss_limit_check() argument
594 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_dir_actv_fs_ss_limit_check()
622 dsl_dir_actv_fs_ss_limit_sync(void *arg, dmu_tx_t *tx) in dsl_dir_actv_fs_ss_limit_sync() argument
[all …]
H A Dbpobj.c38 bpobj_alloc_empty(objset_t *os, int blocksize, dmu_tx_t *tx) in bpobj_alloc_empty() argument
47 bpobj_alloc(os, SPA_OLD_MAXBLOCKSIZE, tx); in bpobj_alloc_empty()
51 &dp->dp_empty_bpobj, tx) == 0); in bpobj_alloc_empty()
53 spa_feature_incr(spa, SPA_FEATURE_EMPTY_BPOBJ, tx); in bpobj_alloc_empty()
57 return (bpobj_alloc(os, blocksize, tx)); in bpobj_alloc_empty()
62 bpobj_decr_empty(objset_t *os, dmu_tx_t *tx) in bpobj_decr_empty() argument
66 spa_feature_decr(dmu_objset_spa(os), SPA_FEATURE_EMPTY_BPOBJ, tx); in bpobj_decr_empty()
71 DMU_POOL_EMPTY_BPOBJ, tx)); in bpobj_decr_empty()
72 VERIFY3U(0, ==, dmu_object_free(os, dp->dp_empty_bpobj, tx)); in bpobj_decr_empty()
78 bpobj_alloc(objset_t *os, int blocksize, dmu_tx_t *tx) in bpobj_alloc() argument
[all …]
H A Dzap.c74 fzap_upgrade(zap_t *zap, dmu_tx_t *tx, zap_flags_t flags) in fzap_upgrade() argument
117 dmu_buf_will_dirty(db, tx); in fzap_upgrade()
129 zap_tryupgradedir(zap_t *zap, dmu_tx_t *tx) in zap_tryupgradedir() argument
134 dmu_buf_will_dirty(zap->zap_dbuf, tx); in zap_tryupgradedir()
147 dmu_tx_t *tx) in zap_table_grow() argument
184 dmu_buf_will_dirty(db_new, tx); in zap_table_grow()
191 dmu_buf_will_dirty(db_new, tx); in zap_table_grow()
205 tbl->zt_blk << bs, tbl->zt_numblks << bs, tx); in zap_table_grow()
222 dmu_tx_t *tx) in zap_table_store() argument
241 dmu_buf_will_dirty(db, tx); in zap_table_store()
[all …]
H A Ddsl_bookmark.c115 dmu_tx_t *tx) in dsl_bookmark_create_check_impl() argument
117 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_bookmark_create_check_impl()
147 dsl_bookmark_create_check(void *arg, dmu_tx_t *tx) in dsl_bookmark_create_check() argument
150 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_bookmark_create_check()
166 nvpair_name(pair), tx); in dsl_bookmark_create_check()
180 dsl_bookmark_create_sync(void *arg, dmu_tx_t *tx) in dsl_bookmark_create_sync() argument
183 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_bookmark_create_sync()
201 DMU_OTN_ZAP_METADATA, DMU_OT_NONE, 0, tx); in dsl_bookmark_create_sync()
202 spa_feature_incr(dp->dp_spa, SPA_FEATURE_BOOKMARKS, tx); in dsl_bookmark_create_sync()
204 dsl_dataset_zapify(bmark_fs, tx); in dsl_bookmark_create_sync()
[all …]
H A Ddsl_synctask.c37 dsl_null_checkfunc(void *arg, dmu_tx_t *tx) in dsl_null_checkfunc() argument
71 dmu_tx_t *tx; in dsl_sync_task() local
82 tx = dmu_tx_create_dd(dp->dp_mos_dir); in dsl_sync_task()
83 VERIFY0(dmu_tx_assign(tx, TXG_WAIT)); in dsl_sync_task()
86 dst.dst_txg = dmu_tx_get_txg(tx); in dsl_sync_task()
96 err = dst.dst_checkfunc(arg, tx); in dsl_sync_task()
100 dmu_tx_commit(tx); in dsl_sync_task()
107 dmu_tx_commit(tx); in dsl_sync_task()
122 int blocks_modified, zfs_space_check_t space_check, dmu_tx_t *tx) in dsl_sync_task_nowait() argument
127 dst->dst_txg = dmu_tx_get_txg(tx); in dsl_sync_task_nowait()
[all …]
H A Ddsl_deleg.c156 dsl_deleg_set_sync(void *arg, dmu_tx_t *tx) in dsl_deleg_set_sync() argument
160 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_deleg_set_sync()
169 dmu_buf_will_dirty(dd->dd_dbuf, tx); in dsl_deleg_set_sync()
171 DMU_OT_DSL_PERMS, DMU_OT_NONE, 0, tx); in dsl_deleg_set_sync()
184 zapobj, whokey, tx); in dsl_deleg_set_sync()
192 perm, 8, 1, &n, tx) == 0); in dsl_deleg_set_sync()
193 spa_history_log_internal_dd(dd, "permission update", tx, in dsl_deleg_set_sync()
201 dsl_deleg_unset_sync(void *arg, dmu_tx_t *tx) in dsl_deleg_unset_sync() argument
205 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_deleg_unset_sync()
226 (void) zap_remove(mos, zapobj, whokey, tx); in dsl_deleg_unset_sync()
[all …]
H A Ddsl_userhold.c52 boolean_t temphold, dmu_tx_t *tx) in dsl_dataset_user_hold_check_one() argument
54 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_dataset_user_hold_check_one()
82 dsl_dataset_user_hold_check(void *arg, dmu_tx_t *tx) in dsl_dataset_user_hold_check() argument
85 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_dataset_user_hold_check()
90 if (!dmu_tx_is_syncing(tx)) in dsl_dataset_user_hold_check()
112 dduha->dduha_minor != 0, tx); in dsl_dataset_user_hold_check()
135 const char *htag, minor_t minor, uint64_t now, dmu_tx_t *tx) in dsl_dataset_user_hold_sync_one_impl() argument
148 dmu_buf_will_dirty(ds->ds_dbuf, tx); in dsl_dataset_user_hold_sync_one_impl()
150 zap_create(mos, DMU_OT_USERREFS, DMU_OT_NONE, 0, tx); in dsl_dataset_user_hold_sync_one_impl()
156 VERIFY0(zap_add(mos, zapobj, htag, 8, 1, &now, tx)); in dsl_dataset_user_hold_sync_one_impl()
[all …]
H A Dbptree.c62 bptree_alloc(objset_t *os, dmu_tx_t *tx) in bptree_alloc() argument
70 sizeof (bptree_phys_t), tx); in bptree_alloc()
77 dmu_buf_will_dirty(db, tx); in bptree_alloc()
90 bptree_free(objset_t *os, uint64_t obj, dmu_tx_t *tx) in bptree_free() argument
103 return (dmu_object_free(os, obj, tx)); in bptree_free()
122 uint64_t bytes, uint64_t comp, uint64_t uncomp, dmu_tx_t *tx) in bptree_add() argument
133 ASSERT(dmu_tx_is_syncing(tx)); in bptree_add()
140 dmu_write(os, obj, bt->bt_end * sizeof (bte), sizeof (bte), &bte, tx); in bptree_add()
142 dmu_buf_will_dirty(db, tx); in bptree_add()
188 void *arg, dmu_tx_t *tx) in bptree_iterate() argument
[all …]
/netbsd-src/external/bsd/kyua-cli/dist/store/
H A Dtransaction_test.cpp79 store::transaction tx = backend.start(); in do_put_result_ok_test() local
84 tx.put_result(result, 312, start_time, end_time); in do_put_result_ok_test()
85 tx.commit(); in do_put_result_ok_test()
114 store::transaction tx = backend.start(); in ATF_TEST_CASE_BODY() local
117 tx.commit(); in ATF_TEST_CASE_BODY()
134 store::transaction tx = backend.start(); in ATF_TEST_CASE_BODY() local
135 tx.put_context(context); in ATF_TEST_CASE_BODY()
140 ATF_REQUIRE_THROW(store::error, tx.commit()); in ATF_TEST_CASE_BODY()
145 store::transaction tx = backend.start(); in ATF_TEST_CASE_BODY() local
146 tx.put_context(context); in ATF_TEST_CASE_BODY()
[all …]
/netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/
H A Ddmu_tx.h127 int dmu_tx_assign(dmu_tx_t *tx, txg_how_t txg_how);
128 void dmu_tx_commit(dmu_tx_t *tx);
129 void dmu_tx_abort(dmu_tx_t *tx);
130 uint64_t dmu_tx_get_txg(dmu_tx_t *tx);
131 struct dsl_pool *dmu_tx_pool(dmu_tx_t *tx);
132 void dmu_tx_wait(dmu_tx_t *tx);
134 void dmu_tx_callback_register(dmu_tx_t *tx, dmu_tx_callback_func_t *dcb_func,
147 int dmu_tx_is_syncing(dmu_tx_t *tx);
148 int dmu_tx_private_ok(dmu_tx_t *tx);
149 void dmu_tx_add_new_object(dmu_tx_t *tx, objset_t *os, uint64_t object);
[all …]
H A Dzap.h135 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
137 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
140 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
142 uint64_t parent_obj, const char *name, dmu_tx_t *tx);
148 zap_flags_t flags, dmu_tx_t *tx);
155 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
158 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
170 int zap_destroy(objset_t *ds, uint64_t zapobj, dmu_tx_t *tx);
237 const void *val, dmu_tx_t *tx);
240 const void *val, dmu_tx_t *tx);
[all …]
H A Ddmu.h280 void (*func)(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx), void *arg);
346 int blocksize, dmu_object_type_t bonus_type, int bonus_len, dmu_tx_t *tx);
348 int blocksize, dmu_object_type_t bonus_type, int bonus_len, dmu_tx_t *tx);
368 int dmu_object_free(objset_t *os, uint64_t object, dmu_tx_t *tx);
396 int ibs, dmu_tx_t *tx);
403 dmu_tx_t *tx);
410 dmu_tx_t *tx);
415 int compressed_size, int byteorder, dmu_tx_t *tx);
653 void dmu_buf_will_dirty(dmu_buf_t *db, dmu_tx_t *tx);
682 void dmu_tx_hold_write(dmu_tx_t *tx, uint64_t object, uint64_t off, int len);
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/rc4/asm/
H A Drc4-586.pl77 $tx="ecx";
87 &add (&LB($yy),&LB($tx));
89 &mov (&DWP(0,$dat,$yy,4),$tx);
91 &add ($ty,$tx);
96 &mov ($tx,&DWP(0,$dat,$xx,4));
98 &mov ($tx,&wparam(3)); # reload [re-biased] out
115 &add (&LB($yy),&LB($tx));
122 &mov (&DWP(0,$dat,$yy,4),$tx);
125 &add (&LB($ty),&LB($tx));
127 &mov ($tx,&DWP(0,$dat,@XX[1],4));
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/rc4/asm/
H A Drc4-586.pl78 $tx="ecx";
88 &add (&LB($yy),&LB($tx));
90 &mov (&DWP(0,$dat,$yy,4),$tx);
92 &add ($ty,$tx);
97 &mov ($tx,&DWP(0,$dat,$xx,4));
99 &mov ($tx,&wparam(3)); # reload [re-biased] out
116 &add (&LB($yy),&LB($tx));
123 &mov (&DWP(0,$dat,$yy,4),$tx);
126 &add (&LB($ty),&LB($tx));
128 &mov ($tx,&DWP(0,$dat,@XX[1],4));
[all …]

12345678910>>...33