Lines Matching defs:src
13 const u8 *src, bool xor);
15 const u8 *src);
17 static inline void serpent_enc_blk_xway(const void *ctx, u8 *dst, const u8 *src)
19 __serpent_enc_blk_4way(ctx, dst, src, false);
23 u8 *dst, const u8 *src)
25 __serpent_enc_blk_4way(ctx, dst, src, true);
28 static inline void serpent_dec_blk_xway(const void *ctx, u8 *dst, const u8 *src)
30 serpent_dec_blk_4way(ctx, dst, src);
38 const u8 *src, bool xor);
40 const u8 *src);
42 static inline void serpent_enc_blk_xway(const void *ctx, u8 *dst, const u8 *src)
44 __serpent_enc_blk_8way(ctx, dst, src, false);
48 u8 *dst, const u8 *src)
50 __serpent_enc_blk_8way(ctx, dst, src, true);
53 static inline void serpent_dec_blk_xway(const void *ctx, u8 *dst, const u8 *src)
55 serpent_dec_blk_8way(ctx, dst, src);