• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/

Lines Matching defs:state

38     uint64_t state[8];    ///< current hash value
119 static void sha512_transform(uint64_t *state, const uint8_t buffer[128])
126 a = state[0];
127 b = state[1];
128 c = state[2];
129 d = state[3];
130 e = state[4];
131 f = state[5];
132 g = state[6];
133 h = state[7];
180 state[0] += a;
181 state[1] += b;
182 state[2] += c;
183 state[3] += d;
184 state[4] += e;
185 state[5] += f;
186 state[6] += g;
187 state[7] += h;
196 ctx->state[0] = UINT64_C(0x8C3D37C819544DA2);
197 ctx->state[1] = UINT64_C(0x73E1996689DCD4D6);
198 ctx->state[2] = UINT64_C(0x1DFAB7AE32FF9C82);
199 ctx->state[3] = UINT64_C(0x679DD514582F9FCF);
200 ctx->state[4] = UINT64_C(0x0F6D2B697BD44DA8);
201 ctx->state[5] = UINT64_C(0x77E36F7304C48942);
202 ctx->state[6] = UINT64_C(0x3F9D85A86A1D36C8);
203 ctx->state[7] = UINT64_C(0x1112E6AD91D692A1);
206 ctx->state[0] = UINT64_C(0x22312194FC2BF72C);
207 ctx->state[1] = UINT64_C(0x9F555FA3C84C64C2);
208 ctx->state[2] = UINT64_C(0x2393B86B6F53B151);
209 ctx->state[3] = UINT64_C(0x963877195940EABD);
210 ctx->state[4] = UINT64_C(0x96283EE2A88EFFE3);
211 ctx->state[5] = UINT64_C(0xBE5E1E2553863992);
212 ctx->state[6] = UINT64_C(0x2B0199FC2C85B8AA);
213 ctx->state[7] = UINT64_C(0x0EB72DDC81C52CA2);
216 ctx->state[0] = UINT64_C(0xCBBB9D5DC1059ED8);
217 ctx->state[1] = UINT64_C(0x629A292A367CD507);
218 ctx->state[2] = UINT64_C(0x9159015A3070DD17);
219 ctx->state[3] = UINT64_C(0x152FECD8F70E5939);
220 ctx->state[4] = UINT64_C(0x67332667FFC00B31);
221 ctx->state[5] = UINT64_C(0x8EB44A8768581511);
222 ctx->state[6] = UINT64_C(0xDB0C2E0D64F98FA7);
223 ctx->state[7] = UINT64_C(0x47B5481DBEFA4FA4);
226 ctx->state[0] = UINT64_C(0x6A09E667F3BCC908);
227 ctx->state[1] = UINT64_C(0xBB67AE8584CAA73B);
228 ctx->state[2] = UINT64_C(0x3C6EF372FE94F82B);
229 ctx->state[3] = UINT64_C(0xA54FF53A5F1D36F1);
230 ctx->state[4] = UINT64_C(0x510E527FADE682D1);
231 ctx->state[5] = UINT64_C(0x9B05688C2B3E6C1F);
232 ctx->state[6] = UINT64_C(0x1F83D9ABFB41BD6B);
233 ctx->state[7] = UINT64_C(0x5BE0CD19137E2179);
252 sha512_transform(ctx->state, ctx->buffer);
259 sha512_transform(ctx->state, ctx->buffer);
261 sha512_transform(ctx->state, &data[i]);
280 AV_WB64(digest + i*8, ctx->state[i]);
282 AV_WB32(digest + i*8, ctx->state[i] >> 32);