Lines Matching +full:- +full:- +full:- +full:- +full:-
8 - Firstly, read "LZ4 Streaming API Basics".
9 - This is relatively advanced application example.
10 - Output file is not compatible with lz4frame and platform dependent.
15 - Line by line incremental (de)compression.
16 - Handle huge file in small amount of memory
17 - Generally better compression ratio than Block API
18 - Non-uniform block size
29 +--------+
31 +---+----+
39 +----+
42 +--------+-+------+
44 +--------+---+----+
52 +----+ +----+
55 +--------+-+------+-+------+
57 +--------+--------+---+----+
65 +----+ +----+
68 ------+--------+-+------+-+--------+
70 ------+--------+--------+-----+----+
80 +-----+
83 ------+--------+--------+----------+--+-------+
85 ------+--------+--------+----------+-----+----+
117 - Read compressed line from the file to buffer.
118 - Decompress it to the ringbuffer.
119 - Output decompressed plain text line to the file.
120 - Forward ringbuffer offset. If offset exceedes end of the ringbuffer, reset it.