Lines Matching refs:sparseFileSupport
192 int sparseFileSupport; member
218 prefs->sparseFileSupport = 1; in LZ4IO_defaultPreferences()
324 prefs->sparseFileSupport = 2*(enable!=0); /* 2==force enable */ in LZ4IO_setSparseFile()
325 return prefs->sparseFileSupport; in LZ4IO_setSparseFile()
414 if (prefs->sparseFileSupport==1) { in LZ4IO_openDstFile()
441 { int const sparseMode = (prefs->sparseFileSupport - (f==stdout)) > 0; in LZ4IO_openDstFile()
1597 int sparseFileSupport, in LZ4IO_fwriteSparse() argument
1607 int const sparseMode = (sparseFileSupport - (file==stdout)) > 0; in LZ4IO_fwriteSparse()
1797 lbi->sparseEnable = prefs->sparseFileSupport; in LZ4IO_decodeLegacyStream()
1862 … = LZ4IO_fwriteSparse(foutput, out_buff, (size_t)decodeSize, prefs->sparseFileSupport, storedSkips… in LZ4IO_decodeLegacyStream()
2166 lbi->sparseEnable = prefs->sparseFileSupport; in LZ4IO_decompressLZ4F()
2250 … = LZ4IO_fwriteSparse(dstFile, ress.dstBuffer, decodedBytes, prefs->sparseFileSupport, storedSkips… in LZ4IO_decompressLZ4F()
2280 int sparseFileSupport) in LZ4IO_passThrough() argument
2293 … storedSkips = LZ4IO_fwriteSparse(foutput, buffer, readBytes, sparseFileSupport, storedSkips); in LZ4IO_passThrough()
2389 return LZ4IO_passThrough(finput, foutput, MNstore, prefs->sparseFileSupport); in selectDecoder()