• Home
  • Raw
  • Download

Lines Matching +full:minimum +full:- +full:bulk

2    LZ4F - LZ4-Frame library
4 Copyright (C) 2011-2020, Yann Collet.
5 BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
31 - LZ4 source repository : https://github.com/lz4/lz4
32 - LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
35 /* LZ4F is a stand-alone API able to create and decode LZ4 frames
52 /* --- Dependency --- */
64 /*-***************************************************************
91 # define LZ4F_DEPRECATE(x) x /* __declspec(deprecated) x - only works with C++ */
100 /*-************************************
109 /*-************************************
178 …LZ4F_contentChecksum_t contentChecksumFlag; /* 1: add a 32-bit checksum of frame's decompressed da…
179 …LZ4F_frameType_t frameType; /* read-only field : LZ4F_frame or LZ4F_skippableFrame…
203 /*-*********************************
208 * Compress srcBuffer content into an LZ4-compressed frame.
215 * consider compiling `lz4frame.c` with compile-time macro LZ4F_HEAPMODE set to 1 instead.
243 /*-***********************************
254 /*--- Resource Management ---*/
278 /*---- Compression ----*/
283 /* Size in bytes of a block header in little-endian format. Highest bit indicates if block data is …
286 /* Size in bytes of a block checksum footer in little-endian format. */
304 * Provides minimum dstCapacity required to guarantee success of
309 * if the output buffer is gradually filled up instead of emptied and re-used from its start,
314 …includes the possibility that internal buffer might already be filled by up to (blockSize-1) bytes.
325 * After an error, the state is left in a UB state, and must be re-initialized or freed.
365 /*-*********************************
398 /*-***********************************
510 * In which case, it's necessary to reset it, before re-using it.
525 * to generate a high-quality dictionary from a set of samples.
564 * Bulk processing dictionary compression
568 * The Bulk processing dictionary API makes it possible to share this cost
572 * Note that there is no corresponding bulk API for the decompression side,
581 …Dict can be created once and shared by multiple threads concurrently, since its usage is read-only.
652 /* --- Error List --- */
704 * After an error, the state is left in a UB state, and must be re-initialized or freed.