Home
last modified time | relevance | path

Searched refs:numlines (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/usr.bin/split/
H A Dsplit.c50 long numlines; /* Line count to split on. */ variable
82 if (numlines == 0) { in main()
85 numlines = strtol(++p, &ep, 10); in main()
87 numlines = in main()
89 if (numlines <= 0 || *ep) in main()
124 if (numlines != 0) in main()
126 if ((numlines = strtol(optarg, &ep, 10)) <= 0 || *ep) in main()
148 if (pflag && (numlines != 0 || bytecnt != 0)) in main()
151 if (numlines == 0) in main()
152 numlines = DEFLINE; in main()
[all …]
/openbsd-src/gnu/usr.bin/cvs/diff/
H A Ddiff3.c985 int numlines; local
999 numlines = D_NUMLINES (result, FILE0);
1000 if (numlines)
1002 D_LINEARRAY (result, FILE0) = ALLOCATE (numlines, char *);
1003 D_LENARRAY (result, FILE0) = ALLOCATE (numlines, size_t);
1004 bzero (D_LINEARRAY (result, FILE0), (numlines * sizeof (char *)));
1005 bzero (D_LENARRAY (result, FILE0), (numlines * sizeof (size_t)));
1013 numlines = D_NUMLINES (result, FILE1);
1014 if (numlines)
1016 D_LINEARRAY (result, FILE1) = ALLOCATE (numlines, char *);
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Encode/
H A DMakefile.PL223 my $numlines = 1;
231 if ( length($str)-$lengthsofar > 128*$numlines )
234 $numlines++;
/openbsd-src/gnu/usr.bin/perl/cpan/Encode/Encode/
H A DMakefile_PL.e2x161 my $numlines = 1;
168 if ( length($str)-$lengthsofar > 128*$numlines )
171 $numlines++;