Lines Matching full:with
8 Redistribution and use in source and binary forms, with or without
16 in the documentation and/or other materials provided with the
62 scalable with multi-cores CPU. It features an extremely fast decoder, with speed in
241 …It's a trade-off. It can be fine tuned, with each successive value providing roughly +~3% to speed.
263 * or fill 'dst' buffer completely with as much data as possible from 'src'.
336 - To eliminate the warning, we surround long preprocessor symbol with
356 * After init, start any new stream with LZ4_resetStream_fast().
359 * provided that it starts each new stream with LZ4_resetStream_fast().
362 * but is not compatible with memory regions containing garbage data.
394 …* Each block must be decompressed separately, calling LZ4_decompress_*() with relevant m…
452 * to be compatible with any source respecting maxBlockSize condition.
461 * The difference with the usual independent blocks is that
483 …* Actually, data can be produced by any source compliant with LZ4 format specification, and res…
487 …* and decoding function is provided with exact decompressed size of each block (exception for l…
518 * with the added ability to specify a memory segment for past data.
574 …* this function initializes the provided state with a call to something like LZ4_resetStream_fast…
575 * while LZ4_compress_fast_extState() starts with a call to LZ4_resetStream().
631 * and it would be more efficient to store such data with a flag indicating it's not compressed.
634 * For in-place compression, margin is larger, as it must be able to cope with both
656 * with maxCompressedSize == LZ4_COMPRESSBOUND(srcSize) for guaranteed compression success.
658 * so it's possible to reduce memory requirements by playing with them.
669 …enerally LZ4_COMPRESSBOUND(inputSize), but can be set to any lower value, with the risk that compr…
773 * typically with -Wno-deprecated-declarations for gcc
851 * As a consequence, use these functions in trusted environments with trusted data **only**.
862 * This is done with LZ4_initStream(), or LZ4_resetStream().