Lines Matching defs:state
54 uint32_t state[5]; /**< intermediate digest state */
87 sha1_context_p->state[0] = 0x67452301;
88 sha1_context_p->state[1] = 0xEFCDAB89;
89 sha1_context_p->state[2] = 0x98BADCFE;
90 sha1_context_p->state[3] = 0x10325476;
91 sha1_context_p->state[4] = 0xC3D2E1F0;
134 A = sha1_context_p->state[0];
135 B = sha1_context_p->state[1];
136 C = sha1_context_p->state[2];
137 D = sha1_context_p->state[3];
138 E = sha1_context_p->state[4];
248 sha1_context_p->state[0] += A;
249 sha1_context_p->state[1] += B;
250 sha1_context_p->state[2] += C;
251 sha1_context_p->state[3] += D;
252 sha1_context_p->state[4] += E;
341 JERRYX_SHA1_PUT_UINT32_BE (sha1_context_p->state[0], destination_p, 0);
342 JERRYX_SHA1_PUT_UINT32_BE (sha1_context_p->state[1], destination_p, 4);
343 JERRYX_SHA1_PUT_UINT32_BE (sha1_context_p->state[2], destination_p, 8);
344 JERRYX_SHA1_PUT_UINT32_BE (sha1_context_p->state[3], destination_p, 12);
345 JERRYX_SHA1_PUT_UINT32_BE (sha1_context_p->state[4], destination_p, 16);