Lines Matching defs:count
558 int k, bufferlen, readcount, count ;
569 count = sds_read (psf, psds, iptr, readcount) ;
572 total += count ;
598 int k, bufferlen, readcount, count ;
615 count = sds_read (psf, psds, iptr, readcount) ;
618 total += count ;
630 int k, bufferlen, readcount, count ;
647 count = sds_read (psf, psds, iptr, readcount) ;
650 total += count ;
659 { int count, total = 0 ;
670 count = (psds->samplesperblock - psds->read_count) ;
671 count = (len - total > count) ? count : len - total ;
673 memcpy (&(ptr [total]), &(psds->read_samples [psds->read_count]), count * sizeof (int)) ;
674 total += count ;
675 psds->read_count += count ;
900 int k, bufferlen, writecount, count ;
914 count = sds_write (psf, psds, iptr, writecount) ;
915 total += count ;
942 int k, bufferlen, writecount, count ;
962 count = sds_write (psf, psds, iptr, writecount) ;
963 total += count ;
975 int k, bufferlen, writecount, count ;
995 count = sds_write (psf, psds, iptr, writecount) ;
996 total += count ;
1005 { int count, total = 0 ;
1008 { count = psds->samplesperblock - psds->write_count ;
1009 if (count > len - total)
1010 count = len - total ;
1012 memcpy (&(psds->write_samples [psds->write_count]), &(ptr [total]), count * sizeof (int)) ;
1013 total += count ;
1014 psds->write_count += count ;