Lines Matching refs:ctx
40 asmlinkage void __camellia_enc_blk(struct camellia_ctx *ctx, u8 *dst,
42 asmlinkage void camellia_dec_blk(struct camellia_ctx *ctx, u8 *dst,
46 asmlinkage void __camellia_enc_blk_2way(struct camellia_ctx *ctx, u8 *dst,
48 asmlinkage void camellia_dec_blk_2way(struct camellia_ctx *ctx, u8 *dst,
52 asmlinkage void camellia_ecb_enc_16way(struct camellia_ctx *ctx, u8 *dst,
54 asmlinkage void camellia_ecb_dec_16way(struct camellia_ctx *ctx, u8 *dst,
57 asmlinkage void camellia_cbc_dec_16way(struct camellia_ctx *ctx, u8 *dst,
59 asmlinkage void camellia_ctr_16way(struct camellia_ctx *ctx, u8 *dst,
62 asmlinkage void camellia_xts_enc_16way(struct camellia_ctx *ctx, u8 *dst,
64 asmlinkage void camellia_xts_dec_16way(struct camellia_ctx *ctx, u8 *dst,
67 static inline void camellia_enc_blk(struct camellia_ctx *ctx, u8 *dst, in camellia_enc_blk() argument
70 __camellia_enc_blk(ctx, dst, src, false); in camellia_enc_blk()
73 static inline void camellia_enc_blk_xor(struct camellia_ctx *ctx, u8 *dst, in camellia_enc_blk_xor() argument
76 __camellia_enc_blk(ctx, dst, src, true); in camellia_enc_blk_xor()
79 static inline void camellia_enc_blk_2way(struct camellia_ctx *ctx, u8 *dst, in camellia_enc_blk_2way() argument
82 __camellia_enc_blk_2way(ctx, dst, src, false); in camellia_enc_blk_2way()
85 static inline void camellia_enc_blk_xor_2way(struct camellia_ctx *ctx, u8 *dst, in camellia_enc_blk_xor_2way() argument
88 __camellia_enc_blk_2way(ctx, dst, src, true); in camellia_enc_blk_xor_2way()
92 extern void camellia_decrypt_cbc_2way(void *ctx, u128 *dst, const u128 *src);
93 extern void camellia_crypt_ctr(void *ctx, u128 *dst, const u128 *src,
95 extern void camellia_crypt_ctr_2way(void *ctx, u128 *dst, const u128 *src,
98 extern void camellia_xts_enc(void *ctx, u128 *dst, const u128 *src, le128 *iv);
99 extern void camellia_xts_dec(void *ctx, u128 *dst, const u128 *src, le128 *iv);