Lines Matching defs:pSrc_file
6449 MZ_FILE *pSrc_file = NULL;
6477 pSrc_file = MZ_FOPEN(pSrc_filename, "rb");
6478 if (!pSrc_file) return MZ_FALSE;
6479 MZ_FSEEK64(pSrc_file, 0, SEEK_END);
6480 uncomp_size = MZ_FTELL64(pSrc_file);
6481 MZ_FSEEK64(pSrc_file, 0, SEEK_SET);
6485 MZ_FCLOSE(pSrc_file);
6493 MZ_FCLOSE(pSrc_file);
6507 MZ_FCLOSE(pSrc_file);
6517 MZ_FCLOSE(pSrc_file);
6525 if ((MZ_FREAD(pRead_buf, 1, n, pSrc_file) != n) ||
6529 MZ_FCLOSE(pSrc_file);
6545 MZ_FCLOSE(pSrc_file);
6559 MZ_FCLOSE(pSrc_file);
6568 if (MZ_FREAD(pRead_buf, 1, in_buf_size, pSrc_file) != in_buf_size)
6589 MZ_FCLOSE(pSrc_file);
6602 MZ_FCLOSE(pSrc_file);
6603 pSrc_file = NULL;