Lines Matching refs:of

10   of this analysis is lib/lzo/lzo1x_decompress_safe.c. No analysis was made on
12 the format matches the standard one. The purpose of this document is to
18 The stream is composed of a series of instructions, operands, and data. The
21 opcode and on the number of literals copied by previous instruction. The
25 - a length (number of bytes to copy from dictionary)
26 - the number of literals to copy, which is retained in variable "state"
27 as a piece of information for next instructions.
33 The first byte of the block follows a different encoding from other bytes, it
38 of bits in the operand. If the number of bits isn't enough to represent the
40 rate of at most 255 per extra byte (thus the compression ratio cannot exceed
46 length += 255*(number of zero bytes)
58 are copied before starting the next instruction. The number of literals that
59 were copied may change the meaning and behaviour of the next instruction. In
62 in this implementation. This number of immediate literals to be copied is
63 generally encoded in the last two bits of the instruction but may also be
64 taken from the last two bits of an extra operand (eg: distance).
66 End of stream is declared when a block copy of distance 0 is seen. Only one
71 instructions are called under the assumption that a certain number of bytes
97 Depends on the number of literals copied by the last instruction.
99 encoding will be a copy of 4 or more literal, and must be interpreted
107 the instruction's opcode or distance), the instruction is a copy of a
110 bytes to encode a copy of 2 other bytes but it encodes the number of
120 state == 4), the instruction becomes a copy of a 3-byte block from the
130 Copy of a block within 16..48kB distance (preferably less than 10B)
135 End of stream is reached if distance == 16384
138 Copy of small block within 16kB distance (preferably less than 34B)
161 analysis of the decompression code available in Linux 3.16-rc5. The code is