Searched refs:getc (Results 1 - 25 of 249) sorted by relevance

12345678910

/freebsd-9.3-release/sys/boot/arm/at91/bootspi/
H A Dmain.c57 if (getc(1) == -1) {
61 Bootloader(getc);
/freebsd-9.3-release/sys/boot/arm/at91/bootiic/
H A Dmain.c48 if (getc(1) == -1)
/freebsd-9.3-release/lib/libc/stdio/
H A Dgetc.c34 static char sccsid[] = "@(#)getc.c 8.1 (Berkeley) 6/4/93";
45 #undef getc macro
49 getc(FILE *fp) function
/freebsd-9.3-release/sys/boot/arm/at91/libat91/
H A Dxmodem.c57 if ((ch = getc(TO)) == -1)
61 if ((ch = getc(TO)) == -1)
67 if ((ch = getc(TO)) == -1)
81 if (((ch = getc(TO)) == -1) || ((ch & 0xff) != ((chk >> 8) & 0xFF)))
83 if (((ch = getc(TO)) == -1) || ((ch & 0xff) != (chk & 0xFF)))
112 if (((ch = getc(1)) == -1) || (ch != SOH && ch != EOT))
H A Dgetc.c42 * int getc(int seconds)
48 getc(int seconds) function
/freebsd-9.3-release/contrib/gcc/
H A Dscan.c66 c = getc (fp);
83 c = getc (fp);
88 c = getc (fp);
93 c = getc (fp);
114 c = getc (fp);
117 c = getc (fp);
123 c = getc (fp);
132 c = getc (fp);
134 else if ((c = getc (fp)) == '/')
135 return getc (f
[all...]
/freebsd-9.3-release/contrib/nvi/catalog/
H A Ddump.c54 if ((s = getc(fp)) == EOF) \
60 if ((ch = getc(fp)) == EOF) \
67 if ((ch = getc(fp)) == EOF) \
83 if ((ch = getc(fp)) == EOF)
89 if ((ch = getc(fp)) == EOF)
/freebsd-9.3-release/usr.bin/what/
H A Dwhat.c117 while ((c = getc(in)) != EOF) {
120 if ((c = getc(in)) != '(')
122 if ((c = getc(in)) != '#')
124 if ((c = getc(in)) != ')')
128 while ((c = getc(in)) != EOF && c && c != '"' &&
/freebsd-9.3-release/contrib/libpcap/
H A Detherent.c82 c = getc(f);
95 c = getc(f);
125 c = getc(fp);
129 c = getc(fp);
134 c = getc(fp);
161 c = getc(fp);
/freebsd-9.3-release/sys/gdb/
H A Dgdb.h49 #define GDB_DBGPORT(name, probe, init, term, getc, putc) \
55 .gdb_getc = getc, \
/freebsd-9.3-release/sys/boot/i386/common/
H A Dcons.h29 int getc(int fn);
H A Dcons.c65 getc(int fn) function
89 if (ioctrl & IO_KEYBOARD && getc(1))
90 return (fn ? 1 : getc(0));
/freebsd-9.3-release/usr.bin/cmp/
H A Dspecial.c63 if (getc(fp1) == EOF)
66 if (getc(fp2) == EOF)
70 ch1 = getc(fp1);
71 ch2 = getc(fp2);
/freebsd-9.3-release/sys/boot/userboot/userboot/
H A Duserboot_cons.c78 return (CALLBACK(getc));
/freebsd-9.3-release/usr.sbin/ctm/ctm/
H A Dctm_ed.c54 c = getc(fi);
61 c = getc(fi);
72 c = getc(fi);
91 c = getc(fi);
/freebsd-9.3-release/contrib/ipfilter/tools/
H A Dlex_var.h23 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
41 getc(yyin)) == 10 ? (pos++, yylineno++, yytchar) : \
50 getc(yyin)) == 10 ? (pos++, yylineno++, yytchar) : \
/freebsd-9.3-release/contrib/groff/src/preproc/pic/
H A Dmain.cpp84 int c = getc(fp);
87 c = getc(fp);
91 c = getc(fp);
93 c = getc(fp);
95 int d = getc(fp);
108 c = getc(fp);
156 int c = getc(fp);
159 c = getc(fp);
163 c = getc(fp);
165 c = getc(f
[all...]
/freebsd-9.3-release/usr.bin/locate/locate/
H A Dfastfind.c56 p[c] = check_bigram_char(getc(fp));
57 s[c] = check_bigram_char(getc(fp));
63 for (c = getc(fp), count = 0; c != EOF; size++) {
71 for (p = path + count; (c = getc(fp)) > SWITCH; size++)
74 c = getc(fp);
163 p[c] = check_bigram_char(getc(fp));
164 s[c] = check_bigram_char(getc(fp));
200 c = getc(fp);
228 c = getc(fp);
245 c = getc(f
[all...]
/freebsd-9.3-release/contrib/groff/src/preproc/grn/
H A Dhdb.cpp186 (void) getc(file); /* eat blank */
189 int c = getc(file);
297 while ((c = getc(f)) == ' ');
299 while ((c = getc(f)) != '\n');
306 c = getc(f);
316 c = getc(f);
322 while ((c = getc(f)) == ' ');
327 c = getc(f);
337 c = getc(f);
/freebsd-9.3-release/contrib/tnftp/src/
H A Druserpass.c191 while ((c = getc(cfile)) != EOF)
207 for (i = 0; i < 8 && (c = getc(cfile)) != EOF &&
219 while ((c = getc(cfile)) != EOF && c != '\n');
236 if ((c = getc(cfile)) == EOF) {
287 while ((c = getc(cfile)) != EOF &&
294 while ((c = getc(cfile)) != EOF && c != '"') {
296 if ((c = getc(cfile)) == EOF)
306 while ((c = getc(cfile)) != EOF
309 if ((c = getc(cfile)) == EOF)
/freebsd-9.3-release/crypto/heimdal/appl/ftp/ftp/
H A Druserpass.c202 while ((c=getc(cfile)) != EOF &&
214 for (i=0; i < 8 && (c=getc(cfile)) != EOF &&
224 while ((c=getc(cfile)) != EOF && c != '\n');
238 if ((c=getc(cfile)) == EOF) {
285 while ((c = getc(cfile)) != EOF &&
292 while ((c = getc(cfile)) != EOF && c != '"') {
294 c = getc(cfile);
299 while ((c = getc(cfile)) != EOF
302 c = getc(cfile);
/freebsd-9.3-release/gnu/usr.bin/rcs/ident/
H A Dident.c96 * fixed type of variables receiving from getc() (char-->int).
204 c = getc(file);
232 while ((c = getc(fp)) != VDELIM) {
248 if ((c = getc(fp)) != ' ')
251 while( (c = getc(fp)) != KDELIM ) {
/freebsd-9.3-release/lib/libcompat/4.3/
H A Drexec.c105 while ((c = getc(cfile)) != EOF &&
112 while ((c = getc(cfile)) != EOF && c != '"') {
114 c = getc(cfile);
119 while ((c = getc(cfile)) != EOF
122 c = getc(cfile);
224 while ((c=getc(cfile)) != EOF &&
237 for (i=0; i < 8 && (c=getc(cfile)) != EOF &&
247 while ((c=getc(cfile)) != EOF && c != '\n');
261 if ((c=getc(cfile)) == EOF) {
/freebsd-9.3-release/contrib/diff/lib/
H A Dunlocked-io.h98 # undef getc macro
99 # define getc(x) getc_unlocked (x) macro
101 # define getc_unlocked(x) getc (x)
/freebsd-9.3-release/sys/dev/uart/
H A Duart_cpu.h45 int (*getc)(struct uart_bas *, struct mtx *); member in struct:uart_ops
156 res = di->ops->getc(&di->bas, NULL);
167 return (di->ops->getc(&di->bas, di->hwmtx));

Completed in 254 milliseconds

12345678910