Searched defs:desiredBytes (Results 1 - 1 of 1) sorted by relevance

/system/media/audio_utils/
H A Dtinysndfile.c361 size_t desiredBytes = desiredFrames * handle->bytesPerFrame; local
366 temp = malloc(desiredBytes);
367 actualBytes = fread(temp, sizeof(char), desiredBytes, handle->stream);
369 actualBytes = fread(ptr, sizeof(char), desiredBytes, handle->stream);
406 size_t desiredBytes = desiredFrames * handle->bytesPerFrame; local
411 temp = malloc(desiredBytes);
412 actualBytes = fread(temp, sizeof(char), desiredBytes, handle->stream);
414 actualBytes = fread(ptr, sizeof(char), desiredBytes, handle->stream);
453 size_t desiredBytes = desiredFrames * handle->bytesPerFrame; local
458 temp = malloc(desiredBytes);
[all...]

Completed in 56 milliseconds