HomeSort by: relevance | last modified time | path
    Searched defs:line (Results 1 - 25 of 319) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/distrib/notes/common/
extract-contrib-string.pl 90 print "XXX $fn line $.: $msg\n"
121 line: label
129 last line;
178 last line;
287 $key =~ s/\n/ /g; # ignore difference in line breaks
313 last line;
  /src/tests/lib/libc/stdio/
h_testnumbers.c 8 char line[1024]; local in function:main
10 while (fgets(line, sizeof(line), stdin) != NULL) {
11 if ((size_t)atoi(line) != i)
12 errx(EXIT_FAILURE, "bad line \"%s\", expected %zu\n",
13 line, i);
  /src/tests/usr.bin/nbperf/
hash_driver.c 42 char *line = NULL; local in function:main
46 while ((len = getline(&line, &buflen, stdin)) > 0) {
47 if (len && line[len - 1] == '\n')
49 printf("%" PRId32 "\n", hash(line, len));
51 free(line);
  /src/sys/modules/examples/readhappy_mpsafe/
test_readhappy.c 52 int line; local in function:read_happy
55 fscanf(fp, "%d", &line);
56 printf("%d\n", line);
  /src/usr.sbin/gspa/gspa/
gsp_gram.y 69 %start line
78 line : label ID operands { statement($2, $3); } label
  /src/tests/usr.bin/indent/
opt_v.c 59 /* $ XXX: If they are broken, -nv does NOT output 'Line broken'. */
68 * the line numbers were counted wrong.
72 int line = 1;
73 int line = 2;
74 int line = 3;
76 int line = 5; variable in typeref:typename:int
  /src/share/man/tools/
line.c 1 /* $NetBSD: line.c,v 1.2 1998/01/09 08:05:00 perry Exp $ */
3 /* @(#)line.c 1.1 */
5 This program reads a single line from the standard input
15 char line[LSIZE]; local in function:main
19 linep = line;
20 linend = line + LSIZE;
26 write (1, line, LSIZE);
27 linep = line;
31 write (1, line, linep-line);
    [all...]
  /src/sys/arch/alpha/pci/
pci_up1000.c 93 int line = pa->pa_intrline; local in function:ALPHA_PCI_INTR_INIT
108 * The console places the interrupt mapping in the "line" value.
111 if (line == 0xff) {
117 if (line < 0 || line > 15) {
118 printf("%s: bad ISA IRQ (%d)\n", __func__, line);
121 if (line == 2) {
123 line = 9;
126 alpha_pci_intr_handle_init(ihp, line, 0);
  /src/sys/arch/mvme68k/stand/bootst/
boot.c 47 char line[80]; variable in typeref:typename:char[80]
65 kgets(line, sizeof(line));
66 if (line[0])
67 file = line;
  /src/sys/arch/mvme68k/stand/netboot/
boot.c 47 char line[80]; variable in typeref:typename:char[80]
69 kgets(line, sizeof(line));
70 if (line[0]) {
71 bugargs.arg_start = line;
72 cp = line;
73 while (cp < (line + sizeof(line) - 1) && *cp)
  /src/sys/arch/sun68k/stand/tapeboot/
boot.c 55 char line[80]; variable in typeref:typename:char[80]
101 kgets(line, sizeof(line));
102 if (line[0])
103 file = line;
  /src/sys/dev/raidframe/
rf_shutdown.c 61 void *arg, char *file, int line)
80 ent->line = line;
92 int line; local in function:rf_ShutdownList
99 line = r->line;
102 printf("call shutdown, created %s:%d\n", file, line);
108 printf("completed shutdown, created %s:%d\n", file, line);
rf_shutdown.h 58 int line; member in struct:RF_ShutdownList_s
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_report.h 29 uptr line; member in struct:__asan::StackVarDescr
  /src/usr.bin/cmp/
special.c 53 off_t byte, line; local in function:c_special
63 for (byte = line = 1; skip1--; byte++) {
68 line++;
70 for (byte = line = 1; skip2--; byte++) {
75 line++;
78 for (byte = line = 1;; ++byte) {
89 diffmsg(file1, file2, byte, line);
93 ++line;
98 errmsg(file1, byte, line);
100 errmsg(file2, byte, line);
    [all...]
regular.c 59 off_t byte, length, line; local in function:c_regular
73 byte = line = 1;
106 diffmsg(file1, file2, byte, line);
114 ++line;
124 eofmsg(len1 > len2 ? file2 : file1, byte, line);
  /src/usr.bin/make/unit-tests/
sh-jobs.mk 10 all: .PHONY comment .WAIT comment-with-followup-line .WAIT no-comment
25 comment-with-followup-line: .PHONY
30 # the exit status of every makefile line.
  /src/usr.bin/systat/
keyboard.c 58 char *line; local in function:keyboard
65 if ((line = malloc(linesz)) == NULL) {
133 isspace((unsigned char)line[col]))
137 !isspace((unsigned char)line[col]))
152 line[col] = rch;
158 line[col] = '\0';
161 line[i] = tolower((unsigned char)line[i]);
162 command(line + 1);
  /src/usr.sbin/mtree/
excludes.c 78 char *line; local in function:read_excludes_file
85 while ((line = fparseln(fp, NULL, NULL, NULL,
88 if (line[0] == '\0')
94 e->glob = line;
  /src/sys/arch/evbppc/pmppc/pci/
pci_machdep.c 152 int line = pa->pa_intrline; local in function:pmppc_pci_intr_map
164 if (line == 255) {
168 /*printf("pci_intr_map pin=%d line=%d\n", pin, line);*/
170 switch (line & 3) { /* XXX what should this be? */
187 int line; local in function:pmppc_pci_conf_interrupt
189 line = (swiz + dev) & 3;
191 if (bus==3&&dev==2&&pin==1&&swiz==3) line=2;
193 printf("pci_conf_interrupt: bus=%d dev=%d pin=%d swiz=%d => line=%d\n",
194 bus, dev, pin, swiz, line);
    [all...]
  /src/lib/libc/net/
protoent.h 43 char *line; member in struct:protoent_data
  /src/games/colorbars/
colorbars.c 100 for (int line = 0; line < LINES - 1; line++) local in function:main
102 mvprintw(line, xoffs + xpos, " ");
107 for (size_t line = 0; line < lengths[i]; line++) local in function:main
108 mvprintw(line + labeloffsety, xoffs, "%c",
109 colorInfo[i].name[line]);
  /src/games/hack/
hack.rumors.c 99 char line[COLNO]; local in function:skipline
101 if (!fgets(line, sizeof(line), rumf))
103 if (strchr(line, '\n'))
111 char line[COLNO]; local in function:outline
113 if (!fgets(line, sizeof(line), rumf))
115 if ((ep = strchr(line, '\n')) != 0)
118 pline("%s", line);
  /src/games/sail/
lo_main.c 71 int line; local in function:lo_curses
99 line = 0;
102 line < LINES - 2) {
110 mvprintw(line, 0,
114 line++;
117 mvprintw(line+1, 0, "%d people have played. Press any key.", npeople);
  /src/lib/libc/citrus/
citrus_lookup_factory.c 56 convert_line(struct _citrus_db_factory *df, const char *line, size_t len)
62 p = memchr(line, T_COMM, len);
64 len = p - line;
67 line = _bcs_skip_ws_len(line, &len);
70 p = _bcs_skip_nonws_len(line, &len);
71 if (p==line)
73 snprintf(key, sizeof(key), "%.*s", (int)(p-line), line);
77 line = _bcs_skip_ws_len(p, &len)
104 char *line; local in function:_citrus_lookup_factory_convert
    [all...]

Completed in 21 milliseconds

1 2 3 4 5 6 7 8 91011>>