• Home
  • Raw
  • Download

Lines Matching refs:total

565 	sf_count_t	total = 0 ;  in host_read_d2s()  local
580 convert (ubuf.dbuf, readcount, ptr + total, scale) ; in host_read_d2s()
581 total += readcount ; in host_read_d2s()
587 return total ; in host_read_d2s()
595 sf_count_t total = 0 ; in host_read_d2i() local
610 convert (ubuf.dbuf, readcount, ptr + total, scale) ; in host_read_d2i()
611 total += readcount ; in host_read_d2i()
617 return total ; in host_read_d2i()
624 sf_count_t total = 0 ; in host_read_d2f() local
636 d2f_array (ubuf.dbuf, readcount, ptr + total) ; in host_read_d2f()
637 total += readcount ; in host_read_d2f()
643 return total ; in host_read_d2f()
649 sf_count_t readcount, total = 0 ; in host_read_d() local
667 endswap_double_array (ptr + total, bufferlen) ; in host_read_d()
669 total += bufferlen ; in host_read_d()
673 return total ; in host_read_d()
680 sf_count_t total = 0 ; in host_write_s2d() local
690 s2d_array (ptr + total, ubuf.dbuf, bufferlen, scale) ; in host_write_s2d()
693 double64_peak_update (psf, ubuf.dbuf, bufferlen, total / psf->sf.channels) ; in host_write_s2d()
699 total += writecount ; in host_write_s2d()
705 return total ; in host_write_s2d()
712 sf_count_t total = 0 ; in host_write_i2d() local
721 i2d_array (ptr + total, ubuf.dbuf, bufferlen, scale) ; in host_write_i2d()
724 double64_peak_update (psf, ubuf.dbuf, bufferlen, total / psf->sf.channels) ; in host_write_i2d()
730 total += writecount ; in host_write_i2d()
736 return total ; in host_write_i2d()
743 sf_count_t total = 0 ; in host_write_f2d() local
750 f2d_array (ptr + total, ubuf.dbuf, bufferlen) ; in host_write_f2d()
753 double64_peak_update (psf, ubuf.dbuf, bufferlen, total / psf->sf.channels) ; in host_write_f2d()
759 total += writecount ; in host_write_f2d()
765 return total ; in host_write_f2d()
772 sf_count_t total = 0 ; in host_write_d() local
786 endswap_double_copy (ubuf.dbuf, ptr + total, bufferlen) ; in host_write_d()
789 total += writecount ; in host_write_d()
795 return total ; in host_write_d()
805 sf_count_t total = 0 ; in replace_read_d2s() local
821 d2s_array (ubuf.dbuf, readcount, ptr + total, scale) ; in replace_read_d2s()
822 total += readcount ; in replace_read_d2s()
828 return total ; in replace_read_d2s()
835 sf_count_t total = 0 ; in replace_read_d2i() local
851 d2i_array (ubuf.dbuf, readcount, ptr + total, scale) ; in replace_read_d2i()
852 total += readcount ; in replace_read_d2i()
858 return total ; in replace_read_d2i()
865 sf_count_t total = 0 ; in replace_read_d2f() local
879 memcpy (ptr + total, ubuf.dbuf, bufferlen * sizeof (double)) ; in replace_read_d2f()
881 total += readcount ; in replace_read_d2f()
887 return total ; in replace_read_d2f()
894 sf_count_t total = 0 ; in replace_read_d() local
909 memcpy (ptr + total, ubuf.dbuf, readcount * sizeof (double)) ; in replace_read_d()
911 total += readcount ; in replace_read_d()
917 return total ; in replace_read_d()
924 sf_count_t total = 0 ; in replace_write_s2d() local
933 s2d_array (ptr + total, ubuf.dbuf, bufferlen, scale) ; in replace_write_s2d()
936 double64_peak_update (psf, ubuf.dbuf, bufferlen, total / psf->sf.channels) ; in replace_write_s2d()
944 total += writecount ; in replace_write_s2d()
950 return total ; in replace_write_s2d()
957 sf_count_t total = 0 ; in replace_write_i2d() local
966 i2d_array (ptr + total, ubuf.dbuf, bufferlen, scale) ; in replace_write_i2d()
969 double64_peak_update (psf, ubuf.dbuf, bufferlen, total / psf->sf.channels) ; in replace_write_i2d()
977 total += writecount ; in replace_write_i2d()
983 return total ; in replace_write_i2d()
990 sf_count_t total = 0 ; in replace_write_f2d() local
997 f2d_array (ptr + total, ubuf.dbuf, bufferlen) ; in replace_write_f2d()
1005 total += writecount ; in replace_write_f2d()
1011 return total ; in replace_write_f2d()
1018 sf_count_t total = 0 ; in replace_write_d() local
1030 memcpy (ubuf.dbuf, ptr + total, bufferlen * sizeof (double)) ; in replace_write_d()
1038 total += writecount ; in replace_write_d()
1044 return total ; in replace_write_d()