Home
last modified time | relevance | path

Searched refs:run_length (Results 1 – 1 of 1) sorted by relevance

/linux-6.15/lib/lzo/
H A Dlzo1x_compress.c55 u32 run_length = 0; in LZO_SAFE() local
114 run_length = ir - ip; in LZO_SAFE()
115 if (run_length > MAX_ZERO_RUN_LENGTH) in LZO_SAFE()
116 run_length = MAX_ZERO_RUN_LENGTH; in LZO_SAFE()
170 if (unlikely(run_length)) { in LZO_SAFE()
171 ip += run_length; in LZO_SAFE()
172 run_length -= MIN_ZERO_RUN_LENGTH; in LZO_SAFE()
174 put_unaligned_le32((run_length << 21) | 0xfffc18 in LZO_SAFE()
175 | (run_length & 0x7), op); in LZO_SAFE()
177 run_length = 0; in LZO_SAFE()