OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:internal_buf
(Results
1 - 3
of
3
) sorted by null
/external/flac/libFLAC/include/private/
md5.h
35
FLAC__byte *
internal_buf
;
member in struct:__anon25323
/external/flac/libFLAC/
md5.c
230
ctx->
internal_buf
= 0;
267
if(0 != ctx->
internal_buf
) {
268
free(ctx->
internal_buf
);
269
ctx->
internal_buf
= 0;
409
FLAC__byte *tmp = (FLAC__byte*)realloc(ctx->
internal_buf
, bytes_needed);
411
free(ctx->
internal_buf
);
412
if(0 == (ctx->
internal_buf
= (FLAC__byte*)safe_malloc_(bytes_needed)))
415
ctx->
internal_buf
= tmp;
419
format_input_(ctx->
internal_buf
, signal, channels, samples, bytes_per_sample);
421
FLAC__MD5Update(ctx, ctx->
internal_buf
, bytes_needed)
[
all
...]
/ndk/sources/android/support/src/stdio/
vfprintf.c
756
unsigned char
internal_buf
[80], *saved_buf = 0;
local
765
f->wpos = f->wbase = f->buf =
internal_buf
;
766
f->buf_size = sizeof
internal_buf
;
767
f->wend =
internal_buf
+ sizeof
internal_buf
;
Completed in 531 milliseconds