Searched refs:fpin (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/examples/ |
D | resize_util.c | 49 FILE *fpin, *fpout; in main() local 77 fpin = fopen(fin, "rb"); in main() 78 if (fpin == NULL) { in main() 109 if (fread(inbuf, width * height * 3 / 2, 1, fpin) != 1) break; in main() 117 fclose(fpin); in main()
|
/external/libaom/libaom/examples/ |
D | resize_util.c | 50 FILE *fpin, *fpout; in main() local 78 fpin = fopen(fin, "rb"); in main() 79 if (fpin == NULL) { in main() 110 if (fread(inbuf, width * height * 3 / 2, 1, fpin) != 1) break; in main() 118 fclose(fpin); in main()
|
/external/libpng/ |
D | pngtest.c | 855 static png_FILE_p fpin; in test_one_file() local 882 if ((fpin = fopen(inname, "rb")) == NULL) in test_one_file() 891 FCLOSE(fpin); in test_one_file() 949 FCLOSE(fpin); in test_one_file() 967 FCLOSE(fpin); in test_one_file() 1013 png_init_io(read_ptr, fpin); in test_one_file() 1018 png_set_read_fn(read_ptr, (png_voidp)fpin, pngtest_read_data); in test_one_file() 1671 FCLOSE(fpin); in test_one_file() 1709 if ((fpin = fopen(inname, "rb")) == NULL) in test_one_file() 1718 FCLOSE(fpin); in test_one_file() [all …]
|
/external/chromium-trace/catapult/third_party/zipfile/ |
D | zipfile_2_7_13.py | 158 def _EndRecData64(fpin, offset, endrec): argument 163 fpin.seek(offset - sizeEndCentDir64Locator, 2) 169 data = fpin.read(sizeEndCentDir64Locator) 180 fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2) 181 data = fpin.read(sizeEndCentDir64) 201 def _EndRecData(fpin): argument 208 fpin.seek(0, 2) 209 filesize = fpin.tell() 215 fpin.seek(-sizeEndCentDir, 2) 218 data = fpin.read() [all …]
|
/external/python/cpython2/Lib/ |
D | zipfile.py | 158 def _EndRecData64(fpin, offset, endrec): argument 163 fpin.seek(offset - sizeEndCentDir64Locator, 2) 169 data = fpin.read(sizeEndCentDir64Locator) 180 fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2) 181 data = fpin.read(sizeEndCentDir64) 201 def _EndRecData(fpin): argument 208 fpin.seek(0, 2) 209 filesize = fpin.tell() 215 fpin.seek(-sizeEndCentDir, 2) 218 data = fpin.read() [all …]
|
/external/python/cpython3/Lib/ |
D | zipfile.py | 209 def _EndRecData64(fpin, offset, endrec): argument 214 fpin.seek(offset - sizeEndCentDir64Locator, 2) 220 data = fpin.read(sizeEndCentDir64Locator) 231 fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2) 232 data = fpin.read(sizeEndCentDir64) 252 def _EndRecData(fpin): argument 259 fpin.seek(0, 2) 260 filesize = fpin.tell() 266 fpin.seek(-sizeEndCentDir, 2) 269 data = fpin.read() [all …]
|