Home | History | Annotate | Download | only in programs

Lines Matching refs:dstFile

534     FILE* dstFile;
546 dstFile = LZ4IO_openDstFile(dstFileName);
547 if (dstFile == NULL) { fclose(srcFile); return 1; }
581 { size_t const sizeCheck = fwrite(dstBuffer, 1, cSize, dstFile);
592 { size_t const sizeCheck = fwrite(dstBuffer, 1, headerSize, dstFile);
607 { size_t const sizeCheck = fwrite(dstBuffer, 1, outSize, dstFile);
620 { size_t const sizeCheck = fwrite(dstBuffer, 1, headerSize, dstFile);
627 fclose (dstFile);
856 FILE* dstFile;
891 ress.dstFile = NULL;
905 static unsigned long long LZ4IO_decompressLZ4F(dRess_t ress, FILE* srcFile, FILE* dstFile)
941 storedSkips = LZ4IO_fwriteSparse(dstFile, ress.dstBuffer, decodedBytes, storedSkips);
952 if (!g_testMode) LZ4IO_fwriteSparseEnd(dstFile, storedSkips);
1066 FILE* const foutput = ress.dstFile;
1108 ress.dstFile = foutput;
1152 ress.dstFile = LZ4IO_openDstFile(stdoutmark);