Home
last modified time | relevance | path

Searched refs:stdio (Results 1 – 25 of 323) sorted by relevance

12345678910>>...13

/external/bison/m4/
Dwctype_h.m442 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be
44 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h>
47 #include <stdio.h>
88 [[/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be
90 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h>
93 #include <stdio.h>
124 [[/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be
126 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h>
129 #include <stdio.h>
150 [[/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be
[all …]
Dmbrtowc.m419 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
21 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
24 #include <stdio.h>
131 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
133 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
136 #include <stdio.h>
188 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
190 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
193 #include <stdio.h>
248 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
[all …]
Dstdio_h.m410 gl_NEXT_HEADERS([stdio.h])
13 dnl <stdio.h> likely needs them.
23 dnl This ifdef is necessary to avoid an error "missing file lib/stdio-read.c"
32 AC_LIBOBJ([stdio-read])
37 dnl <stdio.h> likely needs them.
48 dnl This ifdef is necessary to avoid an error "missing file lib/stdio-write.c"
57 AC_LIBOBJ([stdio-write])
60 dnl This ifdef is necessary to avoid an error "missing file lib/stdio-write.c"
69 AC_LIBOBJ([stdio-write])
76 gl_WARN_ON_USE_PREPARE([[#include <stdio.h>
Dwcwidth.m424 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
26 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
29 #include <stdio.h>
51 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
53 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
56 #include <stdio.h>
Dwint_t.m417 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
19 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
22 #include <stdio.h>
Dwchar_h.m441 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
43 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
47 # include <stdio.h>
73 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
75 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
78 #include <stdio.h>
88 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
90 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
93 #include <stdio.h>
Diswblank.m415 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
17 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
20 #include <stdio.h>
Dmbstate_t.m423 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
25 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
28 #include <stdio.h>
Dmbswidth.m422 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
24 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
27 #include <stdio.h>
Dmbsinit.m419 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
21 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
24 #include <stdio.h>
Dprintf.m423 #include <stdio.h>
101 #include <stdio.h>
149 #include <stdio.h>
272 #include <stdio.h>
479 #include <stdio.h>
564 #include <stdio.h>
620 #include <stdio.h>
681 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
683 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
686 #include <stdio.h>
[all …]
/external/stlport/stlport/
Dstdio.h33 # include_next <stdio.h>
35 # include _STLP_NATIVE_C_HEADER(stdio.h)
/external/clang/test/Modules/Inputs/System/usr/include/
Dmodule.map8 module stdio {
9 header "stdio.h"
/external/qemu/distrib/sdl-1.2.15/src/file/
DSDL_rwops.c325 if ( fseek(context->hidden.stdio.fp, offset, whence) == 0 ) { in stdio_seek()
326 return(ftell(context->hidden.stdio.fp)); in stdio_seek()
336 nread = fread(ptr, size, maxnum, context->hidden.stdio.fp); in stdio_read()
337 if ( nread == 0 && ferror(context->hidden.stdio.fp) ) { in stdio_read()
346 nwrote = fwrite(ptr, size, num, context->hidden.stdio.fp); in stdio_write()
347 if ( nwrote == 0 && ferror(context->hidden.stdio.fp) ) { in stdio_write()
355 if ( context->hidden.stdio.autoclose ) { in stdio_close()
357 fclose(context->hidden.stdio.fp); in stdio_close()
542 rwops->hidden.stdio.fp = fp; in SDL_RWFromFP()
543 rwops->hidden.stdio.autoclose = autoclose; in SDL_RWFromFP()
/external/clang/docs/
DFAQ.rst18 #include <stdio.h>
30 hello.c:1:10: fatal error: 'stdio.h' file not found
31 #include <stdio.h>
/external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/
Dperf-annotate.txt62 --stdio:: Use the stdio interface.
65 present, as when piping to other commands, the stdio interface is
/external/linux-tools-perf/perf-3.12.0/tools/perf/config/
Dfeature-tests.mak2 #include <stdio.h>
205 #include <stdio.h>
229 #include <stdio.h>
/external/bison/lib/
Dgnulib.mk391 EXTRA_DIST += stdio--.h stdio-safer.h
441 EXTRA_DIST += fseterr.c fseterr.h stdio-impl.h
1810 BUILT_SOURCES += stdio.h
1811 libbison_a_SOURCES += stdio.c
1815 stdio.h: stdio.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
1876 < $(srcdir)/stdio.in.h | \
1931 MOSTLYCLEANFILES += stdio.h stdio.h-t
1933 EXTRA_DIST += stdio.in.h
/external/clang/test/Modules/Inputs/
Dpch-used.h1 @import cstd.stdio;
/external/chromium_org/third_party/cython/src/Cython/Includes/Deprecated/
Dstdio.pxd2 from libc.stdio cimport *
/external/chromium_org/tools/gyp/test/rules/src/subdir1/
Dfunction1.in1 #include <stdio.h>
Dfunction2.in1 #include <stdio.h>
/external/chromium_org/tools/gyp/test/generator-output/rules/subdir1/
Dfunction2.in11 #include <stdio.h>
Dfunction1.in11 #include <stdio.h>
/external/chromium_org/tools/gyp/test/rules-dirname/src/subdir/a/b/
Dc.gencc2 #include <stdio.h>

12345678910>>...13