Lines Matching refs:rounds

26 asmlinkage void aesbs_convert_key(u8 out[], u32 const rk[], int rounds);
29 int rounds, int blocks);
31 int rounds, int blocks);
34 int rounds, int blocks, u8 iv[]);
37 int rounds, int blocks, u8 iv[]);
40 int rounds, int blocks, u8 iv[]);
42 int rounds, int blocks, u8 iv[]);
46 int rounds, int blocks);
48 int rounds, int blocks, u8 iv[]);
50 int rounds, int bytes, u8 ctr[]);
52 u32 const rk1[], int rounds, int bytes,
55 u32 const rk1[], int rounds, int bytes,
60 int rounds; member
85 ctx->rounds = 6 + key_len / 4; in aesbs_setkey()
88 aesbs_convert_key(ctx->rk, rk.key_enc, ctx->rounds); in aesbs_setkey()
96 int rounds, int blocks)) in __ecb_crypt() argument
114 ctx->rounds, blocks); in __ecb_crypt()
144 ctx->key.rounds = 6 + key_len / 4; in aesbs_cbc_ctr_setkey()
149 aesbs_convert_key(ctx->key.rk, rk.key_enc, ctx->key.rounds); in aesbs_cbc_ctr_setkey()
171 ctx->enc, ctx->key.rounds, blocks, in cbc_encrypt()
197 ctx->key.rk, ctx->key.rounds, blocks, in cbc_decrypt()
224 aesbs_ctr_encrypt(dst, src, ctx->key.rk, ctx->key.rounds, in ctr_encrypt()
230 neon_aes_ctr_encrypt(dst, src, ctx->enc, ctx->key.rounds, in ctr_encrypt()
267 int rounds, int blocks, u8 iv[])) in __xts_crypt() argument
315 ctx->key.rounds, 1); in __xts_crypt()
318 fn(out, in, ctx->key.rk, ctx->key.rounds, blocks, in __xts_crypt()
328 ctx->key.rounds, nbytes, in __xts_crypt()
332 ctx->key.rounds, nbytes, in __xts_crypt()
361 neon_aes_xts_encrypt(out, in, ctx->cts.key_enc, ctx->key.rounds, in __xts_crypt()
364 neon_aes_xts_decrypt(out, in, ctx->cts.key_dec, ctx->key.rounds, in __xts_crypt()