Lines Matching refs:total
242 { int count, total = 0, indx = 0 ; in gsm610_read_block() local
247 return total ; in gsm610_read_block()
259 total = indx ; in gsm610_read_block()
262 return total ; in gsm610_read_block()
269 sf_count_t total = 0 ; in gsm610_read_s() local
280 total += count ; in gsm610_read_s()
287 return total ; in gsm610_read_s()
296 sf_count_t total = 0 ; in gsm610_read_i() local
308 ptr [total + k] = arith_shift_left (sptr [k], 16) ; in gsm610_read_i()
310 total += count ; in gsm610_read_i()
313 return total ; in gsm610_read_i()
322 sf_count_t total = 0 ; in gsm610_read_f() local
337 ptr [total + k] = normfact * sptr [k] ; in gsm610_read_f()
339 total += count ; in gsm610_read_f()
342 return total ; in gsm610_read_f()
351 sf_count_t total = 0 ; in gsm610_read_d() local
366 ptr [total + k] = normfact * sptr [k] ; in gsm610_read_d()
368 total += count ; in gsm610_read_d()
371 return total ; in gsm610_read_d()
475 { int count, total = 0, indx = 0 ; in gsm610_write_block() local
486 total = indx ; in gsm610_write_block()
492 return total ; in gsm610_write_block()
499 sf_count_t total = 0 ; in gsm610_write_s() local
510 total += count ; in gsm610_write_s()
517 return total ; in gsm610_write_s()
526 sf_count_t total = 0 ; in gsm610_write_i() local
537 sptr [k] = ptr [total + k] >> 16 ; in gsm610_write_i()
540 total += count ; in gsm610_write_i()
543 return total ; in gsm610_write_i()
552 sf_count_t total = 0 ; in gsm610_write_f() local
566 sptr [k] = psf_lrintf (normfact * ptr [total + k]) ; in gsm610_write_f()
569 total += count ; in gsm610_write_f()
574 return total ; in gsm610_write_f()
583 sf_count_t total = 0 ; in gsm610_write_d() local
597 sptr [k] = psf_lrint (normfact * ptr [total + k]) ; in gsm610_write_d()
600 total += count ; in gsm610_write_d()
603 return total ; in gsm610_write_d()