Lines Matching refs:LZ4F_compressBound
243 /* LZ4F_compressBound() : special case : srcSize == 0 */
244 DISPLAYLEVEL(3, "LZ4F_compressBound(0) = ");
245 { size_t const cBound = LZ4F_compressBound(0, NULL);
250 /* LZ4F_compressBound() : special case : automatic flushing enabled */
251 DISPLAYLEVEL(3, "LZ4F_compressBound(1 KB, autoFlush=1) = ");
256 cBound = LZ4F_compressBound(1 KB, &autoFlushPrefs);
261 /* LZ4F_compressBound() : special case : automatic flushing disabled */
262 DISPLAYLEVEL(3, "LZ4F_compressBound(1 KB, autoFlush=0) = ");
263 { size_t const cBound = LZ4F_compressBound(1 KB, &prefs);
533 CHECK_V(cErr, LZ4F_compressUpdate(cctx, op, LZ4F_compressBound(testSize, &prefs), CNBuffer, testSize, NULL));
543 CHECK_V(cErr, LZ4F_compressUpdate(cctx, op, LZ4F_compressBound(testSize, &prefs), CNBuffer, testSize, NULL));
553 CHECK_V(cErr, LZ4F_compressUpdate(cctx, op, LZ4F_compressBound(testSize, &prefs), CNBuffer, testSize, NULL));
1077 size_t const oSize = LZ4F_compressBound(iSize, prefsPtr);
1124 { size_t const dstEndSafeSize = LZ4F_compressBound(0, prefsPtr);