Lines Matching defs:input
54 static inline void LOAD_OP(int I, u32 *W, const u8 *input)
56 W[I] = get_unaligned_be32((__u32 *)input + I);
72 static void sha256_transform(u32 *state, const u8 *input, u32 *W)
77 /* load the input */
79 LOAD_OP(i + 0, W, input);
80 LOAD_OP(i + 1, W, input);
81 LOAD_OP(i + 2, W, input);
82 LOAD_OP(i + 3, W, input);
83 LOAD_OP(i + 4, W, input);
84 LOAD_OP(i + 5, W, input);
85 LOAD_OP(i + 6, W, input);
86 LOAD_OP(i + 7, W, input);
122 const u8 *input, int blocks)
127 sha256_transform(sctx->state, input, W);
128 input += SHA256_BLOCK_SIZE;