Home
last modified time | relevance | path

Searched refs:dat (Results 1 - 25 of 418) sorted by relevance

12345678910>>...17

/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dciphercommon_hw.c16 int ossl_cipher_hw_generic_cbc(PROV_CIPHER_CTX *dat, unsigned char *out, in ossl_cipher_hw_generic_cbc() argument
19 if (dat->stream.cbc) in ossl_cipher_hw_generic_cbc()
20 (*dat->stream.cbc) (in, out, len, dat->ks, dat->iv, dat->enc); in ossl_cipher_hw_generic_cbc()
21 else if (dat->enc) in ossl_cipher_hw_generic_cbc()
22 CRYPTO_cbc128_encrypt(in, out, len, dat->ks, dat->iv, dat in ossl_cipher_hw_generic_cbc()
29 ossl_cipher_hw_generic_ecb(PROV_CIPHER_CTX *dat, unsigned char *out, const unsigned char *in, size_t len) ossl_cipher_hw_generic_ecb() argument
48 ossl_cipher_hw_generic_ofb128(PROV_CIPHER_CTX *dat, unsigned char *out, const unsigned char *in, size_t len) ossl_cipher_hw_generic_ofb128() argument
59 ossl_cipher_hw_generic_cfb128(PROV_CIPHER_CTX *dat, unsigned char *out, const unsigned char *in, size_t len) ossl_cipher_hw_generic_cfb128() argument
71 ossl_cipher_hw_generic_cfb8(PROV_CIPHER_CTX *dat, unsigned char *out, const unsigned char *in, size_t len) ossl_cipher_hw_generic_cfb8() argument
83 ossl_cipher_hw_generic_cfb1(PROV_CIPHER_CTX *dat, unsigned char *out, const unsigned char *in, size_t len) ossl_cipher_hw_generic_cfb1() argument
111 ossl_cipher_hw_generic_ctr(PROV_CIPHER_CTX *dat, unsigned char *out, const unsigned char *in, size_t len) ossl_cipher_hw_generic_ctr() argument
[all...]
H A Dcipher_aes_hw.c19 static int cipher_hw_aes_initkey(PROV_CIPHER_CTX *dat, in cipher_hw_aes_initkey() argument
23 PROV_AES_CTX *adat = (PROV_AES_CTX *)dat; in cipher_hw_aes_initkey()
26 dat->ks = ks; in cipher_hw_aes_initkey()
28 if ((dat->mode == EVP_CIPH_ECB_MODE || dat->mode == EVP_CIPH_CBC_MODE) in cipher_hw_aes_initkey()
29 && !dat->enc) { in cipher_hw_aes_initkey()
33 dat->block = (block128_f)HWAES_decrypt; in cipher_hw_aes_initkey()
34 dat->stream.cbc = NULL; in cipher_hw_aes_initkey()
36 if (dat->mode == EVP_CIPH_CBC_MODE) in cipher_hw_aes_initkey()
37 dat in cipher_hw_aes_initkey()
[all...]
H A Dcipher_camellia_hw.c20 static int cipher_hw_camellia_initkey(PROV_CIPHER_CTX *dat, in cipher_hw_camellia_initkey() argument
23 int ret, mode = dat->mode; in cipher_hw_camellia_initkey()
24 PROV_CAMELLIA_CTX *adat = (PROV_CAMELLIA_CTX *)dat; in cipher_hw_camellia_initkey()
27 dat->ks = ks; in cipher_hw_camellia_initkey()
33 if (dat->enc || (mode != EVP_CIPH_ECB_MODE && mode != EVP_CIPH_CBC_MODE)) { in cipher_hw_camellia_initkey()
34 dat->block = (block128_f) Camellia_encrypt; in cipher_hw_camellia_initkey()
35 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in cipher_hw_camellia_initkey()
38 dat->block = (block128_f) Camellia_decrypt; in cipher_hw_camellia_initkey()
39 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in cipher_hw_camellia_initkey()
/third_party/openssl/providers/implementations/ciphers/
H A Dciphercommon_hw.c16 int ossl_cipher_hw_generic_cbc(PROV_CIPHER_CTX *dat, unsigned char *out, in ossl_cipher_hw_generic_cbc() argument
19 if (dat->stream.cbc) in ossl_cipher_hw_generic_cbc()
20 (*dat->stream.cbc) (in, out, len, dat->ks, dat->iv, dat->enc); in ossl_cipher_hw_generic_cbc()
21 else if (dat->enc) in ossl_cipher_hw_generic_cbc()
22 CRYPTO_cbc128_encrypt(in, out, len, dat->ks, dat->iv, dat in ossl_cipher_hw_generic_cbc()
29 ossl_cipher_hw_generic_ecb(PROV_CIPHER_CTX *dat, unsigned char *out, const unsigned char *in, size_t len) ossl_cipher_hw_generic_ecb() argument
48 ossl_cipher_hw_generic_ofb128(PROV_CIPHER_CTX *dat, unsigned char *out, const unsigned char *in, size_t len) ossl_cipher_hw_generic_ofb128() argument
59 ossl_cipher_hw_generic_cfb128(PROV_CIPHER_CTX *dat, unsigned char *out, const unsigned char *in, size_t len) ossl_cipher_hw_generic_cfb128() argument
71 ossl_cipher_hw_generic_cfb8(PROV_CIPHER_CTX *dat, unsigned char *out, const unsigned char *in, size_t len) ossl_cipher_hw_generic_cfb8() argument
83 ossl_cipher_hw_generic_cfb1(PROV_CIPHER_CTX *dat, unsigned char *out, const unsigned char *in, size_t len) ossl_cipher_hw_generic_cfb1() argument
111 ossl_cipher_hw_generic_ctr(PROV_CIPHER_CTX *dat, unsigned char *out, const unsigned char *in, size_t len) ossl_cipher_hw_generic_ctr() argument
[all...]
H A Dcipher_aes_hw.c19 static int cipher_hw_aes_initkey(PROV_CIPHER_CTX *dat, in cipher_hw_aes_initkey() argument
23 PROV_AES_CTX *adat = (PROV_AES_CTX *)dat; in cipher_hw_aes_initkey()
26 dat->ks = ks; in cipher_hw_aes_initkey()
28 if ((dat->mode == EVP_CIPH_ECB_MODE || dat->mode == EVP_CIPH_CBC_MODE) in cipher_hw_aes_initkey()
29 && !dat->enc) { in cipher_hw_aes_initkey()
33 dat->block = (block128_f)HWAES_decrypt; in cipher_hw_aes_initkey()
34 dat->stream.cbc = NULL; in cipher_hw_aes_initkey()
36 if (dat->mode == EVP_CIPH_CBC_MODE) in cipher_hw_aes_initkey()
37 dat in cipher_hw_aes_initkey()
[all...]
H A Dcipher_camellia_hw.c20 static int cipher_hw_camellia_initkey(PROV_CIPHER_CTX *dat, in cipher_hw_camellia_initkey() argument
23 int ret, mode = dat->mode; in cipher_hw_camellia_initkey()
24 PROV_CAMELLIA_CTX *adat = (PROV_CAMELLIA_CTX *)dat; in cipher_hw_camellia_initkey()
27 dat->ks = ks; in cipher_hw_camellia_initkey()
33 if (dat->enc || (mode != EVP_CIPH_ECB_MODE && mode != EVP_CIPH_CBC_MODE)) { in cipher_hw_camellia_initkey()
34 dat->block = (block128_f) Camellia_encrypt; in cipher_hw_camellia_initkey()
35 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in cipher_hw_camellia_initkey()
38 dat->block = (block128_f) Camellia_decrypt; in cipher_hw_camellia_initkey()
39 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in cipher_hw_camellia_initkey()
/kernel/linux/linux-6.6/fs/nilfs2/
H A Ddat.c17 #include "dat.h"
35 static inline struct nilfs_dat_info *NILFS_DAT_I(struct inode *dat) in NILFS_DAT_I() argument
37 return (struct nilfs_dat_info *)NILFS_MDT(dat); in NILFS_DAT_I()
40 static int nilfs_dat_prepare_entry(struct inode *dat, in nilfs_dat_prepare_entry() argument
45 ret = nilfs_palloc_get_entry_block(dat, req->pr_entry_nr, in nilfs_dat_prepare_entry()
48 nilfs_err(dat->i_sb, in nilfs_dat_prepare_entry()
60 static void nilfs_dat_commit_entry(struct inode *dat, in nilfs_dat_commit_entry() argument
64 nilfs_mdt_mark_dirty(dat); in nilfs_dat_commit_entry()
68 static void nilfs_dat_abort_entry(struct inode *dat, in nilfs_dat_abort_entry() argument
74 int nilfs_dat_prepare_alloc(struct inode *dat, struc argument
89 nilfs_dat_commit_alloc(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_commit_alloc() argument
106 nilfs_dat_abort_alloc(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_abort_alloc() argument
112 nilfs_dat_commit_free(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_commit_free() argument
137 nilfs_dat_prepare_start(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_prepare_start() argument
142 nilfs_dat_commit_start(struct inode *dat, struct nilfs_palloc_req *req, sector_t blocknr) nilfs_dat_commit_start() argument
158 nilfs_dat_prepare_end(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_prepare_end() argument
197 nilfs_dat_commit_end(struct inode *dat, struct nilfs_palloc_req *req, int dead) nilfs_dat_commit_end() argument
223 nilfs_dat_abort_end(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_abort_end() argument
242 nilfs_dat_prepare_update(struct inode *dat, struct nilfs_palloc_req *oldreq, struct nilfs_palloc_req *newreq) nilfs_dat_prepare_update() argument
257 nilfs_dat_commit_update(struct inode *dat, struct nilfs_palloc_req *oldreq, struct nilfs_palloc_req *newreq, int dead) nilfs_dat_commit_update() argument
265 nilfs_dat_abort_update(struct inode *dat, struct nilfs_palloc_req *oldreq, struct nilfs_palloc_req *newreq) nilfs_dat_abort_update() argument
287 nilfs_dat_mark_dirty(struct inode *dat, __u64 vblocknr) nilfs_dat_mark_dirty() argument
317 nilfs_dat_freev(struct inode *dat, __u64 *vblocknrs, size_t nitems) nilfs_dat_freev() argument
338 nilfs_dat_move(struct inode *dat, __u64 vblocknr, sector_t blocknr) nilfs_dat_move() argument
408 nilfs_dat_translate(struct inode *dat, __u64 vblocknr, sector_t *blocknrp) nilfs_dat_translate() argument
444 nilfs_dat_get_vinfo(struct inode *dat, void *buf, unsigned int visz, size_t nvi) nilfs_dat_get_vinfo() argument
494 struct inode *dat; nilfs_dat_read() local
[all...]
H A Dbmap.h18 #include "dat.h"
180 struct inode *dat) in nilfs_bmap_prepare_alloc_ptr()
182 if (dat) in nilfs_bmap_prepare_alloc_ptr()
183 return nilfs_dat_prepare_alloc(dat, &req->bpr_req); in nilfs_bmap_prepare_alloc_ptr()
191 struct inode *dat) in nilfs_bmap_commit_alloc_ptr()
193 if (dat) in nilfs_bmap_commit_alloc_ptr()
194 nilfs_dat_commit_alloc(dat, &req->bpr_req); in nilfs_bmap_commit_alloc_ptr()
199 struct inode *dat) in nilfs_bmap_abort_alloc_ptr()
201 if (dat) in nilfs_bmap_abort_alloc_ptr()
202 nilfs_dat_abort_alloc(dat, in nilfs_bmap_abort_alloc_ptr()
178 nilfs_bmap_prepare_alloc_ptr(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req, struct inode *dat) nilfs_bmap_prepare_alloc_ptr() argument
189 nilfs_bmap_commit_alloc_ptr(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req, struct inode *dat) nilfs_bmap_commit_alloc_ptr() argument
197 nilfs_bmap_abort_alloc_ptr(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req, struct inode *dat) nilfs_bmap_abort_alloc_ptr() argument
207 nilfs_bmap_prepare_end_ptr(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req, struct inode *dat) nilfs_bmap_prepare_end_ptr() argument
214 nilfs_bmap_commit_end_ptr(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req, struct inode *dat) nilfs_bmap_commit_end_ptr() argument
223 nilfs_bmap_abort_end_ptr(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req, struct inode *dat) nilfs_bmap_abort_end_ptr() argument
[all...]
H A Ddirect.c15 #include "dat.h"
54 struct inode *dat = NULL; in nilfs_direct_lookup_contig() local
66 dat = nilfs_bmap_get_dat(direct); in nilfs_direct_lookup_contig()
67 ret = nilfs_dat_translate(dat, ptr, &blocknr); in nilfs_direct_lookup_contig()
79 if (dat) { in nilfs_direct_lookup_contig()
80 ret = nilfs_dat_translate(dat, ptr2, &blocknr); in nilfs_direct_lookup_contig()
109 struct inode *dat = NULL; in nilfs_direct_insert() local
120 dat = nilfs_bmap_get_dat(bmap); in nilfs_direct_insert()
122 ret = nilfs_bmap_prepare_alloc_ptr(bmap, &req, dat); in nilfs_direct_insert()
128 nilfs_bmap_commit_alloc_ptr(bmap, &req, dat); in nilfs_direct_insert()
145 struct inode *dat; nilfs_direct_delete() local
260 struct inode *dat; nilfs_direct_propagate() local
293 struct inode *dat = nilfs_bmap_get_dat(direct); nilfs_direct_assign_v() local
[all...]
/kernel/linux/linux-5.10/fs/nilfs2/
H A Ddat.c3 * dat.c - NILFS disk address translation.
17 #include "dat.h"
35 static inline struct nilfs_dat_info *NILFS_DAT_I(struct inode *dat) in NILFS_DAT_I() argument
37 return (struct nilfs_dat_info *)NILFS_MDT(dat); in NILFS_DAT_I()
40 static int nilfs_dat_prepare_entry(struct inode *dat, in nilfs_dat_prepare_entry() argument
45 ret = nilfs_palloc_get_entry_block(dat, req->pr_entry_nr, in nilfs_dat_prepare_entry()
48 nilfs_err(dat->i_sb, in nilfs_dat_prepare_entry()
60 static void nilfs_dat_commit_entry(struct inode *dat, in nilfs_dat_commit_entry() argument
64 nilfs_mdt_mark_dirty(dat); in nilfs_dat_commit_entry()
68 static void nilfs_dat_abort_entry(struct inode *dat, in nilfs_dat_abort_entry() argument
74 nilfs_dat_prepare_alloc(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_prepare_alloc() argument
89 nilfs_dat_commit_alloc(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_commit_alloc() argument
106 nilfs_dat_abort_alloc(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_abort_alloc() argument
112 nilfs_dat_commit_free(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_commit_free() argument
137 nilfs_dat_prepare_start(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_prepare_start() argument
142 nilfs_dat_commit_start(struct inode *dat, struct nilfs_palloc_req *req, sector_t blocknr) nilfs_dat_commit_start() argument
158 nilfs_dat_prepare_end(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_prepare_end() argument
186 nilfs_dat_commit_end(struct inode *dat, struct nilfs_palloc_req *req, int dead) nilfs_dat_commit_end() argument
212 nilfs_dat_abort_end(struct inode *dat, struct nilfs_palloc_req *req) nilfs_dat_abort_end() argument
231 nilfs_dat_prepare_update(struct inode *dat, struct nilfs_palloc_req *oldreq, struct nilfs_palloc_req *newreq) nilfs_dat_prepare_update() argument
246 nilfs_dat_commit_update(struct inode *dat, struct nilfs_palloc_req *oldreq, struct nilfs_palloc_req *newreq, int dead) nilfs_dat_commit_update() argument
254 nilfs_dat_abort_update(struct inode *dat, struct nilfs_palloc_req *oldreq, struct nilfs_palloc_req *newreq) nilfs_dat_abort_update() argument
276 nilfs_dat_mark_dirty(struct inode *dat, __u64 vblocknr) nilfs_dat_mark_dirty() argument
306 nilfs_dat_freev(struct inode *dat, __u64 *vblocknrs, size_t nitems) nilfs_dat_freev() argument
327 nilfs_dat_move(struct inode *dat, __u64 vblocknr, sector_t blocknr) nilfs_dat_move() argument
397 nilfs_dat_translate(struct inode *dat, __u64 vblocknr, sector_t *blocknrp) nilfs_dat_translate() argument
433 nilfs_dat_get_vinfo(struct inode *dat, void *buf, unsigned int visz, size_t nvi) nilfs_dat_get_vinfo() argument
483 struct inode *dat; nilfs_dat_read() local
[all...]
H A Dbmap.h18 #include "dat.h"
180 struct inode *dat) in nilfs_bmap_prepare_alloc_ptr()
182 if (dat) in nilfs_bmap_prepare_alloc_ptr()
183 return nilfs_dat_prepare_alloc(dat, &req->bpr_req); in nilfs_bmap_prepare_alloc_ptr()
191 struct inode *dat) in nilfs_bmap_commit_alloc_ptr()
193 if (dat) in nilfs_bmap_commit_alloc_ptr()
194 nilfs_dat_commit_alloc(dat, &req->bpr_req); in nilfs_bmap_commit_alloc_ptr()
199 struct inode *dat) in nilfs_bmap_abort_alloc_ptr()
201 if (dat) in nilfs_bmap_abort_alloc_ptr()
202 nilfs_dat_abort_alloc(dat, in nilfs_bmap_abort_alloc_ptr()
178 nilfs_bmap_prepare_alloc_ptr(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req, struct inode *dat) nilfs_bmap_prepare_alloc_ptr() argument
189 nilfs_bmap_commit_alloc_ptr(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req, struct inode *dat) nilfs_bmap_commit_alloc_ptr() argument
197 nilfs_bmap_abort_alloc_ptr(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req, struct inode *dat) nilfs_bmap_abort_alloc_ptr() argument
207 nilfs_bmap_prepare_end_ptr(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req, struct inode *dat) nilfs_bmap_prepare_end_ptr() argument
214 nilfs_bmap_commit_end_ptr(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req, struct inode *dat) nilfs_bmap_commit_end_ptr() argument
223 nilfs_bmap_abort_end_ptr(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req, struct inode *dat) nilfs_bmap_abort_end_ptr() argument
[all...]
H A Ddirect.c15 #include "dat.h"
54 struct inode *dat = NULL; in nilfs_direct_lookup_contig() local
66 dat = nilfs_bmap_get_dat(direct); in nilfs_direct_lookup_contig()
67 ret = nilfs_dat_translate(dat, ptr, &blocknr); in nilfs_direct_lookup_contig()
79 if (dat) { in nilfs_direct_lookup_contig()
80 ret = nilfs_dat_translate(dat, ptr2, &blocknr); in nilfs_direct_lookup_contig()
109 struct inode *dat = NULL; in nilfs_direct_insert() local
120 dat = nilfs_bmap_get_dat(bmap); in nilfs_direct_insert()
122 ret = nilfs_bmap_prepare_alloc_ptr(bmap, &req, dat); in nilfs_direct_insert()
128 nilfs_bmap_commit_alloc_ptr(bmap, &req, dat); in nilfs_direct_insert()
145 struct inode *dat; nilfs_direct_delete() local
260 struct inode *dat; nilfs_direct_propagate() local
293 struct inode *dat = nilfs_bmap_get_dat(direct); nilfs_direct_assign_v() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/evp/
H A De_camellia.c55 EVP_CAMELLIA_KEY *dat = in cmll_t4_init_key() local
61 cmll_t4_set_key(key, bits, &dat->ks); in cmll_t4_init_key()
66 dat->block = (block128_f) cmll_t4_decrypt; in cmll_t4_init_key()
69 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in cmll_t4_init_key()
74 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in cmll_t4_init_key()
82 dat->block = (block128_f) cmll_t4_encrypt; in cmll_t4_init_key()
86 dat->stream.cbc = (cbc128_f) cmll128_t4_cbc_encrypt; in cmll_t4_init_key()
88 dat->stream.ctr = (ctr128_f) cmll128_t4_ctr32_encrypt; in cmll_t4_init_key()
90 dat->stream.cbc = NULL; in cmll_t4_init_key()
95 dat in cmll_t4_init_key()
196 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_init_key() local
223 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_cbc_cipher() local
241 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_ecb_cipher() local
255 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_ofb_cipher() local
266 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_cfb_cipher() local
278 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_cfb8_cipher() local
290 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_cfb1_cipher() local
329 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_ctr_cipher() local
[all...]
H A De_des3.c110 DES_EDE_KEY *dat = data(ctx); in des_ede_cbc_cipher() local
112 if (dat->stream.cbc != NULL) { in des_ede_cbc_cipher()
113 (*dat->stream.cbc) (in, out, inl, dat->ks.ks, in des_ede_cbc_cipher()
120 &dat->ks1, &dat->ks2, &dat->ks3, in des_ede_cbc_cipher()
129 &dat->ks1, &dat->ks2, &dat in des_ede_cbc_cipher()
228 DES_EDE_KEY *dat = data(ctx); des_ede_init_key() local
255 DES_EDE_KEY *dat = data(ctx); des_ede3_init_key() local
[all...]
/third_party/openssl/crypto/evp/
H A De_camellia.c55 EVP_CAMELLIA_KEY *dat = in cmll_t4_init_key() local
61 cmll_t4_set_key(key, bits, &dat->ks); in cmll_t4_init_key()
66 dat->block = (block128_f) cmll_t4_decrypt; in cmll_t4_init_key()
69 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in cmll_t4_init_key()
74 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in cmll_t4_init_key()
82 dat->block = (block128_f) cmll_t4_encrypt; in cmll_t4_init_key()
86 dat->stream.cbc = (cbc128_f) cmll128_t4_cbc_encrypt; in cmll_t4_init_key()
88 dat->stream.ctr = (ctr128_f) cmll128_t4_ctr32_encrypt; in cmll_t4_init_key()
90 dat->stream.cbc = NULL; in cmll_t4_init_key()
95 dat in cmll_t4_init_key()
196 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_init_key() local
223 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_cbc_cipher() local
241 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_ecb_cipher() local
255 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_ofb_cipher() local
266 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_cfb_cipher() local
278 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_cfb8_cipher() local
290 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_cfb1_cipher() local
329 EVP_CAMELLIA_KEY *dat = EVP_C_DATA(EVP_CAMELLIA_KEY,ctx); camellia_ctr_cipher() local
[all...]
H A De_des3.c110 DES_EDE_KEY *dat = data(ctx); in des_ede_cbc_cipher() local
112 if (dat->stream.cbc != NULL) { in des_ede_cbc_cipher()
113 (*dat->stream.cbc) (in, out, inl, dat->ks.ks, in des_ede_cbc_cipher()
120 &dat->ks1, &dat->ks2, &dat->ks3, in des_ede_cbc_cipher()
129 &dat->ks1, &dat->ks2, &dat in des_ede_cbc_cipher()
228 DES_EDE_KEY *dat = data(ctx); des_ede_init_key() local
255 DES_EDE_KEY *dat = data(ctx); des_ede3_init_key() local
[all...]
/kernel/linux/linux-5.10/tools/perf/arch/x86/tests/
H A Dinsn-x86.c22 #include "insn-x86-dat-32.c"
29 #include "insn-x86-dat-64.c"
95 static int test_data_item(struct test_data *dat, int x86_64) in test_data_item() argument
101 insn_init(&insn, dat->data, MAX_INSN_SIZE, x86_64); in test_data_item()
105 pr_debug("Failed to decode: %s\n", dat->asm_rep); in test_data_item()
109 if (insn.length != dat->expected_length) { in test_data_item()
111 insn.length, dat->expected_length, dat->asm_rep); in test_data_item()
115 op = get_op(dat->expected_op_str); in test_data_item()
116 branch = get_branch(dat in test_data_item()
148 struct test_data *dat; test_data_set() local
[all...]
/kernel/linux/linux-6.6/tools/perf/arch/x86/tests/
H A Dinsn-x86.c22 #include "insn-x86-dat-32.c"
29 #include "insn-x86-dat-64.c"
100 static int test_data_item(const struct test_data *dat, int x86_64) in test_data_item() argument
106 ret = insn_decode(&insn, dat->data, MAX_INSN_SIZE, in test_data_item()
109 pr_debug("Failed to decode: %s\n", dat->asm_rep); in test_data_item()
113 if (insn.length != dat->expected_length) { in test_data_item()
115 insn.length, dat->expected_length, dat->asm_rep); in test_data_item()
119 op = get_op(dat->expected_op_str); in test_data_item()
120 branch = get_branch(dat in test_data_item()
152 const struct test_data *dat; test_data_set() local
[all...]
/third_party/python/Lib/
H A Dimaplib.py373 typ, dat = self._untagged_response('OK', [None], name)
374 if dat[-1]:
375 return typ, dat
376 typ, dat = self.noop() # Prod server for response
377 return self._untagged_response(typ, dat, name)
442 typ, dat = self._simple_command('AUTHENTICATE', mech)
444 raise self.error(dat[-1].decode('utf-8', 'replace'))
446 return typ, dat
454 typ, dat = self._simple_command(name)
455 return self._untagged_response(typ, dat, nam
[all...]
/third_party/node/deps/openssl/openssl/crypto/rc4/asm/
H A Drc4-586.pl81 $dat="edi";
88 &mov ($ty,&DWP(0,$dat,$yy,4));
89 &mov (&DWP(0,$dat,$yy,4),$tx);
90 &mov (&DWP(0,$dat,$xx,4),$ty);
96 &mov ($tx,&DWP(0,$dat,$xx,4));
100 &$func ($out,&DWP(0,$dat,$ty,4));
121 &mov ($ty,&DWP(0,$dat,$yy,4));
122 &mov (&DWP(0,$dat,$yy,4),$tx);
124 &mov (&DWP(0,$dat,$XX[0],4),$ty);
127 &mov ($tx,&DWP(0,$dat,
[all...]
H A Drc4-x86_64.pl130 $dat="%rdi"; # arg1
174 lea 8($dat),$dat
175 mov -8($dat),$XX[0]#b
176 mov -4($dat),$YY#b
177 cmpl \$-1,256($dat)
184 movl ($dat,$XX[0],4),$TX[0]#d
195 movl ($dat,$YY,4),$TY#d
196 movl $TX[0]#d,($dat,$YY,4)
197 movl $TY#d,($dat,
[all...]
/third_party/openssl/crypto/rc4/asm/
H A Drc4-586.pl81 $dat="edi";
88 &mov ($ty,&DWP(0,$dat,$yy,4));
89 &mov (&DWP(0,$dat,$yy,4),$tx);
90 &mov (&DWP(0,$dat,$xx,4),$ty);
96 &mov ($tx,&DWP(0,$dat,$xx,4));
100 &$func ($out,&DWP(0,$dat,$ty,4));
121 &mov ($ty,&DWP(0,$dat,$yy,4));
122 &mov (&DWP(0,$dat,$yy,4),$tx);
124 &mov (&DWP(0,$dat,$XX[0],4),$ty);
127 &mov ($tx,&DWP(0,$dat,
[all...]
H A Drc4-x86_64.pl130 $dat="%rdi"; # arg1
174 lea 8($dat),$dat
175 mov -8($dat),$XX[0]#b
176 mov -4($dat),$YY#b
177 cmpl \$-1,256($dat)
184 movl ($dat,$XX[0],4),$TX[0]#d
195 movl ($dat,$YY,4),$TY#d
196 movl $TX[0]#d,($dat,$YY,4)
197 movl $TY#d,($dat,
[all...]
/kernel/linux/linux-5.10/net/can/j1939/
H A Dtransport.c437 static inline pgn_t j1939_xtp_ctl_to_pgn(const u8 *dat) in j1939_xtp_ctl_to_pgn() argument
441 pgn = (dat[7] << 16) | (dat[6] << 8) | (dat[5] << 0); in j1939_xtp_ctl_to_pgn()
447 static inline unsigned int j1939_tp_ctl_to_size(const u8 *dat) in j1939_tp_ctl_to_size() argument
449 return (dat[2] << 8) + (dat[1] << 0); in j1939_tp_ctl_to_size()
452 static inline unsigned int j1939_etp_ctl_to_packet(const u8 *dat) in j1939_etp_ctl_to_packet() argument
454 return (dat[4] << 16) | (dat[ in j1939_etp_ctl_to_packet()
457 j1939_etp_ctl_to_size(const u8 *dat) j1939_etp_ctl_to_size() argument
627 j1939_tp_tx_dat(struct j1939_session *session, const u8 *dat, int len) j1939_tp_tx_dat() argument
645 j1939_xtp_do_tx_ctl(struct j1939_priv *priv, const struct j1939_sk_buff_cb *re_skcb, bool swap_src_dst, pgn_t pgn, const u8 *dat) j1939_xtp_do_tx_ctl() argument
668 j1939_tp_tx_ctl(struct j1939_session *session, bool swap_src_dst, const u8 *dat) j1939_tp_tx_ctl() argument
684 u8 dat[5]; j1939_xtp_tx_abort() local
713 u8 dat[8]; j1939_session_tx_rts() local
761 u8 dat[8]; j1939_session_tx_dpo() local
796 u8 dat[8]; j1939_session_tx_dat() local
911 u8 dat[8]; j1939_session_tx_cts() local
954 u8 dat[8]; j1939_session_tx_eoma() local
1354 const u8 *dat; j1939_xtp_rx_eoma_one() local
1403 const u8 *dat; j1939_xtp_rx_cts_one() local
1579 const u8 *dat; j1939_xtp_rx_rts_session_new() local
1748 const u8 *dat = skb->data; j1939_xtp_rx_dpo_one() local
1786 const u8 *dat; j1939_xtp_rx_dat_one() local
[all...]
/kernel/linux/linux-6.6/net/can/j1939/
H A Dtransport.c441 static inline pgn_t j1939_xtp_ctl_to_pgn(const u8 *dat) in j1939_xtp_ctl_to_pgn() argument
445 pgn = (dat[7] << 16) | (dat[6] << 8) | (dat[5] << 0); in j1939_xtp_ctl_to_pgn()
451 static inline unsigned int j1939_tp_ctl_to_size(const u8 *dat) in j1939_tp_ctl_to_size() argument
453 return (dat[2] << 8) + (dat[1] << 0); in j1939_tp_ctl_to_size()
456 static inline unsigned int j1939_etp_ctl_to_packet(const u8 *dat) in j1939_etp_ctl_to_packet() argument
458 return (dat[4] << 16) | (dat[ in j1939_etp_ctl_to_packet()
461 j1939_etp_ctl_to_size(const u8 *dat) j1939_etp_ctl_to_size() argument
631 j1939_tp_tx_dat(struct j1939_session *session, const u8 *dat, int len) j1939_tp_tx_dat() argument
649 j1939_xtp_do_tx_ctl(struct j1939_priv *priv, const struct j1939_sk_buff_cb *re_skcb, bool swap_src_dst, pgn_t pgn, const u8 *dat) j1939_xtp_do_tx_ctl() argument
672 j1939_tp_tx_ctl(struct j1939_session *session, bool swap_src_dst, const u8 *dat) j1939_tp_tx_ctl() argument
688 u8 dat[5]; j1939_xtp_tx_abort() local
717 u8 dat[8]; j1939_session_tx_rts() local
765 u8 dat[8]; j1939_session_tx_dpo() local
800 u8 dat[8]; j1939_session_tx_dat() local
916 u8 dat[8]; j1939_session_tx_cts() local
959 u8 dat[8]; j1939_session_tx_eoma() local
1370 const u8 *dat; j1939_xtp_rx_eoma_one() local
1419 const u8 *dat; j1939_xtp_rx_cts_one() local
1595 const u8 *dat; j1939_xtp_rx_rts_session_new() local
1767 const u8 *dat = skb->data; j1939_xtp_rx_dpo_one() local
1808 const u8 *dat; j1939_xtp_rx_dat_one() local
[all...]

Completed in 13 milliseconds

12345678910>>...17