Lines Matching refs:f_out
57 compress_file_internal(FILE* f_in, FILE* f_out, in compress_file_internal() argument
65 assert(f_in != NULL); assert(f_out != NULL); in compress_file_internal()
78 safe_fwrite(outBuff, 1, headerSize, f_out); in compress_file_internal()
97 safe_fwrite(outBuff, 1, compressedSize, f_out); in compress_file_internal()
111 safe_fwrite(outBuff, 1, compressedSize, f_out); in compress_file_internal()
122 compress_file(FILE* f_in, FILE* f_out) in compress_file() argument
125 assert(f_out != NULL); in compress_file()
136 result = compress_file_internal(f_in, f_out, in compress_file()
170 decompress_file_internal(FILE* f_in, FILE* f_out, in decompress_file_internal() argument
178 assert(f_in != NULL); assert(f_out != NULL); in decompress_file_internal()
208 if (dstSize != 0) safe_fwrite(dst, 1, dstSize, f_out); in decompress_file_internal()
241 decompress_file_allocDst(FILE* f_in, FILE* f_out, in decompress_file_allocDst() argument
245 assert(f_in != NULL); assert(f_out != NULL); in decompress_file_allocDst()
273 f_in, f_out, in decompress_file_allocDst()
284 static int decompress_file(FILE* f_in, FILE* f_out) in decompress_file() argument
286 assert(f_in != NULL); assert(f_out != NULL); in decompress_file()
299 decompress_file_allocDst(f_in, f_out, dctx, src, IN_CHUNK_SIZE); in decompress_file()