Lines Matching defs:fp
1145 FILE* fp;
1156 fp = fopen(file->getSourceFile().string(), "rb");
1157 if (fp == NULL) {
1177 png_init_io(read_ptr, fp);
1217 fseek(fp, 0, SEEK_END);
1218 size_t oldSize = (size_t)ftell(fp);
1229 if (fp) {
1230 fclose(fp);
1248 FILE* fp;
1262 fp = fopen(source.string(),"rb");
1263 if (fp == NULL) {
1271 fclose(fp);
1279 fclose(fp);
1286 fclose(fp);
1292 png_init_io(read_ptr,fp);
1299 fseek(fp, 0, SEEK_END);
1300 size_t oldSize = (size_t)ftell(fp);
1301 fclose(fp);
1329 fp = fopen(dest.string(), "wb");
1330 if (!fp) {
1337 png_init_io(write_ptr, fp);
1341 fclose(fp);
1364 fclose(fp);