Lines Matching defs:state
51 void Z7_FASTCALL Sha256_UpdateBlocks(UInt32 state[8], const Byte *data, size_t numBlocks);
54 void Z7_FASTCALL Sha256_UpdateBlocks_HW(UInt32 state[8], const Byte *data, size_t numBlocks);
115 p->state[0] = 0x6a09e667;
116 p->state[1] = 0xbb67ae85;
117 p->state[2] = 0x3c6ef372;
118 p->state[3] = 0xa54ff53a;
119 p->state[4] = 0x510e527f;
120 p->state[5] = 0x9b05688c;
121 p->state[6] = 0x1f83d9ab;
122 p->state[7] = 0x5be0cd19;
227 void Z7_FASTCALL Sha256_UpdateBlocks_HW(UInt32 state[8], const Byte *data, size_t numBlocks);
257 void Z7_FASTCALL Sha256_UpdateBlocks(UInt32 state[8], const Byte *data, size_t numBlocks)
274 a = state[0];
275 b = state[1];
276 c = state[2];
277 d = state[3];
278 e = state[4];
279 f = state[5];
280 g = state[6];
281 h = state[7];
348 a += state[0]; state[0] = a;
349 b += state[1]; state[1] = b;
350 c += state[2]; state[2] = c;
351 d += state[3]; state[3] = d;
352 e += state[4]; state[4] = e;
353 f += state[5]; state[5] = f;
354 g += state[6]; state[6] = g;
355 h += state[7]; state[7] = h;
371 #define Sha256_UpdateBlock(p) SHA256_UPDATE_BLOCKS(p)(p->state, p->buffer, 1)
401 SHA256_UPDATE_BLOCKS(p)(p->state, data, numBlocks);
453 UInt32 v0 = p->state[i];
454 UInt32 v1 = p->state[(size_t)i + 1];