Lines Matching refs:src
25 asmlinkage void twofish_ecb_enc_8way(const void *ctx, u8 *dst, const u8 *src);
26 asmlinkage void twofish_ecb_dec_8way(const void *ctx, u8 *dst, const u8 *src);
28 asmlinkage void twofish_cbc_dec_8way(const void *ctx, u8 *dst, const u8 *src);
29 asmlinkage void twofish_ctr_8way(const void *ctx, u8 *dst, const u8 *src,
32 asmlinkage void twofish_xts_enc_8way(const void *ctx, u8 *dst, const u8 *src,
34 asmlinkage void twofish_xts_dec_8way(const void *ctx, u8 *dst, const u8 *src,
43 static inline void twofish_enc_blk_3way(const void *ctx, u8 *dst, const u8 *src)
45 __twofish_enc_blk_3way(ctx, dst, src, false);
48 static void twofish_xts_enc(const void *ctx, u8 *dst, const u8 *src, le128 *iv)
50 glue_xts_crypt_128bit_one(ctx, dst, src, iv, twofish_enc_blk);
53 static void twofish_xts_dec(const void *ctx, u8 *dst, const u8 *src, le128 *iv)
55 glue_xts_crypt_128bit_one(ctx, dst, src, iv, twofish_dec_blk);