Lines Matching refs:bytecnt
68 static off_t bytecnt; /* Byte count to split on. */ variable
123 error = expand_number(optarg, &bytecnt); in main()
172 if (pflag && (numlines != 0 || bytecnt != 0 || chunks != 0)) in main()
177 else if (bytecnt != 0 || chunks != 0) in main()
180 if (bytecnt && chunks) in main()
186 if (bytecnt) { in main()
227 if (bcnt + len >= bytecnt) { in split1()
228 dist = bytecnt - bcnt; in split1()
232 for (C = bfr + dist; len >= bytecnt; in split1()
233 len -= bytecnt, C += bytecnt) { in split1()
239 C, bytecnt) != bytecnt) in split1()
332 bytecnt = sb.st_size / chunks; in split3()