Home | History | Annotate | Download | only in libmincrypt

Lines Matching refs:state

77     A = ctx->state[0];
78 B = ctx->state[1];
79 C = ctx->state[2];
80 D = ctx->state[3];
81 E = ctx->state[4];
82 F = ctx->state[5];
83 G = ctx->state[6];
84 H = ctx->state[7];
104 ctx->state[0] += A;
105 ctx->state[1] += B;
106 ctx->state[2] += C;
107 ctx->state[3] += D;
108 ctx->state[4] += E;
109 ctx->state[5] += F;
110 ctx->state[6] += G;
111 ctx->state[7] += H;
124 ctx->state[0] = 0x6a09e667;
125 ctx->state[1] = 0xbb67ae85;
126 ctx->state[2] = 0x3c6ef372;
127 ctx->state[3] = 0xa54ff53a;
128 ctx->state[4] = 0x510e527f;
129 ctx->state[5] = 0x9b05688c;
130 ctx->state[6] = 0x1f83d9ab;
131 ctx->state[7] = 0x5be0cd19;
167 uint32_t tmp = ctx->state[i];