Home
last modified time | relevance | path

Searched refs:internal_buf (Results 1 – 2 of 2) sorted by relevance

/external/flac/libFLAC/
Dmd5.c230 ctx->internal_buf = 0; in FLAC__MD5Init()
267 if(0 != ctx->internal_buf) { in FLAC__MD5Final()
268 free(ctx->internal_buf); in FLAC__MD5Final()
269 ctx->internal_buf = 0; in FLAC__MD5Final()
409 FLAC__byte *tmp = (FLAC__byte*)realloc(ctx->internal_buf, bytes_needed); in FLAC__MD5Accumulate()
411 free(ctx->internal_buf); in FLAC__MD5Accumulate()
412 if(0 == (ctx->internal_buf = (FLAC__byte*)safe_malloc_(bytes_needed))) in FLAC__MD5Accumulate()
415 ctx->internal_buf = tmp; in FLAC__MD5Accumulate()
419 format_input_(ctx->internal_buf, signal, channels, samples, bytes_per_sample); in FLAC__MD5Accumulate()
421 FLAC__MD5Update(ctx, ctx->internal_buf, bytes_needed); in FLAC__MD5Accumulate()
/external/flac/libFLAC/include/private/
Dmd5.h35 FLAC__byte *internal_buf; member