Lines Matching refs:total
321 { int count, total = 0, indx = 0 ; in msadpcm_read_block() local
326 return total ; in msadpcm_read_block()
331 return total ; in msadpcm_read_block()
339 total = indx ; in msadpcm_read_block()
342 return total ; in msadpcm_read_block()
349 sf_count_t total = 0 ; in msadpcm_read_s() local
361 total += count ; in msadpcm_read_s()
367 return total ; in msadpcm_read_s()
376 sf_count_t total = 0 ; in msadpcm_read_i() local
391 ptr [total + k] = arith_shift_left (sptr [k], 16) ; in msadpcm_read_i()
392 total += count ; in msadpcm_read_i()
397 return total ; in msadpcm_read_i()
406 sf_count_t total = 0 ; in msadpcm_read_f() local
423 ptr [total + k] = normfact * (float) (sptr [k]) ; in msadpcm_read_f()
424 total += count ; in msadpcm_read_f()
429 return total ; in msadpcm_read_f()
438 sf_count_t total = 0 ; in msadpcm_read_d() local
455 ptr [total + k] = normfact * (double) (sptr [k]) ; in msadpcm_read_d()
456 total += count ; in msadpcm_read_d()
462 return total ; in msadpcm_read_d()
649 { int count, total = 0, indx = 0 ; in msadpcm_write_block() local
657 …memcpy (&(pms->samples [pms->samplecount * pms->channels]), &(ptr [total]), count * sizeof (short)… in msadpcm_write_block()
660 total = indx ; in msadpcm_write_block()
666 return total ; in msadpcm_write_block()
673 sf_count_t total = 0 ; in msadpcm_write_s() local
684 total += count ; in msadpcm_write_s()
690 return total ; in msadpcm_write_s()
699 sf_count_t total = 0 ; in msadpcm_write_i() local
710 sptr [k] = ptr [total + k] >> 16 ; in msadpcm_write_i()
712 total += count ; in msadpcm_write_i()
717 return total ; in msadpcm_write_i()
726 sf_count_t total = 0 ; in msadpcm_write_f() local
740 sptr [k] = psf_lrintf (normfact * ptr [total + k]) ; in msadpcm_write_f()
742 total += count ; in msadpcm_write_f()
747 return total ; in msadpcm_write_f()
756 sf_count_t total = 0 ; in msadpcm_write_d() local
770 sptr [k] = psf_lrint (normfact * ptr [total + k]) ; in msadpcm_write_d()
772 total += count ; in msadpcm_write_d()
777 return total ; in msadpcm_write_d()