I 51 crypto/ansi_cprng.c unsigned char I[DEFAULT_BLK_SZ];
I 99 crypto/ansi_cprng.c hexdump("Input I: ", ctx->I, DEFAULT_BLK_SZ);
I 114 crypto/ansi_cprng.c output = ctx->I;
I 124 crypto/ansi_cprng.c xor_vectors(ctx->I, ctx->V, tmp, DEFAULT_BLK_SZ);
I 148 crypto/ansi_cprng.c xor_vectors(ctx->rand_data, ctx->I, tmp,
I 174 crypto/ansi_cprng.c hexdump("Output I: ", ctx->I, DEFAULT_BLK_SZ);
I 572 crypto/cast5.c #define F1(D,m,r) ( (I = ((m) + (D))), (I=rol32(I,(r))), \
I 573 crypto/cast5.c (((s1[I >> 24] ^ s2[(I>>16)&0xff]) - s3[(I>>8)&0xff]) + s4[I&0xff]) )
I 574 crypto/cast5.c #define F2(D,m,r) ( (I = ((m) ^ (D))), (I=rol32(I,(r))), \
I 575 crypto/cast5.c (((s1[I >> 24] - s2[(I>>16)&0xff]) + s3[(I>>8)&0xff]) ^ s4[I&0xff]) )
I 576 crypto/cast5.c #define F3(D,m,r) ( (I = ((m) - (D))), (I=rol32(I,(r))), \
I 577 crypto/cast5.c (((s1[I >> 24] + s2[(I>>16)&0xff]) ^ s3[(I>>8)&0xff]) - s4[I&0xff]) )
I 586 crypto/cast5.c u32 I; /* used by the Fx macros */
I 651 crypto/cast5.c u32 I;
I 38 crypto/cast6.c #define F1(D,r,m) ( (I = ((m) + (D))), (I=rol32(I,(r))), \
I 39 crypto/cast6.c (((s1[I >> 24] ^ s2[(I>>16)&0xff]) - s3[(I>>8)&0xff]) + s4[I&0xff]) )
I 40 crypto/cast6.c #define F2(D,r,m) ( (I = ((m) ^ (D))), (I=rol32(I,(r))), \
I 41 crypto/cast6.c (((s1[I >> 24] - s2[(I>>16)&0xff]) + s3[(I>>8)&0xff]) ^ s4[I&0xff]) )
I 42 crypto/cast6.c #define F3(D,r,m) ( (I = ((m) - (D))), (I=rol32(I,(r))), \
I 43 crypto/cast6.c (((s1[I >> 24] + s2[(I>>16)&0xff]) ^ s3[(I>>8)&0xff]) - s4[I&0xff]) )
I 373 crypto/cast6.c u32 I;
I 432 crypto/cast6.c u32 I;
I 441 crypto/cast6.c u32 I;
I 49 crypto/sha256_generic.c static inline void LOAD_OP(int I, u32 *W, const u8 *input)
I 51 crypto/sha256_generic.c W[I] = __be32_to_cpu( ((__be32*)(input))[I] );
I 54 crypto/sha256_generic.c static inline void BLEND_OP(int I, u32 *W)
I 56 crypto/sha256_generic.c W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16];
I 81 crypto/sha512_generic.c static inline void LOAD_OP(int I, u64 *W, const u8 *input)
I 83 crypto/sha512_generic.c W[I] = __be64_to_cpu( ((__be64*)(input))[I] );
I 86 crypto/sha512_generic.c static inline void BLEND_OP(int I, u64 *W)
I 88 crypto/sha512_generic.c W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16];
I 30 include/math-emu/op-1.h #define _FP_FRAC_SET_1(X,I) (X##_f = I)
I 35 include/math-emu/op-1.h #define _FP_FRAC_ADDI_1(X,I) (X##_f += I)
I 30 include/math-emu/op-2.h #define _FP_FRAC_SET_2(X,I) __FP_FRAC_SET_2(X, I)
I 91 include/math-emu/op-2.h __FP_FRAC_ADDI_2(X##_f1, X##_f0, I)
I 32 include/math-emu/op-4.h #define _FP_FRAC_SET_4(X,I) __FP_FRAC_SET_4(X, I)
I 126 include/math-emu/op-4.h __FP_FRAC_ADDI_4(X##_f[3], X##_f[2], X##_f[1], X##_f[0], I)