run_length         43 lib/lzo/lzo1x_compress.c 		u32 run_length = 0;
run_length        104 lib/lzo/lzo1x_compress.c 			run_length = ir - ip;
run_length        105 lib/lzo/lzo1x_compress.c 			if (run_length > MAX_ZERO_RUN_LENGTH)
run_length        106 lib/lzo/lzo1x_compress.c 				run_length = MAX_ZERO_RUN_LENGTH;
run_length        153 lib/lzo/lzo1x_compress.c 		if (unlikely(run_length)) {
run_length        154 lib/lzo/lzo1x_compress.c 			ip += run_length;
run_length        155 lib/lzo/lzo1x_compress.c 			run_length -= MIN_ZERO_RUN_LENGTH;
run_length        156 lib/lzo/lzo1x_compress.c 			put_unaligned_le32((run_length << 21) | 0xfffc18
run_length        157 lib/lzo/lzo1x_compress.c 					   | (run_length & 0x7), op);
run_length        159 lib/lzo/lzo1x_compress.c 			run_length = 0;