Lines Matching refs:actualBytes

430     size_t actualBytes;  in sf_readf_short()  local
435 actualBytes = fread(temp, sizeof(char), desiredBytes, handle->stream); in sf_readf_short()
437 actualBytes = fread(ptr, sizeof(char), desiredBytes, handle->stream); in sf_readf_short()
439 size_t actualFrames = actualBytes / handle->bytesPerFrame; in sf_readf_short()
479 size_t actualBytes; in sf_readf_float() local
484 actualBytes = fread(temp, sizeof(char), desiredBytes, handle->stream); in sf_readf_float()
486 actualBytes = fread(ptr, sizeof(char), desiredBytes, handle->stream); in sf_readf_float()
488 size_t actualFrames = actualBytes / handle->bytesPerFrame; in sf_readf_float()
532 size_t actualBytes; in sf_readf_int() local
535 actualBytes = fread(temp, sizeof(char), desiredBytes, handle->stream); in sf_readf_int()
537 actualBytes = fread(ptr, sizeof(char), desiredBytes, handle->stream); in sf_readf_int()
539 size_t actualFrames = actualBytes / handle->bytesPerFrame; in sf_readf_int()
575 size_t actualBytes = 0; in sf_writef_short() local
580 actualBytes = fwrite(handle->temp, sizeof(char), desiredBytes, handle->stream); in sf_writef_short()
585 actualBytes = fwrite(ptr, sizeof(char), desiredBytes, handle->stream); in sf_writef_short()
590 actualBytes = fwrite(handle->temp, sizeof(char), desiredBytes, handle->stream); in sf_writef_short()
597 actualBytes = fwrite(handle->temp, sizeof(char), desiredBytes, handle->stream); in sf_writef_short()
602 size_t actualFrames = actualBytes / handle->bytesPerFrame; in sf_writef_short()
612 size_t actualBytes = 0; in sf_writef_float() local
615 actualBytes = fwrite(ptr, sizeof(char), desiredBytes, handle->stream); in sf_writef_float()
621 actualBytes = fwrite(handle->temp, sizeof(char), desiredBytes, handle->stream); in sf_writef_float()
627 size_t actualFrames = actualBytes / handle->bytesPerFrame; in sf_writef_float()
637 size_t actualBytes = 0; in sf_writef_int() local
640 actualBytes = fwrite(ptr, sizeof(char), desiredBytes, handle->stream); in sf_writef_int()
645 size_t actualFrames = actualBytes / handle->bytesPerFrame; in sf_writef_int()