Home
last modified time | relevance | path

Searched refs:getc (Results 1 – 25 of 157) sorted by relevance

1234567

/external/javassist/src/main/javassist/compiler/
DLex.java124 c = getc(); in readLine()
142 c = getc(); in getNextNonWhiteChar()
144 c = getc(); in getNextNonWhiteChar()
147 c = getc(); in getNextNonWhiteChar()
151 c = getc(); in getNextNonWhiteChar()
155 if ((c = getc()) == '/') { in getNextNonWhiteChar()
174 while ((c = getc()) != '\'') in readCharConst()
191 int c = getc(); in readEscapeChar()
211 while ((c = getc()) != '"') { in readStringL()
223 c = getc(); in readStringL()
[all …]
/external/libjpeg-turbo/
Drdcolmap.c88 if ((header[i] = getc(infile)) == EOF) in read_gif_map()
104 R = getc(infile); in read_gif_map()
105 G = getc(infile); in read_gif_map()
106 B = getc(infile); in read_gif_map()
127 ch = getc(infile); in pbm_getc()
130 ch = getc(infile); in pbm_getc()
178 c = getc(infile); /* save format discriminator for a sec */ in read_ppm_map()
207 R = getc(infile); in read_ppm_map()
208 G = getc(infile); in read_ppm_map()
209 B = getc(infile); in read_ppm_map()
[all …]
/external/llvm-project/clang/test/Analysis/
Dblock-in-critical-section.cpp26 void getc() {} in getc() function
44 getc(); // expected-warning {{Call to blocking function 'getc' inside of critical section}} in testBlockInCriticalSectionWithStdMutex()
54 getc(); // expected-warning {{Call to blocking function 'getc' inside of critical section}} in testBlockInCriticalSectionWithPthreadMutex()
62 getc(); // expected-warning {{Call to blocking function 'getc' inside of critical section}} in testBlockInCriticalSectionWithPthreadMutex()
72 getc(); // expected-warning {{Call to blocking function 'getc' inside of critical section}} in testBlockInCriticalSectionC11Locks()
80 getc(); // expected-warning {{Call to blocking function 'getc' inside of critical section}} in testBlockInCriticalSectionC11Locks()
88 getc(); // expected-warning {{Call to blocking function 'getc' inside of critical section}} in testBlockInCriticalSectionC11Locks()
Dstd-c-library-functions-eof.c13 int getc(FILE *);
17 while ((x = getc(fp)) != EOF) { in test_getc()
22 int y = getc(fp); in test_getc()
Dconversion.c159 typedef struct FILE {} FILE; int getc(FILE *stream);
173 while ((c = getc(cin)) != '\n') { in libraryFunction2()
/external/libpcap/
Detherent.c65 c = getc(f); in skip_space()
77 c = getc(f); in skip_line()
113 c = getc(fp); in pcap_next_etherent()
119 c = getc(fp); in pcap_next_etherent()
126 c = getc(fp); in pcap_next_etherent()
159 c = getc(fp); in pcap_next_etherent()
/external/swiftshader/src/OpenGL/compiler/
DMMap.h31 char c = getc(fp); in TMMap()
35 c = getc(fp); in TMMap()
42 c = getc(fp); in TMMap()
45 c = getc(fp); in TMMap()
/external/libgsm/src/
Dtoast_audio.c49 if ( (i = getc(f)) == EOF
50 || ((u = (unsigned char)i), (i = getc(f)) == EOF)
51 || ((u = (u<<8)|(unsigned char)i), (i = getc(f)) == EOF)
52 || ((u = (u<<8)|(unsigned char)i), (i = getc(f)) == EOF)) return -1;
88 if (getc(in) == EOF) { in P0()
/external/tensorflow/tensorflow/core/platform/
Dplatform_strings.cc35 while ((c = getc(ifp)) != EOF) { in GetPlatformStrings()
38 while (prefix[i] != 0 && (c = getc(ifp)) == prefix[i]) { in GetPlatformStrings()
43 while ((c = getc(ifp)) != EOF && c != 0) { in GetPlatformStrings()
/external/libcups/cgi-bin/
Dtemplate.c233 while ((ch = getc(in)) != EOF) in cgi_copy()
244 for (s = name; (ch = getc(in)) != EOF;) in cgi_copy()
453 for (s = compare; (ch = getc(in)) != EOF;) in cgi_copy()
470 while ((ch = getc(in)) != EOF && ch != '}') in cgi_copy()
501 *s++ = (char)getc(in); in cgi_copy()
607 putc(getc(in), out); in cgi_copy()
609 getc(in); in cgi_copy()
/external/e2fsprogs/intl/
Dlocalcharset.c90 # undef getc
91 # define getc getc_unlocked macro
153 c = getc (fp); in get_charset_aliases()
162 c = getc (fp); in get_charset_aliases()
/external/brotli/research/
Dread_dist.h29 int c = getc(fin); in ReadBackwardReference()
33 if ((c = getc(fin)) != 1) { in ReadBackwardReference()
/external/arm-trusted-firmware/include/arch/aarch32/
Dconsole_macros.S20 .macro finish_console_register _driver, putc=0, getc=0, flush=0
32 .ifne \getc
/external/arm-trusted-firmware/include/arch/aarch64/
Dconsole_macros.S20 .macro finish_console_register _driver, putc=0, getc=0, flush=0
33 .ifne \getc
/external/clang/test/SemaCXX/
Derr_typecheck_assign_const.cpp80 const C &getc(); // expected-note{{function 'getc' which returns const-qualified type 'const C &' d…
85getc().b.a.z = 5; // expected-error{{cannot assign to return value because function 'getc' return… in test7()
/external/oss-fuzz/projects/cryptofuzz/
Dxxd.c279 while ((c = getc(fpi)) != EOF) in huntype()
354 while ((c = getc(fpi)) != '\n' && c != EOF) in huntype()
366 while ((c = getc(fpi)) != '\n' && c != EOF) in huntype()
703 if (getc(fp) == EOF) in main()
733 while ((length < 0 || p < length) && (c = getc(fp)) != EOF) in main()
770 while ((length < 0 || n < length) && (e = getc(fp)) != EOF) in main()
803 while ((length < 0 || n < length) && (e = getc(fp)) != EOF) in main()
/external/ltp/testcases/kernel/syscalls/fork/
Dfork08.c82 if ((getc(rea)) != 'a') in main()
115 ch_r_stat = getc(rea); in main()
Dfork07.c108 if ((getc(rea)) != 'a') in main()
117 ch_r_stat = getc(rea); in main()
/external/libcups/monitor/
Dtbcp.c164 if ((ch = getc(fp)) == EOF) in psgets()
173 ch = getc(fp); in psgets()
Dbcp.c175 if ((ch = getc(fp)) == EOF) in psgets()
184 ch = getc(fp); in psgets()
/external/llvm-project/clang/test/SemaCXX/
Derr_typecheck_assign_const.cpp80 const C &getc(); // expected-note{{function 'getc' which returns const-qualified type 'const C &' d…
85getc().b.a.z = 5; // expected-error{{cannot assign to return value because function 'getc' return… in test7()
/external/arm-trusted-firmware/drivers/console/
Dmulti_console.c110 if ((console->flags & console_state) && (console->getc != NULL)) { in console_getc()
111 int ret = console->getc(console); in console_getc()
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/
Dstdio_h.pass.cpp15 #ifdef getc
16 #error getc is defined
148 static_assert((std::is_same<decltype(getc(fp)), int>::value), ""); in main()
/external/libcxx/test/std/depr/depr.c.headers/
Dstdio_h.pass.cpp16 #ifdef getc
17 #error getc is defined
149 static_assert((std::is_same<decltype(getc(fp)), int>::value), ""); in main()
/external/igt-gpu-tools/assembler/
Ddisasm-main.c49 while ((c = getc (input)) != EOF) { in read_program()
80 while ((c = getc (input)) != EOF) { in read_program_binary()

1234567