HomeSort by relevance Sort by last modified time
    Searched refs:FILE (Results 1 - 25 of 5263) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Preprocessor/
include-directive1.c 1 // RUN: %clang_cc1 -E %s -fno-caret-diagnostics 2>&1 >/dev/null | grep 'file successfully included' | count 3
6 // expand macros to get to file to include
7 #define FILE "file_to_include.h"
8 #include XX FILE
10 #include FILE
  /external/clang/test/Modules/Inputs/System/usr/include/
stdio.h 1 typedef struct { int id; } FILE;
2 int fprintf(FILE*restrict, const char* restrict format, ...);
3 extern FILE *__stderrp;
  /external/clang/test/Modules/Inputs/crash-recovery/usr/include/
stdio.h 1 typedef struct { int id; } FILE;
2 int fprintf(FILE*restrict, const char* restrict format, ...);
3 extern FILE *__stderrp;
  /external/clang/test/Modules/Inputs/preprocess/
file.h 3 typedef struct __FILE FILE;
  /external/chromium-libpac/test/
jstocstring.pl 5 open(FILE, "> $ARGV[1]");
6 print FILE "// This file is auto generated using the following command.\n";
7 print FILE "// Do not modify.\n";
8 print FILE "// \t./jstocstring.pl $ARGV[0] $ARGV[1]\n";
9 print FILE "#ifndef PROXY_TEST_SCRIPT_H_\n";
10 print FILE "#define PROXY_TEST_SCRIPT_H_\n\n";
17 print FILE "#define $upper \\\n";
21 print FILE " \"",$_,"\\n\" \\\n";
24 print FILE "\n
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/
debugUtility.h 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
20 FILE* res0to4FilePtr;
21 FILE* res4to8FilePtr;
22 FILE* res8to12FilePtr;
23 FILE* res8to16FilePtr;
25 FILE* res0to4DecFilePtr;
26 FILE* res4to8DecFilePtr;
27 FILE* res8to12DecFilePtr
    [all...]
  /external/clang/test/CodeGen/
2002-06-25-FWriteInterfaceFailure.c 3 typedef struct _IO_FILE FILE;
4 extern FILE *stderr;
5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
vfprintf.c 3 typedef struct _IO_FILE FILE;
4 int vfprintf(FILE*restrict,const char*restrict, __builtin_va_list);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/config/i386/
bsd.h 6 This file is part of GCC.
19 along with GCC; see the file COPYING3. If not see
41 #define ASM_OUTPUT_SOURCE_FILENAME(FILE, NAME) */
50 #define ASM_OUTPUT_SKIP(FILE,SIZE) \
51 fprintf (FILE, "\t.space "HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE))
59 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
60 ( fputs (".comm ", (FILE)), \
61 assemble_name ((FILE), (NAME)), \
62 fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
67 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED)
    [all...]
  /toolchain/binutils/binutils-2.27/gprof/
call_graph.h 5 This file is part of GNU Binutils.
27 extern void cg_read_rec (FILE *, const char *);
28 extern void cg_write_arcs (FILE *, const char *);
  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-simple-stream.h 10 } FILE;
11 FILE *fopen(const char * restrict, const char * restrict) __asm("_" "fopen" );
12 int fputc(int, FILE *);
13 int fputs(const char * restrict, FILE * restrict) __asm("_" "fputs" );
14 int fclose(FILE *);
19 FILE * p;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdio_ext.h 1 /* Functions to access FILE structure internals.
3 This file is part of the GNU C Library.
47 extern size_t __fbufsize (FILE *__fp) __THROW;
52 extern int __freading (FILE *__fp) __THROW;
57 extern int __fwriting (FILE *__fp) __THROW;
62 extern int __freadable (FILE *__fp) __THROW;
65 extern int __fwritable (FILE *__fp) __THROW;
69 extern int __flbf (FILE *__fp) __THROW;
73 extern void __fpurge (FILE *__fp) __THROW;
76 extern size_t __fpending (FILE *__fp) __THROW
    [all...]
  /external/clang/test/Analysis/
stream.c 4 typedef struct _IO_FILE FILE;
5 #define SEEK_SET 0 /* Seek from beginning of file. */
7 #define SEEK_END 2 /* Seek from end of file. */
8 extern FILE *fopen(const char *path, const char *mode);
9 extern FILE *tmpfile(void);
10 extern int fclose(FILE *fp);
11 extern size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
12 extern int fseek (FILE *__stream, long int __off, int __whence);
13 extern long int ftell (FILE *__stream);
14 extern void rewind (FILE *__stream)
    [all...]
  /build/kati/
io.h 4 // you may not use this file except in compliance with the License.
26 void DumpInt(FILE* fp, int v);
27 void DumpString(FILE* fp, StringPiece s);
29 int LoadInt(FILE* fp);
30 bool LoadString(FILE* fp, string* s);
34 explicit ScopedFile(FILE* fp) : fp_(fp) {}
42 FILE* fp_;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
marshal.h 12 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
13 PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
16 PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
17 PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
18 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
19 PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
marshal.h 12 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
13 PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
16 PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
17 PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
18 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
19 PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
  /external/python/cpython2/Include/
marshal.h 12 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
13 PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
16 PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
17 PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
18 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
19 PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
  /external/python/cpython3/Include/
marshal.h 12 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
13 PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
17 PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
18 PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
19 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
20 PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
  /prebuilts/gdb/darwin-x86/include/python2.7/
marshal.h 12 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
13 PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
16 PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
17 PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
18 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
19 PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
  /prebuilts/gdb/linux-x86/include/python2.7/
marshal.h 12 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
13 PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
16 PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
17 PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
18 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
19 PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
marshal.h 12 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
13 PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
16 PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
17 PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
18 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
19 PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
marshal.h 12 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
13 PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
16 PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
17 PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
18 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
19 PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
local.h 1 /** @file
51 extern int __sflush(FILE *);
52 extern FILE *__sfp(void);
53 extern int __srefill(FILE *);
61 extern void __smakebuf(FILE *);
62 extern int __swhatbuf(FILE *, size_t *, int *);
63 extern int _fwalk(int (*)(FILE *));
65 extern int __swsetup(FILE *);
67 extern int __svfscanf(FILE * __restrict, const char * __restrict, va_list)
69 extern int __svfscanf_unlocked(FILE * __restrict, const char * __restrict, va_list)
    [all...]
  /external/tcpdump/lbl/
os-solaris2.h 24 int setlinebuf(FILE *);
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
NETEQTEST_DummyRTPpacket.h 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
18 int readFromFile(FILE* fp) override;
19 int writeToFile(FILE* fp) override;

Completed in 853 milliseconds

1 2 3 4 5 6 7 8 91011>>