Lines Matching defs:state
99 sha512_transform(u64 *state, const u8 *input)
106 /* load the state into our registers */
107 a=state[0]; b=state[1]; c=state[2]; d=state[3];
108 e=state[4]; f=state[5]; g=state[6]; h=state[7];
144 state[0] += a; state[1] += b; state[2] += c; state[3] += d;
145 state[4] += e; state[5] += f; state[6] += g; state[7] += h;
152 sha512_transform(sst->state, src);