Lines Matching full:numbytes
112 size_t TotalRemainingBytes, NumBytes, ibuff_siz, obuff_siz;
118 NumBytes = 0;
148 NumBytes = ibuff_siz;
149 buff_curr += NumBytes;
152 NumBytes = TotalRemainingBytes;
157 format_str(NumBytes, ibuff, ibuff_siz, obuff,
162 format_raw(NumBytes, ibuff, obuff, obuff_siz);
178 ssize_t NumBytes = 0;
208 NumBytes = Read(fd, buff, args->htrsiz * BLK_SIZE);
209 if ((NumBytes > args->htrsiz * BLK_SIZE) || (NumBytes < 0)) {
214 dump_data(stdout, buff, NumBytes, 16, 0, FMT_STR);
215 TotalBytes += (OFF_T) NumBytes;
216 } while ((TotalBytes < (args->htrsiz * BLK_SIZE)) && (NumBytes > 0));