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

123456789

/illumos-gate/usr/src/lib/libast/common/stdio/
H A Dgetc.c28 NoN(getc)
32 #undef getc
35 getc(Sfio_t* f)
37 STDIO_INT(f, "getc", int, (Sfio_t*), (f))
/illumos-gate/usr/src/boot/sys/boot/arm/at91/bootspi/
H A Dmain.c59 if (getc(1) == -1) {
63 Bootloader(getc);
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Dfgetc.c34 return(getc(fp));
H A Dgetchar.c37 return(getc(stdin));
H A Dgetc.c27 #undef getc macro
31 getc(fp) function
H A Dgetw.c44 *s++ = getc(stream);
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dfgetc.c41 #undef getc /* call the getc function not the macro */ macro
46 return (getc(iop));
H A Dgetc.c44 #undef getc macro
48 getc(FILE *iop) function
H A Dgetchar.c53 return (getc(iop));
/illumos-gate/usr/src/boot/sys/boot/arm/at91/bootiic/
H A Dmain.c50 if (getc(1) == -1)
/illumos-gate/usr/src/cmd/soelim/
H A Dsoelim.c74 c = getc(soee);
79 c = getc(soee);
84 c = getc(soee);
90 c = getc(soee);
105 c = getc(soee);
125 c = getc(soee);
/illumos-gate/usr/src/boot/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
/illumos-gate/usr/src/boot/sys/boot/i386/common/
H A Dcons.h30 int getc(int fn);
H A Dcons.c64 getc(int fn) function
88 if (ioctrl & IO_KEYBOARD && getc(1))
89 return (fn ? 1 : getc(0));
/illumos-gate/usr/src/cmd/regcmp/
H A Dregcmp.c106 while (((c = getc(iobuf)) == '\n') ||
112 while (((*name++ = c = getc(iobuf)) != ' ') &&
115 while (((c = getc(iobuf)) == ' ') || (c == '\n'));
128 while ((c = getc(iobuf)) != '\n');
132 while (gotflg || (c = getc(iobuf)) != EOF) {
138 switch (c = getc(iobuf)) {
170 while (((c = getc(iobuf)) == '\n') || (c == ' '));
218 while (++k < 4 && (c = getc(iobuf)) >= '0' && c <= '7')
221 c = getc(iobuf);
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dfile_decim.c53 current = getc(pf); /* Initialize buffer. */
60 { cp++ ; current = getc(pf) ; *cp = current ; nread++ ;} \
/illumos-gate/usr/src/cmd/ypcmd/revnetgroup/
H A Dutil.c78 while ((c = getc(fp)) != EOF) {
85 if (getc(fp) == EOF)
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Desclex.c345 switch (c = getc(Fp)) {
351 while ((c = getc(Fp)) != EOF &&
363 while ((c = getc(Fp)) != EOF && isalnum(c))
369 while ((c = getc(Fp)) != EOF &&
380 while ((c = getc(Fp)) != EOF &&
397 } while ((c = getc(Fp)) != EOF);
400 c = getc(Fp);
404 while ((c = getc(Fp)) != EOF && c != '"')
414 while ((c = getc(Fp)) != EOF && c != '\n' && c != '\r')
441 if ((nextc = getc(F
[all...]
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dstdio.h63 extern int getc(FILE *);
65 #define getc(p) (--(p)->_cnt>=0? ((int)*(p)->_ptr++):_filbuf(p)) macro
75 #define getchar() getc(stdin)
/illumos-gate/usr/src/cmd/ipf/tools/
H A Dlex_var.h16 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
34 getc(yyin)) == 10 ? (pos++, yylineno++, yytchar) : \
43 getc(yyin)) == 10 ? (pos++, yylineno++, yytchar) : \
/illumos-gate/usr/src/lib/libgen/common/
H A Dbgets.c50 #define getc(f) getc_unlocked(f) macro
103 if ((c = getc(fp)) == EOF) {
/illumos-gate/usr/src/cmd/tbl/
H A Dte.c95 c=getc(tabin);
100 c = getc(tabin);
/illumos-gate/usr/src/cmd/refer/
H A Drefer7.c67 while ((c = getc(fi)) > 0) {
78 while ((c = getc(fi)) != FLAG)
117 while ((c = getc(ftemp)) != EOF) {
121 while ((c = getc(ftemp)) != FLAG)
139 if ((c = getc(ftemp)) == AFLAG)
/illumos-gate/usr/src/lib/libbc/inc/5include/
H A Dstdio.h139 extern int getc(FILE *);
159 #define getc(p) (--(p)->_cnt >= 0 ? ((int) *(p)->_ptr++) : _filbuf(p)) macro
167 #define getchar() getc(stdin)

Completed in 95 milliseconds

123456789