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[], u8 final[]);
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 u32 const rk1[], int rounds, int bytes,
53 u32 const rk1[], int rounds, int bytes,
58 int rounds; member
83 ctx->rounds = 6 + key_len / 4; in aesbs_setkey()
86 aesbs_convert_key(ctx->rk, rk.key_enc, ctx->rounds); in aesbs_setkey()
94 int rounds, int blocks)) in __ecb_crypt() argument
112 ctx->rounds, blocks); in __ecb_crypt()
142 ctx->key.rounds = 6 + key_len / 4; in aesbs_cbc_setkey()
147 aesbs_convert_key(ctx->key.rk, rk.key_enc, ctx->key.rounds); in aesbs_cbc_setkey()
169 ctx->enc, ctx->key.rounds, blocks, in cbc_encrypt()
195 ctx->key.rk, ctx->key.rounds, blocks, in cbc_decrypt()
227 ctx->rk, ctx->rounds, blocks, walk.iv, final); in ctr_encrypt()
273 int rounds, int blocks, u8 iv[])) in __xts_crypt() argument
326 ctx->key.rounds, 1); in __xts_crypt()
329 fn(out, in, ctx->key.rk, ctx->key.rounds, blocks, in __xts_crypt()
366 neon_aes_xts_encrypt(out, in, ctx->cts.key_enc, ctx->key.rounds, in __xts_crypt()
369 neon_aes_xts_decrypt(out, in, ctx->cts.key_dec, ctx->key.rounds, in __xts_crypt()