Lines Matching defs:numlines
79 off_t numlines = 0; /* Line count to split on. */
90 if (numlines == 0) {
96 numlines = strtoull(p, &ep, 10);
97 if (numlines == 0 || *ep != '\0')
119 if (numlines != 0)
122 (numlines = strtoull(optarg, &ep, 10)) == 0 ||
154 if (numlines == 0)
155 numlines = DEFLINE;
167 split2(numlines);
246 split2(off_t numlines)
268 if (*Ce == '\n' && ++lcnt == numlines) {