Lines Matching full:lz4
2 LZ4 HC - High Compression Mode of LZ4
31 - LZ4 source repository : https://github.com/lz4/lz4
32 - LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
42 /* note : lz4hc is not an independent module, it requires lz4.h/lz4.c for proper compilation */
43 #include "lz4.h" /* stddef, LZ4LIB_API, LZ4_DEPRECATED */
59 * Compression is guaranteed to succeed if `dstCapacity >= LZ4_compressBound(srcSize)` (see "lz4.h")
60 * Max supported `srcSize` value is LZ4_MAX_INPUT_SIZE (see "lz4.h")
70 * Decompression functions are provided within "lz4.h" (BSD license)
90 * These functions create and release memory for LZ4 HC streaming state.
132 * Using these definitions makes the code vulnerable to potential API break when upgrading LZ4
188 This structure allows static allocation of LZ4 HC streaming state.
192 When invoking LZ4 from a DLL, use create/free functions instead, which are API and ABI stable.
199 /* see lz4.h LZ4_DISABLE_DEPRECATE_WARNINGS to turn off deprecation warnings */