Lines Matching refs:readcount
96 int k, readcount, subformat ;
127 while ((readcount = sf_read_float (sndfile, buffer, BUFFER_LEN)))
128 { for (m = 0 ; m < readcount ; m++)
134 { while ((readcount = sf_read_float (sndfile, buffer, BUFFER_LEN)))
367 int k, audio_device, readcount, writecount, subformat ;
398 while ((readcount = sf_read_float (sndfile, float_buffer, BUFFER_LEN)))
399 { for (m = 0 ; m < readcount ; m++)
401 writecount = write (audio_device, buffer, readcount * sizeof (short)) ;
405 { while ((readcount = sf_read_short (sndfile, buffer, BUFFER_LEN)))
406 writecount = write (audio_device, buffer, readcount * sizeof (short)) ;
509 { int thisread, readcount ;
512 readcount = (audio_data->remaining > audio_data->bufferlen) ? audio_data->bufferlen : (int) audio_data->remaining ;
515 thisread = (int) sf_read_short (audio_data->sndfile, lpData, readcount) ;
681 int k, readcount ;
717 while ((readcount = sf_read_short (sndfile, buffer, BUFFER_LEN)))
718 sio_write (hdl, buffer, readcount * sizeof (short)) ;