Searched refs:I (Results 1 – 5 of 5) sorted by relevance
/crypto/ |
D | cast6_generic.c | 35 #define F1(D, r, m) ((I = ((m) + (D))), (I = rol32(I, (r))), \ 36 (((s1[I >> 24] ^ s2[(I>>16)&0xff]) - s3[(I>>8)&0xff]) + s4[I&0xff])) 37 #define F2(D, r, m) ((I = ((m) ^ (D))), (I = rol32(I, (r))), \ 38 (((s1[I >> 24] - s2[(I>>16)&0xff]) + s3[(I>>8)&0xff]) ^ s4[I&0xff])) 39 #define F3(D, r, m) ((I = ((m) - (D))), (I = rol32(I, (r))), \ 40 (((s1[I >> 24] + s2[(I>>16)&0xff]) ^ s3[(I>>8)&0xff]) - s4[I&0xff])) 103 u32 I; in W() local 167 u32 I; in Q() local 177 u32 I; in QBAR() local
|
D | cast5_generic.c | 303 #define F1(D, m, r) ((I = ((m) + (D))), (I = rol32(I, (r))), \ 304 (((s1[I >> 24] ^ s2[(I>>16)&0xff]) - s3[(I>>8)&0xff]) + s4[I&0xff])) 305 #define F2(D, m, r) ((I = ((m) ^ (D))), (I = rol32(I, (r))), \ 306 (((s1[I >> 24] - s2[(I>>16)&0xff]) + s3[(I>>8)&0xff]) ^ s4[I&0xff])) 307 #define F3(D, m, r) ((I = ((m) - (D))), (I = rol32(I, (r))), \ 308 (((s1[I >> 24] + s2[(I>>16)&0xff]) ^ s3[(I>>8)&0xff]) - s4[I&0xff])) 316 u32 I; /* used by the Fx macros */ in __cast5_encrypt() local 373 u32 I; in __cast5_decrypt() local
|
D | sha512_generic.c | 70 static inline void LOAD_OP(int I, u64 *W, const u8 *input) in LOAD_OP() argument 72 W[I] = get_unaligned_be64((__u64 *)input + I); in LOAD_OP() 75 static inline void BLEND_OP(int I, u64 *W) in BLEND_OP() argument 77 W[I & 15] += s1(W[(I-2) & 15]) + W[(I-7) & 15] + s0(W[(I-15) & 15]); in BLEND_OP()
|
D | ansi_cprng.c | 51 unsigned char I[DEFAULT_BLK_SZ]; member 99 hexdump("Input I: ", ctx->I, DEFAULT_BLK_SZ); in _get_more_prng_bytes() 114 output = ctx->I; in _get_more_prng_bytes() 124 xor_vectors(ctx->I, ctx->V, tmp, DEFAULT_BLK_SZ); in _get_more_prng_bytes() 154 xor_vectors(ctx->rand_data, ctx->I, tmp, in _get_more_prng_bytes() 180 hexdump("Output I: ", ctx->I, DEFAULT_BLK_SZ); in _get_more_prng_bytes()
|
D | sha256_generic.c | 44 static inline void LOAD_OP(int I, u32 *W, const u8 *input) in LOAD_OP() argument 46 W[I] = get_unaligned_be32((__u32 *)input + I); in LOAD_OP() 49 static inline void BLEND_OP(int I, u32 *W) in BLEND_OP() argument 51 W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16]; in BLEND_OP()
|