Searched refs:lines (Results 76 - 100 of 197) sorted by relevance

12345678

/freebsd-13-stable/contrib/diff/src/
H A Dio.c40 /* Lines are put into equivalence classes of lines that match in lines_differ.
47 hash_value hash; /* Hash of lines in this class. */
53 buckets[-1] is reserved for incomplete lines. */
217 /* Split the file into lines, simultaneously computing the equivalence
434 /* Reuse existing class if lines_differ reports the lines
438 /* Reuse existing equivalence class if the lines are identical.
477 /* Record the line start for lines in the suffix that we care about.
478 Record one more line start than lines,
560 /* We have found N lines in a buffer of size S; guess the
561 proportionate number of lines tha
576 lin i, lines; local
[all...]
H A Ddiff3.c74 char **lines[2]; /* The actual lines (may contain nulls) */
84 char **lines[3]; /* The actual lines (may contain nulls) */
101 ((diff)->lines[filenum][linenum])
107 ((diff)->lines[filenum])
142 preserve the lines which would normally be deleted from
146 /* Use a tab to align output lines (-T). */
508 Same number of lines? If so, do a set of memcmp's (if
664 /* Set up corresponding lines correctl
73 char **lines[2]; /* The actual lines (may contain nulls) */ member in struct:diff_block
83 char **lines[3]; /* The actual lines (may contain nulls) */ member in struct:diff3_block
[all...]
/freebsd-13-stable/crypto/heimdal/appl/ftp/ftp/
H A Dmain.c298 /* XXX will break on long lines */
541 int columns, width = 0, lines; local
554 lines = (NCMDS + columns - 1) / columns;
555 for (i = 0; i < lines; i++) {
557 c = cmdtab + j * lines + i;
565 if (c + lines >= &cmdtab[NCMDS]) {
/freebsd-13-stable/contrib/kyua/cli/
H A Dcmd_report.cpp138 /// \param indent Prefix for the lines to print. Continuation lines
146 const std::vector< std::string > lines = text::split(value, '\n'); local
147 if (lines.size() == 0) {
150 _output << F("%s%s=%s\n") % indent % name % lines[0]; local
152 i < lines.size(); ++i) {
153 _output << F("%s%s%s\n") % indent % indent % lines[i]; local
/freebsd-13-stable/usr.bin/mail/
H A Dcmd1.c361 * Print the top so many lines of each desired message.
362 * The number of lines is taken from the variable "toplines"
371 int c, topl, lines, lineb; local
393 for (lines = 0; lines < c && lines <= topl; lines++) {
/freebsd-13-stable/usr.bin/grep/
H A Dutil.c63 long long tail; /* Number of trailing lines to record */
64 int last_outed; /* Number of lines since last output */
238 * Enqueue non-matching lines for -B context. If we're not
258 * lines until we've lost our tail.
275 /* XXX TODO: Decrement by number of matched lines */
288 * passing the lines to procline().
298 int lines; local
341 for (lines = 0; lines == 0 || !(lflag || qflag); ) {
381 ++lines;
[all...]
/freebsd-13-stable/usr.bin/ncal/
H A Dncal.c47 #undef lines /* term.h defines this */ macro
62 char lines[7][MAX_WIDTH + 1]; member in struct:monthlines
523 int n; /* number of lines to print */
667 year[j].lines[i]+1);
746 year[j].lines[i]);
816 * Fill the lines with day of month or day of year (julian day)
830 highlight(mlines->lines[i] + k,
833 memcpy(mlines->lines[i] + k + l,
836 memcpy(mlines->lines[i] + k + l, " ", dw);
838 mlines->lines[
[all...]
/freebsd-13-stable/contrib/byacc/test/
H A Dcalc1.y52 lines : /* empty */ label
53 | lines line
H A Dvarsyntax_calc1.y54 lines : // empty */ label
55 | lines line
/freebsd-13-stable/contrib/kyua/integration/
H A Dcmd_about_test.sh119 local lines="$(wc -l stdout | awk '{ print $1 }')"
120 [ "${lines}" -eq 1 ] || atf_fail "Version query returned more than one line"
/freebsd-13-stable/contrib/libedit/
H A Dfilecomplete.c543 size_t line, lines, col, cols, thisguy; local
560 /* how many lines of output, rounded up */
561 lines = (num + cols - 1) / cols;
567 * On the ith line print elements i, i+lines, i+lines*2, etc.
569 for (line = 0; line < lines; line++) {
571 thisguy = line + col * lines;
/freebsd-13-stable/sys/contrib/openzfs/cmd/zpool/
H A Dzpool_util.h87 char **lines; /* Array of lines of output, minus the column name */ member in struct:vdev_cmd_data
88 int lines_cnt; /* Number of lines in the array */
/freebsd-13-stable/contrib/subversion/subversion/libsvn_diff/
H A Dlcs.c210 prepend_lcs(svn_diff__lcs_t *lcs, apr_off_t lines, argument
216 SVN_ERR_ASSERT_NO_RETURN(lines > 0);
223 new_lcs->length = lines;
/freebsd-13-stable/contrib/openpam/t/
H A Dt_openpam_readlinev.c60 * it contained, how many lines were read (in case of quoted or escaped
64 orlv_expect(struct t_file *tf, const char **expectedv, int lines, int eof) argument
99 if (lineno != lines) {
100 t_printv("expected to advance %d lines, advanced %d lines\n",
101 lines, lineno);
117 * Commonly-used lines
164 ret = orlv_expect(tf, NULL, 0 /*lines*/, 1 /*eof*/);
177 ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
190 ret = orlv_expect(tf, NULL, 0 /*lines*/,
[all...]
/freebsd-13-stable/contrib/ntp/scripts/
H A Dsummary.in183 warn "no valid lines in $directory/$fname";
258 my @lines = ();
272 push @lines, sprintf
278 print OUTPUT sort @lines;
347 my @lines = ();
358 push @lines, sprintf
363 print sort @lines;
/freebsd-13-stable/contrib/dialog/
H A Ddialog.pl552 my ( $outtext, $i, $j, @lines, $wrap, @words, $pos, $pad );
564 @lines = split( /\n/, $intext );
566 for ( $i = 0 ; $i <= $#lines ; $i++ ) {
568 if ( $lines[$i] =~ /^>/ ) {
571 $lines[$i] =~ /^>(.*)$/;
579 @words = split( /\s+/, $lines[$i] );
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dcaching.c180 apr_array_header_t *lines; local
192 lines = svn_cstring_split(text_stats->data, "\n", FALSE, baton->pool);
194 for (i = 0; i < lines->nelts; ++i)
196 const char *line = APR_ARRAY_IDX(lines, i, const char *);
220 apr_array_header_t *lines = svn_cstring_split(text_stats->data, "\n", local
224 for (i = 0; i < lines->nelts; ++i)
226 const char *line = APR_ARRAY_IDX(lines, i, const char *);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp230 std::set<uint32_t> lines; local
231 lines.insert(line.line);
232 source_lines_seen.emplace(line.file, lines);
350 // sources lines occur in this disassembly session. We will print
351 // lines of context around a source line, but we don't want to print
397 // source lines from the function declaration until the first line
418 // Add all the lines between the function declaration and
419 // the first non-prologue source line to the list of lines
426 source_lines_to_display.lines.push_back(this_line);
430 if (source_lines_to_display.lines
[all...]
/freebsd-13-stable/contrib/subversion/subversion/svnfsfs/
H A Dstats-cmd.c116 while (last > 0 && histogram->lines[last].count == 0)
119 while (first <= last && histogram->lines[first].count == 0)
122 /* display histogram lines */
126 svn__ui64toa_sep(histogram->lines[i].sum, ',', pool),
127 (int)(histogram->lines[i].sum * 100 / histogram->total.sum),
128 svn__ui64toa_sep(histogram->lines[i].count, ',', pool),
129 (int)(histogram->lines[i].count * 100 / histogram->total.count));
/freebsd-13-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_setup.c281 /* Obtain lines/columns values from the environment and/or terminfo entry */
309 T(("screen size: terminfo lines = %d columns = %d", lines, columns));
311 *linep = (int) lines;
388 *linep = (int) lines;
406 lines = (NCURSES_INT2) (*linep);
411 OldNumber(termp, lines) = (short) (*linep);
450 int old_lines = lines;
/freebsd-13-stable/contrib/ipfilter/
H A Dradix_ipf.c1181 int lines; local
1184 lines = 0;
1191 lines++;
1192 if (lines == 1)
1195 tab = reallocarray(tab, lines + 1, sizeof(*tab));
1196 tab[lines - 1].host = strdup(line);
1197 s = strchr(tab[lines - 1].host, '/');
1199 tab[lines - 1].mask = s;
1200 tab[lines - 1].what = "d";
1204 tab[lines]
[all...]
/freebsd-13-stable/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs_util.c831 * Read lines from an open file descriptor and store them in an array of
832 * strings until EOF. lines[] will be allocated and populated with all the
833 * lines read. All newlines are replaced with NULL terminators for
834 * convenience. lines[] must be freed after use with libzfs_free_str_array().
836 * Returns the number of lines read.
839 libzfs_read_stdout_from_fd(int fd, char **lines[]) argument
860 /* Return the lines we were able to process */
873 *lines = tmp_lines;
879 char **lines[], int *lines_cnt)
889 if ((lines !
878 libzfs_run_process_impl(const char *path, char *argv[], char *env[], int flags, char **lines[], int *lines_cnt) argument
955 libzfs_run_process_get_stdout(const char *path, char *argv[], char *env[], char **lines[], int *lines_cnt) argument
966 libzfs_run_process_get_stdout_nopath(const char *path, char *argv[], char *env[], char **lines[], int *lines_cnt) argument
[all...]
/freebsd-13-stable/sys/contrib/ipfilter/netinet/
H A Dradix_ipf.c1181 int lines; local
1184 lines = 0;
1191 lines++;
1192 if (lines == 1)
1195 tab = realloc(tab, (lines + 1) * sizeof(*tab));
1196 tab[lines - 1].host = strdup(line);
1197 s = strchr(tab[lines - 1].host, '/');
1199 tab[lines - 1].mask = s;
1200 tab[lines - 1].what = "d";
1204 tab[lines]
[all...]
/freebsd-13-stable/contrib/subversion/subversion/include/private/
H A Dsvn_fs_fs_private.h101 svn_fs_fs__histogram_line_t lines[64];
100 svn_fs_fs__histogram_line_t lines[64]; member in struct:svn_fs_fs__histogram_t
/freebsd-13-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DRewriter.cpp279 SmallVector<StringRef, 4> lines; local
280 Str.split(lines, "\n");
282 for (unsigned i = 0, e = lines.size(); i != e; ++i) {
283 indentedStr += lines[i];
373 // Find where the lines start.
397 // Indent the lines between start/end offsets.

Completed in 171 milliseconds

12345678