Lines Matching refs:length
25 - a length (number of bytes to copy from dictionary)
30 extra data can be a complement for the operand (eg: a length or a distance
39 length, up to 255 may be added in increments by consuming more bytes with a
41 around 255:1). The variable length encoding using #bits is always the same :
43 length = byte & ((1 << #bits) - 1)
44 if (!length) {
45 length = ((1 << #bits) - 1)
46 length += 255*(number of zero bytes)
47 length += first-non-zero-byte
49 length += constant (generally 2 or 3)
70 IMPORTANT NOTE : in the code some length checks are missing because certain
90 length = (byte - 17) = 4..238
103 length = 3 + (L ?: 15 + (zero_bytes * 255) + non_zero_byte)
114 length = 2
124 length = 3
131 length = 2 + (L ?: 7 + (zero_bytes * 255) + non_zero_byte)
139 length = 2 + (L ?: 31 + (zero_bytes * 255) + non_zero_byte)
147 length = 3 + L
154 length = 5 + L