Lines Matching defs:total
345 { sf_count_t total = 0 ;
361 count = read (psf->file.filedes, ((char*) ptr) + total, (size_t) count) ;
374 total += count ;
379 psf->pipeoffset += total ;
381 return total / bytes ;
386 { sf_count_t total = 0 ;
405 count = write (psf->file.filedes, ((const char*) ptr) + total, count) ;
418 total += count ;
423 psf->pipeoffset += total ;
425 return total / bytes ;
981 { sf_count_t total = 0 ;
998 if (ReadFile (psf->file.handle, ((char*) ptr) + total, count, &dwNumberOfBytesRead, 0) == 0)
1008 total += count ;
1013 psf->pipeoffset += total ;
1015 return total / bytes ;
1020 { sf_count_t total = 0 ;
1037 if (WriteFile (psf->file.handle, ((const char*) ptr) + total, count, &dwNumberOfBytesWritten, 0) == 0)
1047 total += count ;
1052 psf->pipeoffset += total ;
1054 return total / bytes ;