• Home
  • Raw
  • Download

Lines Matching refs:FLAC__byte

181 static void FLAC__MD5Update(FLAC__MD5Context *ctx, FLAC__byte const *buf, unsigned len)  in FLAC__MD5Update()
193 memcpy((FLAC__byte *)ctx->in + 64 - t, buf, len); in FLAC__MD5Update()
197 memcpy((FLAC__byte *)ctx->in + 64 - t, buf, t); in FLAC__MD5Update()
238 void FLAC__MD5Final(FLAC__byte digest[16], FLAC__MD5Context *ctx) in FLAC__MD5Final()
241 FLAC__byte *p = (FLAC__byte *)ctx->in + count; in FLAC__MD5Final()
253 p = (FLAC__byte *)ctx->in; in FLAC__MD5Final()
277 static void format_input_(FLAC__byte *buf, const FLAC__int32 * const signal[], unsigned channels, u… in format_input_()
281 register FLAC__byte *buf_ = buf; in format_input_()
302 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
303 *buf_++ = (FLAC__byte)a_word; in format_input_()
305 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
306 *buf_++ = (FLAC__byte)a_word; in format_input_()
312 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
313 *buf_++ = (FLAC__byte)a_word; in format_input_()
320 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
321 *buf_++ = (FLAC__byte)a_word; in format_input_()
330 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
331 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
332 *buf_++ = (FLAC__byte)a_word; in format_input_()
334 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
335 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
336 *buf_++ = (FLAC__byte)a_word; in format_input_()
342 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
343 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
344 *buf_++ = (FLAC__byte)a_word; in format_input_()
351 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
352 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
353 *buf_++ = (FLAC__byte)a_word; in format_input_()
362 *buf_++ = (FLAC__byte)a_word; in format_input_()
364 *buf_++ = (FLAC__byte)a_word; in format_input_()
370 *buf_++ = (FLAC__byte)a_word; in format_input_()
377 *buf_++ = (FLAC__byte)a_word; in format_input_()
386 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
387 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
388 *buf_++ = (FLAC__byte)a_word; a_word >>= 8; in format_input_()
389 *buf_++ = (FLAC__byte)a_word; in format_input_()
409 FLAC__byte *tmp = (FLAC__byte*)realloc(ctx->internal_buf, bytes_needed); in FLAC__MD5Accumulate()
412 if(0 == (ctx->internal_buf = (FLAC__byte*)safe_malloc_(bytes_needed))) in FLAC__MD5Accumulate()