Lines Matching refs:total
204 { int count, total = 0, indx = 0 ; in g72x_read_block() local
209 return total ; in g72x_read_block()
221 total = indx ; in g72x_read_block()
224 return total ; in g72x_read_block()
231 sf_count_t total = 0 ; in g72x_read_s() local
242 total += count ; in g72x_read_s()
249 return total ; in g72x_read_s()
258 sf_count_t total = 0 ; in g72x_read_i() local
271 ptr [total + k] = arith_shift_left (sptr [k], 16) ; in g72x_read_i()
273 total += count ; in g72x_read_i()
279 return total ; in g72x_read_i()
288 sf_count_t total = 0 ; in g72x_read_f() local
303 ptr [total + k] = normfact * sptr [k] ; in g72x_read_f()
305 total += count ; in g72x_read_f()
311 return total ; in g72x_read_f()
320 sf_count_t total = 0 ; in g72x_read_d() local
335 ptr [total + k] = normfact * (double) (sptr [k]) ; in g72x_read_d()
337 total += count ; in g72x_read_d()
343 return total ; in g72x_read_d()
449 { int count, total = 0, indx = 0 ; in g72x_write_block() local
460 total = indx ; in g72x_write_block()
466 return total ; in g72x_write_block()
473 sf_count_t total = 0 ; in g72x_write_s() local
484 total += count ; in g72x_write_s()
490 return total ; in g72x_write_s()
499 sf_count_t total = 0 ; in g72x_write_i() local
510 sptr [k] = ptr [total + k] >> 16 ; in g72x_write_i()
513 total += count ; in g72x_write_i()
518 return total ; in g72x_write_i()
527 sf_count_t total = 0 ; in g72x_write_f() local
541 sptr [k] = psf_lrintf (normfact * ptr [total + k]) ; in g72x_write_f()
544 total += count ; in g72x_write_f()
550 return total ; in g72x_write_f()
559 sf_count_t total = 0 ; in g72x_write_d() local
573 sptr [k] = psf_lrint (normfact * ptr [total + k]) ; in g72x_write_d()
576 total += count ; in g72x_write_d()
582 return total ; in g72x_write_d()