Lines Matching refs:I
105 static inline void LOAD_OP(int I, u64 *W, const u8 *input) in LOAD_OP() argument
107 u64 t1 = input[(8*I) ] & 0xff; in LOAD_OP()
109 t1 |= input[(8*I)+1] & 0xff; in LOAD_OP()
111 t1 |= input[(8*I)+2] & 0xff; in LOAD_OP()
113 t1 |= input[(8*I)+3] & 0xff; in LOAD_OP()
115 t1 |= input[(8*I)+4] & 0xff; in LOAD_OP()
117 t1 |= input[(8*I)+5] & 0xff; in LOAD_OP()
119 t1 |= input[(8*I)+6] & 0xff; in LOAD_OP()
121 t1 |= input[(8*I)+7] & 0xff; in LOAD_OP()
122 W[I] = t1; in LOAD_OP()
125 static inline void BLEND_OP(int I, u64 *W) in BLEND_OP() argument
127 W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16]; in BLEND_OP()