Lines Matching full:rounds

27 asmlinkage void aesbs_convert_key(u8 out[], u32 const rk[], int rounds);
30 int rounds, int blocks);
32 int rounds, int blocks);
35 int rounds, int blocks, u8 iv[]);
38 int rounds, int blocks, u8 iv[]);
41 int rounds, int blocks, u8 iv[]);
43 int rounds, int blocks, u8 iv[]);
47 int rounds, int blocks);
49 int rounds, int blocks, u8 iv[]);
51 int rounds, int bytes, u8 ctr[]);
53 u32 const rk1[], int rounds, int bytes,
56 u32 const rk1[], int rounds, int bytes,
61 int rounds; member
86 ctx->rounds = 6 + key_len / 4; in aesbs_setkey()
89 aesbs_convert_key(ctx->rk, rk.key_enc, ctx->rounds); in aesbs_setkey()
97 int rounds, int blocks)) in __ecb_crypt() argument
115 ctx->rounds, blocks); in __ecb_crypt()
145 ctx->key.rounds = 6 + key_len / 4; in aesbs_cbc_ctr_setkey()
150 aesbs_convert_key(ctx->key.rk, rk.key_enc, ctx->key.rounds); in aesbs_cbc_ctr_setkey()
172 ctx->enc, ctx->key.rounds, blocks, in cbc_encrypt()
198 ctx->key.rk, ctx->key.rounds, blocks, in cbc_decrypt()
225 aesbs_ctr_encrypt(dst, src, ctx->key.rk, ctx->key.rounds, in ctr_encrypt()
238 neon_aes_ctr_encrypt(dst, src, ctx->enc, ctx->key.rounds, in ctr_encrypt()
279 int rounds, int blocks, u8 iv[])) in __xts_crypt() argument
327 ctx->key.rounds, 1); in __xts_crypt()
330 fn(out, in, ctx->key.rk, ctx->key.rounds, blocks, in __xts_crypt()
340 ctx->key.rounds, nbytes, in __xts_crypt()
344 ctx->key.rounds, nbytes, in __xts_crypt()
373 neon_aes_xts_encrypt(out, in, ctx->cts.key_enc, ctx->key.rounds, in __xts_crypt()
376 neon_aes_xts_decrypt(out, in, ctx->cts.key_dec, ctx->key.rounds, in __xts_crypt()