HomeSort by: relevance | last modified time | path
    Searched defs:EOF (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/arch/hpc/stand/hpcboot/
hpcdefs.h 52 #define EOF (-1)
  /src/tests/lib/libc/gen/posix_spawn/
fa_spawn_utils.c 61 REQUIRE_LIBC(fclose(f), EOF);
t_fileactions.c 63 REQUIRE_LIBC(fclose(f), EOF);
  /src/share/man/tools/
line.c 10 int EOF;
18 EOF = 0;
33 if (EOF == 1) exit(1);
40 EOF = 1;
  /src/external/bsd/top/dist/
getopt.c 60 #ifndef EOF
61 #define EOF (-1)
88 return(EOF);
91 return(EOF);
  /src/tests/lib/libc/locale/
t_btowc.c 111 ATF_REQUIRE_EQ(wctob(*wcp), EOF);
130 /* btowc(EOF) -> WEOF */
131 ATF_REQUIRE_EQ(btowc(EOF), WEOF);
133 /* wctob(WEOF) -> EOF */
134 ATF_REQUIRE_EQ(wctob(WEOF), EOF);
148 /* A legal character never maps to EOF */
204 /* btowc(EOF) -> WEOF */
205 ATF_REQUIRE_EQ(btowc(EOF), WEOF);
207 /* wctob(WEOF) -> EOF */
208 ATF_REQUIRE_EQ(wctob(WEOF), EOF);
    [all...]
  /src/external/lgpl3/gmp/dist/tests/mpz/
t-io_raw.c 88 ASSERT_ALWAYS (putc ((size >> (j*8)) & 0xFF, fp) != EOF);
90 ASSERT_ALWAYS (putc ('\0', fp) != EOF);
92 ASSERT_ALWAYS (putc (BYTEVAL (j), fp) != EOF);
94 ASSERT_ALWAYS (putc ('x', fp) != EOF);
95 ASSERT_ALWAYS (putc ('y', fp) != EOF);
96 ASSERT_ALWAYS (putc ('z', fp) != EOF);
  /src/sys/arch/evbarm/stand/gzboot/
gzboot.c 76 #define EOF (-1) /* needed by compression code */
199 return (0); /* EOF */
263 return (EOF);
271 return (EOF);
289 if (c == EOF)
327 /* len is garbage if EOF, but the loop below will quit anyway */
328 while (len-- && get_u8(s) != EOF)
333 while ((c = get_u8(s)) != 0 && c != EOF)
338 while ((c = get_u8(s)) != 0 && c != EOF)
  /src/sys/external/bsd/acpica/dist/include/
acclib.h 245 #ifndef EOF
246 #define EOF (-1)
  /src/sys/lib/libsa/
cread.c 52 #define EOF (-1) /* needed by compression code */
152 return EOF;
163 return EOF;
182 if (c == EOF)
201 if ((c == EOF) && (len == 0)) {
203 * We must not change s->compressed if we are at EOF;
212 if (c != EOF) {
235 /* len is garbage if EOF but the loop below will quit anyway */
236 while (len-- != 0 && get_byte(s) != EOF)
241 while ((c = get_byte(s)) != 0 && c != EOF)
    [all...]
  /src/sys/arch/atari/stand/tostools/libtos/
cread.c 58 #define EOF (-1) /* needed by compression code */
122 return (EOF);
132 return EOF;
150 if (c == EOF)
169 if ((c == EOF) && (len == 0)) {
171 * We must not change s->compressed if we are at EOF;
180 if (c != EOF) {
203 /* len is garbage if EOF but the loop below will quit anyway */
204 while (len-- != 0 && get_byte(s) != EOF) /*void*/;
208 while ((c = get_byte(s)) != 0 && c != EOF) /*void*/
    [all...]
  /src/include/
stdio.h 159 #define __SEOF 0x0020 /* found EOF */
184 #define EOF (-1)
213 #define SEEK_END 2 /* set file offset to EOF plus offset */

Completed in 42 milliseconds