Searched refs:line (Results 226 - 250 of 1581) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/ncurses/ncurses/base/
H A Dlib_touch.c52 is_linetouched(WINDOW *win, int line)
54 T((T_CALLED("is_linetouched(%p,%d)"), (void *) win, line));
57 if (!win || (line > win->_maxy) || (line < 0)) {
61 returnCode(win->_line[line].firstchar != _NOCHANGE ? TRUE : FALSE);
/freebsd-13-stable/tools/tools/genericize/
H A Dgenericize.pl74 my $line = $_;
81 print $line;
92 $line =~ s/$value/$ident/;
99 $line =~ s{=$old}{=$new};
115 print $line;
/freebsd-13-stable/tools/tools/mwl/mwlstats/
H A Dmain.c91 int line, omask; local
100 line = 0;
102 if (line != 0) {
117 line++;
118 if (line == 21) /* XXX tty line count */
/freebsd-13-stable/contrib/ntp/scripts/
H A Dplot_summary.in104 my $line;
121 $line = timegm(59, 59, 23, $3, $2 - 1, $1 - 1900, 0, 0, 0);
122 $line = int $line / 86400; # days relative to 1970
123 $first_day = "$1-$2-$3 ($line)" unless $day_out;
127 warn "Illegal number of fields in file $fname, line $.";
131 $_ = $Fld[1]; s/,/ /; $line .= " $_";
135 $line .= "$1 $lower_bound $upper_bound";
141 $line .= " $rms";
143 $line
[all...]
/freebsd-13-stable/stand/common/
H A Dinterp_forth.c75 char *name, *line, *tail, *cp; local
107 line = malloc(strlen(name) + len + 1);
108 strcpy(line, name);
114 strcat(line, " ");
115 strncat(line, cp, len);
123 line = malloc(strlen(name) + len + 2);
124 strcpy(line, name);
126 strcat(line, " ");
127 strncat(line, tail, len);
131 DPRINTF("cmd '%s'", line);
301 bf_run(const char *line) argument
380 int prevsrcid, fd, line; local
[all...]
/freebsd-13-stable/contrib/bc/tests/
H A Derrors.sh88 line="last"
89 printf '%s\n' "$line" | "$exe" "$@" "-lw" 2> "$out" > /dev/null
96 checkerrtest "$d" "1" "$line" "$out" "$exebase"
107 while read -r line; do
111 printf '%s\n' "$line" | "$exe" "$@" "$options" 2> "$out" > /dev/null
114 checkerrtest "$d" "$err" "$line" "$out" "$exebase"
/freebsd-13-stable/contrib/ipfilter/lib/
H A Drwlock_emul.c15 void eMrwlock_read_enter(rw, file, line)
18 int line;
33 rw->eMrw_heldat = line;
37 void eMrwlock_write_enter(rw, file, line)
40 int line;
55 rw->eMrw_heldat = line;
59 void eMrwlock_try_upgrade(rw, file, line)
62 int line;
77 rw->eMrw_heldat = line;
80 void eMrwlock_downgrade(rw, file, line)
[all...]
/freebsd-13-stable/bin/sh/tests/parser/
H A DMakefile68 ${PACKAGE}FILES+= line-cont1.0
69 ${PACKAGE}FILES+= line-cont2.0
70 ${PACKAGE}FILES+= line-cont3.0
71 ${PACKAGE}FILES+= line-cont4.0
72 ${PACKAGE}FILES+= line-cont5.0
73 ${PACKAGE}FILES+= line-cont6.0
74 ${PACKAGE}FILES+= line-cont7.0
75 ${PACKAGE}FILES+= line-cont8.0
76 ${PACKAGE}FILES+= line-cont9.0
77 ${PACKAGE}FILES+= line
[all...]
/freebsd-13-stable/contrib/ncurses/ncurses/widechar/
H A Dlib_hline_set.c53 struct ldat *line = &(win->_line[win->_cury]); local
61 CHANGED_RANGE(line, start, end);
70 line->text[end] = wch;
H A Dlib_vline_set.c68 struct ldat *line = &(win->_line[end]); local
69 line->text[col] = wch;
70 CHANGED_CELL(line, col);
/freebsd-13-stable/usr.sbin/chkgrp/
H A Dchkgrp.c64 char *line; local
91 /* check line by line */
93 if ((line = fgetln(gf, &len)) == NULL)
95 if (len > 0 && line[len - 1] != '\n') {
96 warnx("%s: line %d: no newline character", gfn, n);
99 while (len && isspace(line[len-1]))
103 for (p = line; p < line + len; p++)
109 * Hack: special case for + line
[all...]
/freebsd-13-stable/tests/sys/cddl/zfs/tests/history/
H A Dhistory_common.kshlib87 # Plus enter in the end of line
113 typeset line
115 while read line; do
116 # Ignore the first line and empty line
117 if [[ $n -eq 0 || -z $line ]]; then
120 $ECHO ${line#* } >> $outfile
208 # in verify_history. It returns whether the line matches (1==true).
211 typeset line=$1
217 log_note "Line: '$line'"
[all...]
/freebsd-13-stable/sys/kern/
H A Dkern_mutex.c258 __mtx_lock_flags(volatile uintptr_t *c, int opts, const char *file, int line) argument
268 curthread, m->lock_object.lo_name, file, line));
270 ("mtx_lock() of destroyed mutex @ %s:%d", file, line));
273 file, line)); local
275 LOP_NEWORDER | LOP_EXCLUSIVE, file, line, NULL);
280 _mtx_lock_sleep(m, v, opts, file, line);
283 m, 0, 0, file, line);
285 line);
287 file, line);
292 __mtx_unlock_flags(volatile uintptr_t *c, int opts, const char *file, int line) argument
302 file, line)); local
317 __mtx_lock_spin_flags(volatile uintptr_t *c, int opts, const char *file, int line) argument
331 m->lock_object.lo_name, file, line)); local
358 __mtx_trylock_spin_flags(volatile uintptr_t *c, int opts, const char *file, int line) argument
372 m->lock_object.lo_name, file, line)); local
386 __mtx_unlock_spin_flags(volatile uintptr_t *c, int opts, const char *file, int line) argument
397 m->lock_object.lo_name, file, line)); local
435 file, line)); local
473 _mtx_trylock_flags_(volatile uintptr_t *c, int opts, const char *file, int line) argument
489 __mtx_lock_sleep(volatile uintptr_t *c, uintptr_t v, int opts, const char *file, int line) argument
700 _mtx_lock_spin_cookie(volatile uintptr_t *c, uintptr_t v, int opts, const char *file, int line) argument
802 thread_lock_validate(struct mtx *m, int opts, const char *file, int line) argument
809 m->lock_object.lo_name, file, line)); local
823 _thread_lock(struct thread *td, int opts, const char *file, int line) argument
860 thread_lock_flags_(struct thread *td, int opts, const char *file, int line) argument
1010 __mtx_unlock_sleep(volatile uintptr_t *c, uintptr_t v, int opts, const char *file, int line) argument
1072 __mtx_assert(const volatile uintptr_t *c, int what, const char *file, int line) argument
[all...]
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Ddeptgt.exp1 make: "deptgt.mk" line 10: warning: Extra target ignored
2 make: "deptgt.mk" line 28: Unassociated shell command ": command3 # parse error, since targets == NULL"
11 make: "deptgt.mk" line 46: Unknown modifier 'Z'
H A Ddirective-for-lines.mk3 # Tests for the line numbers that are reported in .for loops.
6 # (parse.c 1.494), the line numbers for the .info directives and error
21 multi-line
H A Dopt-var-expanded.mk3 # Tests for the -v command line option.
H A Dopt-var-literal.mk3 # Tests for the -V command line option.
H A Dvarmod-sysv.exp2 make: "varmod-sysv.mk" line 214: Malformed conditional (${word214:L:from${:D=}to})
/freebsd-13-stable/contrib/kyua/cli/
H A Dcmd_about.cpp83 std::string line; local
85 while (std::getline(input, line).good()) {
86 ui->out(line);
90 while (std::getline(input, line).good()) {
91 if (filter.match(line)) {
92 ui->out(line);
115 /// \param cmdline Representation of the command line to the subcommand.
/freebsd-13-stable/sys/contrib/openzfs/lib/libshare/os/freebsd/
H A Dnfs.c102 * Read one line from a file. Skip comments, empty lines and a line with a
110 static char line[MAXLINESIZE]; local
117 s = fgets(line, sizeof (line), fd);
121 if (line[0] == '\n' || line[0] == '#')
123 len = strlen(line);
124 if (line[len - 1] == '\n')
125 line[le
234 char *line; local
367 char *s, last, line[MAXLINESIZE]; local
[all...]
/freebsd-13-stable/crypto/openssl/crypto/perlasm/
H A Dppc-xlate.pl112 my $line = join(",",@_);
113 if ($line =~ /^"(.*)"$/)
303 while($line=<>) {
305 $line =~ s|[#!;].*$||; # get rid of asm-style comments...
306 $line =~ s|/\*.*\*/||; # ... and C-style comments...
307 $line =~ s|^\s+||; # ... and skip white spaces in beginning...
308 $line =~ s|\s+$||; # ... and at the end
311 $line =~ s|\.L(\w+)|L$1|g; # common denominator for Locallabel
312 $line =~ s|\bL(\w+)|\.L$1|g if ($dotinlocallabels);
316 $line
[all...]
/freebsd-13-stable/crypto/openssl/engines/
H A De_ossltest_err.c58 static void ERR_OSSLTEST_error(int function, int reason, char *file, int line) argument
62 ERR_PUT_error(lib_code, function, reason, file, line);
/freebsd-13-stable/libexec/rc/rc.d/
H A Dtmp43 while read line; do
44 case $line in
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cpp43 char *file_buf, uptr file_siz, int *line,
63 int line, int column) {
78 info->line = line;
95 int line, col; local
98 sizeof(file_buf), &line, &col)) {
101 frame->info.line = line;
42 __tsan_symbolize_external(uptr pc, char *func_buf, uptr func_siz, char *file_buf, uptr file_siz, int *line, int *col) argument
62 AddFrame(void *ctx, const char *function_name, const char *file, int line, int column) argument
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_create/
H A Dzpool_create_features_005_pos.ksh51 zpool get all ${TESTPOOL} | grep feature@ | while read line; do
52 set -- $(echo "${line}")

Completed in 281 milliseconds

1234567891011>>