Lines Matching refs:total
154 sf_count_t total = 0 ; in vox_read_s() local
165 total += count ; in vox_read_s()
171 return total ; in vox_read_s()
180 sf_count_t total = 0 ; in vox_read_i() local
192 ptr [total + k] = arith_shift_left (sptr [k], 16) ; in vox_read_i()
193 total += count ; in vox_read_i()
199 return total ; in vox_read_i()
208 sf_count_t total = 0 ; in vox_read_f() local
223 ptr [total + k] = normfact * (float) (sptr [k]) ; in vox_read_f()
224 total += count ; in vox_read_f()
230 return total ; in vox_read_f()
239 sf_count_t total = 0 ; in vox_read_d() local
254 ptr [total + k] = normfact * (double) (sptr [k]) ; in vox_read_d()
255 total += count ; in vox_read_d()
261 return total ; in vox_read_d()
291 sf_count_t total = 0 ; in vox_write_s() local
302 total += count ; in vox_write_s()
308 return total ; in vox_write_s()
317 sf_count_t total = 0 ; in vox_write_i() local
328 sptr [k] = ptr [total + k] >> 16 ; in vox_write_i()
330 total += count ; in vox_write_i()
336 return total ; in vox_write_i()
345 sf_count_t total = 0 ; in vox_write_f() local
359 sptr [k] = psf_lrintf (normfact * ptr [total + k]) ; in vox_write_f()
361 total += count ; in vox_write_f()
367 return total ; in vox_write_f()
376 sf_count_t total = 0 ; in vox_write_d() local
390 sptr [k] = psf_lrint (normfact * ptr [total + k]) ; in vox_write_d()
392 total += count ; in vox_write_d()
398 return total ; in vox_write_d()