Lines Matching defs:buffer
37 uint64_t count; ///< number of bytes in buffer
38 uint8_t buffer[128]; ///< 1024-bit buffer of input values used in hash updating
102 #define blk0(i) (block[i] = AV_RB64(buffer + 8 * (i)))
120 static void sha512_transform(uint64_t *state, const uint8_t buffer[128])
252 ctx->buffer[j++] = data[i];
254 sha512_transform(ctx->state, ctx->buffer);
261 memcpy(&ctx->buffer[j], data, (i = 128 - j));
262 sha512_transform(ctx->state, ctx->buffer);
271 memcpy(&ctx->buffer[j], data, len);