/external/oprofile/libregex/tests/ |
regex_test.cpp | 30 static void do_test(istream& fin) 38 while (getline(fin, last)) { 70 ifstream fin(argv[i]); 71 do_test(fin); 74 ifstream fin("mangled-name"); 75 if (!fin) { 80 do_test(fin);
|
/external/protobuf/src/google/protobuf/testing/ |
zcgunzip.cc | 55 FileInputStream fin(STDIN_FILENO); 56 GzipInputStream in(&fin);
|
/external/speex/libspeex/ |
kiss_fft.h | 81 * fin should be f[0] , f[1] , ... ,f[nfft-1] 86 void kiss_fft(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout); 91 void kiss_fft_stride(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout,int fin_stride);
|
/frameworks/base/tools/preload/ |
PrintPsTree.java | 34 FileInputStream fin = new FileInputStream(args[0]); local 36 new BufferedInputStream(fin));
|
/external/libvpx/vpx_ports/ |
arm_cpudetect.c | 107 FILE *fin; 119 fin = fopen("/proc/cpuinfo","r"); 120 if(fin != NULL) 126 while (fgets(buf, 511, fin) != NULL) 159 fclose(fin);
|
/frameworks/rs/driver/ |
rsdPath.cpp | 116 const float *fin = (const float *)vtx->getPtr(); local 119 s->x1 = fin[0]; 120 s->y1 = fin[1]; 122 s->xc = fin[2]; 123 s->yc = fin[3]; 125 s->x2 = fin[4]; 126 s->y2 = fin[5]; 127 fin += 6;
|
/cts/tests/tests/os/src/android/os/cts/ |
FileAccessPermissionTest.java | 160 FileInputStream fin = null; local 168 fin = new FileInputStream(file); 170 assertEquals(i + 1, fin.read()); 172 fin.close(); 173 fin = null; 186 if (fin != null) { 188 fin.close();
|
/external/srec/tools/dictTest/ |
dictTest.c | 64 void doInputTestPhonemes(SR_Vocabulary *vocab, PFile* fin, FILE* fout) 77 while(!pfeof(fin)) 79 pfgets(line, MAX_LINE_LENGTH, fin); 124 PFile* fin = 0; local 297 if ((fin = pfopen(wordfile,"r")) == NULL) 302 while (pfgets(phrase, MAX_LINE_LENGTH, fin)!=NULL) 311 if ((fin = pfopen(testfilename,"r")) == NULL) 317 doInputTestPhonemes(vocab, fin, fout); 345 if(fin) 346 pfclose(fin); [all...] |
/external/zlib/contrib/minizip/ |
minizip.c | 189 FILE * fin = FOPEN_FUNC(filenameinzip,"rb"); local 193 if (fin==NULL) 202 size_read = (int)fread(buf,1,size_buf,fin); 204 if (feof(fin)==0) 216 if (fin) 217 fclose(fin); 398 FILE * fin; local 463 fin = FOPEN_FUNC(filenameinzip,"rb"); 464 if (fin==NULL) 475 size_read = (int)fread(buf,1,size_buf,fin); [all...] |
/external/quake/quake/src/QW/client/ |
gl_warp.c | 491 void LoadTGA (FILE *fin) 497 targa_header.id_length = fgetc(fin); 498 targa_header.colormap_type = fgetc(fin); 499 targa_header.image_type = fgetc(fin); 501 targa_header.colormap_index = fgetLittleShort(fin); 502 targa_header.colormap_length = fgetLittleShort(fin); 503 targa_header.colormap_size = fgetc(fin); 504 targa_header.x_origin = fgetLittleShort(fin); 505 targa_header.y_origin = fgetLittleShort(fin); 506 targa_header.width = fgetLittleShort(fin); [all...] |
/external/quake/quake/src/WinQuake/ |
gl_warp.cpp | 540 void LoadTGA (FILE *fin) 546 targa_header.id_length = fgetc(fin); 547 targa_header.colormap_type = fgetc(fin); 548 targa_header.image_type = fgetc(fin); 550 targa_header.colormap_index = fgetLittleShort(fin); 551 targa_header.colormap_length = fgetLittleShort(fin); 552 targa_header.colormap_size = fgetc(fin); 553 targa_header.x_origin = fgetLittleShort(fin); 554 targa_header.y_origin = fgetLittleShort(fin); 555 targa_header.width = fgetLittleShort(fin); [all...] |
/gdk/samples/quake/jni/ |
gl_warp.cpp | 540 void LoadTGA (FILE *fin) 546 targa_header.id_length = fgetc(fin); 547 targa_header.colormap_type = fgetc(fin); 548 targa_header.image_type = fgetc(fin); 550 targa_header.colormap_index = fgetLittleShort(fin); 551 targa_header.colormap_length = fgetLittleShort(fin); 552 targa_header.colormap_size = fgetc(fin); 553 targa_header.x_origin = fgetLittleShort(fin); 554 targa_header.y_origin = fgetLittleShort(fin); 555 targa_header.width = fgetLittleShort(fin); [all...] |
/external/clang/test/SemaCXX/ |
function-overload-typo-crash.cpp | 10 fin(); //expected-error {{use of undeclared identifier 'fin'; did you mean 'min'}}
|
/external/javassist/sample/evolve/ |
DemoServer.java | 90 FileInputStream fin
local 95 int len = fin.read(buf);
|
/external/srec/tools/parseStringTest/ |
parseStringTest.c | 50 ESR_ReturnCode process_single_key_line(SR_Grammar* grammar, PFile* fin, PFile* fout); 51 ESR_ReturnCode process_multi_key_line(SR_Grammar* grammar, const LCHAR* rootrule, PFile* fin, PFile* fout); 283 PFile *fin = NULL, *fout = NULL; local 293 fin = PSTDIN; 360 fin = PSTDIN; 362 else if ((fin = pfopen(infilename, "r")) == NULL) 370 if (pfgets(trans, MAX_LINE_LENGTH, fin) == NULL) 372 if (!pfeof(fin)) 391 if ((fin = pfopen(inRTfilename, "r")) == NULL) 403 if (0) rc = process_single_key_line(grammar, fin, fout) [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_pwd.c | 205 goto fin; 219 goto fin; 226 goto fin; 234 goto fin; 241 goto fin; 248 goto fin; 270 goto fin; 277 fin: 309 goto fin; 335 goto fin; [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
eap_pwd.c | 280 goto fin; 286 goto fin; 300 goto fin; 306 goto fin; 313 goto fin; 325 goto fin; 340 goto fin; 349 goto fin; 354 goto fin; 367 goto fin; [all...] |
/external/javassist/src/main/javassist/ |
ClassPoolTail.java | 285 InputStream fin = openClassfile(classname); local 286 if (fin == null) 290 copyStream(fin, out); 293 fin.close(); 307 InputStream fin = openClassfile(classname); 309 fin.close(); 384 public static byte[] readStream(InputStream fin) throws IOException { 393 len = fin.read(bufs[i], size, bufsize - size); 419 public static void copyStream(InputStream fin, OutputStream fout) 428 len = fin.read(buf, size, bufsize - size) [all...] |
/external/javassist/src/main/javassist/tools/web/ |
Webserver.java | 274 FileInputStream fin = new FileInputStream(file); local 277 len = fin.read(filebuffer); 284 fin.close(); 292 InputStream fin local 294 if (fin != null) { 298 len = fin.read(filebuffer); 308 fin.close();
|
Viewer.java | 189 private byte[] readStream(InputStream fin) throws IOException { 201 len = fin.read(buf, size, buf.length - size);
|
/packages/apps/Browser/src/com/android/browser/ |
CrashRecoveryHandler.java | 159 FileInputStream fin = null; local 162 fin = new FileInputStream(stateFile); 166 while ((read = fin.read(buffer)) > 0) { 182 if (fin != null) { 184 fin.close();
|
/bionic/libc/kernel/common/linux/ |
tcp.h | 34 fin:1, member in struct:tcphdr 56 fin:1; member in struct:tcphdr
|
/development/ndk/platforms/android-3/include/linux/ |
tcp.h | 26 fin:1, member in struct:tcphdr 44 fin:1; member in struct:tcphdr
|
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/ |
tcp.h | 26 fin:1, member in struct:tcphdr 44 fin:1; member in struct:tcphdr
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
tcp.h | 32 fin:1, member in struct:tcphdr 50 fin:1; member in struct:tcphdr 92 #define TCP_LINGER2 8 /* Life time of orphaned FIN-WAIT-2 state */
|