Searched refs:fpin (Results 1 – 4 of 4) sorted by relevance
/third_party/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() 969 FCLOSE(fpin); in test_one_file() 1015 png_init_io(read_ptr, fpin); in test_one_file() 1020 png_set_read_fn(read_ptr, (png_voidp)fpin, pngtest_read_data); in test_one_file() 1673 FCLOSE(fpin); in test_one_file() 1711 if ((fpin = fopen(inname, "rb")) == NULL) in test_one_file() 1720 FCLOSE(fpin); in test_one_file() [all …]
|
/third_party/flutter/skia/third_party/externals/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() 969 FCLOSE(fpin); in test_one_file() 1015 png_init_io(read_ptr, fpin); in test_one_file() 1020 png_set_read_fn(read_ptr, (png_voidp)fpin, pngtest_read_data); in test_one_file() 1673 FCLOSE(fpin); in test_one_file() 1711 if ((fpin = fopen(inname, "rb")) == NULL) in test_one_file() 1720 FCLOSE(fpin); in test_one_file() [all …]
|
/third_party/skia/third_party/externals/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() 969 FCLOSE(fpin); in test_one_file() 1015 png_init_io(read_ptr, fpin); in test_one_file() 1020 png_set_read_fn(read_ptr, (png_voidp)fpin, pngtest_read_data); in test_one_file() 1673 FCLOSE(fpin); in test_one_file() 1711 if ((fpin = fopen(inname, "rb")) == NULL) in test_one_file() 1720 FCLOSE(fpin); in test_one_file() [all …]
|
/third_party/python/Lib/ |
D | zipfile.py | 214 def _EndRecData64(fpin, offset, endrec): argument 219 fpin.seek(offset - sizeEndCentDir64Locator, 2) 225 data = fpin.read(sizeEndCentDir64Locator) 236 fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2) 237 data = fpin.read(sizeEndCentDir64) 257 def _EndRecData(fpin): argument 264 fpin.seek(0, 2) 265 filesize = fpin.tell() 271 fpin.seek(-sizeEndCentDir, 2) 274 data = fpin.read() [all …]
|