Lines Matching refs:readcount
153 int readcount, count ;
161 { readcount = (len > 0x10000000) ? 0x10000000 : (int) len ;
163 count = vox_read_block (psf, pvox, ptr, readcount) ;
167 if (count != readcount)
179 int k, bufferlen, readcount, count ;
189 { readcount = (len >= bufferlen) ? bufferlen : (int) len ;
190 count = vox_read_block (psf, pvox, sptr, readcount) ;
191 for (k = 0 ; k < readcount ; k++)
194 len -= readcount ;
195 if (count != readcount)
207 int k, bufferlen, readcount, count ;
220 { readcount = (len >= bufferlen) ? bufferlen : (int) len ;
221 count = vox_read_block (psf, pvox, sptr, readcount) ;
222 for (k = 0 ; k < readcount ; k++)
225 len -= readcount ;
226 if (count != readcount)
238 int k, bufferlen, readcount, count ;
251 { readcount = (len >= bufferlen) ? bufferlen : (int) len ;
252 count = vox_read_block (psf, pvox, sptr, readcount) ;
253 for (k = 0 ; k < readcount ; k++)
256 len -= readcount ;
257 if (count != readcount)