Lines Matching refs:state
97 unsigned state[5];
131 memcpy(x, TT.state, sizeof(x));
163 for (i=0; i<4; i++) TT.state[i] += x[i];
177 // Copy context->state[] to working vars
179 TT.oldstate[i] = TT.state[i];
180 rot[i] = TT.state + i;
210 // Add the previous values of state[]
211 for (i=0; i<5; i++) TT.state[i] += TT.oldstate[i];
296 TT.state[0] = 0x67452301;
297 TT.state[1] = 0xEFCDAB89;
298 TT.state[2] = 0x98BADCFE;
299 TT.state[3] = 0x10325476;
300 TT.state[4] = 0xC3D2E1F0;
329 sprintf(toybuf+2*i, "%02x", 255&(TT.state[i>>2] >> ((3-(i & 3)) * 8)));
330 else for (i=0; i<4; i++) sprintf(toybuf+8*i, "%08x", bswap_32(TT.state[i]));
333 memset(TT.state, 0, sizeof(TT)-((long)TT.state-(long)&TT));