Lines Matching defs:count

578 	int				count = 0, trunc_8to4 = SF_FALSE ;
613 count += 4 ;
619 count += 1 ;
630 count += 2 ;
641 count += 3 ;
652 count += 4 ;
659 count += 8 ;
663 count += 8 ;
668 count += 4 ;
673 count += 4 ;
685 count += 4 ;
695 count += 8 ;
714 count += 4 + size ;
733 count += 4 + size ;
750 count += 1 + size ;
762 count += size ;
771 count += size ;
783 count += 16 ;
793 count += size ;
813 return count ;
865 { int count = 0 ;
868 return count ;
871 { count = psf_fread (psf->header.ptr + psf->header.end, 1, bytes - (psf->header.end - psf->header.indx), psf) ;
872 if (count != bytes - (int) (psf->header.end - psf->header.indx))
873 { psf_log_printf (psf, "Error : psf_fread returned short count.\n") ;
874 return count ;
876 psf->header.end += count ;
992 int byte_count = 0, count = 0 ;
1118 count = va_arg (argptr, size_t) ;
1119 memset (charptr, 0, count) ;
1120 byte_count += header_read (psf, charptr, count) ;
1125 count = va_arg (argptr, size_t) ;
1126 memset (charptr, 0, count) ;
1128 if (psf->header.indx + count >= psf->header.len && psf_bump_header_allocation (psf, count))
1131 byte_count += header_gets (psf, charptr, count) ;
1147 count = va_arg (argptr, size_t) ;
1148 header_seek (psf, count, SEEK_SET) ;
1149 byte_count = count ;
1153 count = va_arg (argptr, size_t) ;
1154 header_seek (psf, count, SEEK_CUR) ;
1155 byte_count += count ;
1319 #define SF_CUES_VAR_SIZE(count) (sizeof (SF_CUES_0) + count * sizeof (SF_CUE_POINT))
1474 int k, count ;
1487 count = 4 + (value & 7) ;
1488 for (k = 0 ; k < count ; k++)
1547 { sf_count_t count, readlen, total = 0 ;
1559 while ((count = psf->read_int (psf, ubuf.ibuf, readlen)) > 0)
1560 total += count ;
1677 psf_f2s_array (const float *src, short *dest, int count, int normalize)
1681 for (int i = 0 ; i < count ; i++)
1688 psf_f2s_clip_array (const float *src, short *dest, int count, int normalize)
1693 for (int i = 0 ; i < count ; i++)
1711 psf_d2s_array (const double *src, short *dest, int count, int normalize)
1715 for (int i = 0 ; i < count ; i++)
1722 psf_d2s_clip_array (const double *src, short *dest, int count, int normalize)
1727 for (int i = 0 ; i < count ; i++)
1746 psf_f2i_array (const float *src, int *dest, int count, int normalize)
1750 for (int i = 0 ; i < count ; i++)
1757 psf_f2i_clip_array (const float *src, int *dest, int count, int normalize)
1762 for (int i = 0 ; i < count ; i++)
1784 psf_d2i_array (const double *src, int *dest, int count, int normalize)
1788 for (int i = 0 ; i < count ; i++)
1795 psf_d2i_clip_array (const double *src, int *dest, int count, int normalize)
1800 for (int i = 0 ; i < count ; i++)