Lines Matching refs:bytecnt
65 static off_t bytecnt; /* Byte count to split on. */ variable
126 if (expand_number(optarg, &bytecnt) != 0) { in main()
190 if (pflag && (numlines != 0 || bytecnt != 0 || chunks != 0)) in main()
195 else if (bytecnt != 0 || chunks != 0) in main()
198 if (bytecnt != 0 && chunks != 0) in main()
204 if (bytecnt != 0) { in main()
246 if (bcnt + len >= bytecnt) { in split1()
247 dist = bytecnt - bcnt; in split1()
251 for (C = bfr + dist; len >= bytecnt; in split1()
252 len -= bytecnt, C += bytecnt) { in split1()
257 if (write(ofd, C, bytecnt) != bytecnt) in split1()
350 bytecnt = sb.st_size / chunks; in split3()