Lines Matching refs:LZO_LEN
18 #define LZO_LEN 4 macro
103 memcpy(buf, &dlen, LZO_LEN); in write_compress_length()
110 memcpy(&dlen, buf, LZO_LEN); in read_compress_length()
155 out_offset = LZO_LEN; in lzo_compress_pages()
156 tot_out = LZO_LEN; in lzo_compress_pages()
159 pg_bytes_left = PAGE_SIZE - LZO_LEN; in lzo_compress_pages()
175 tot_out += LZO_LEN; in lzo_compress_pages()
176 out_offset += LZO_LEN; in lzo_compress_pages()
177 pg_bytes_left -= LZO_LEN; in lzo_compress_pages()
200 if ((out_len == 0 && pg_bytes_left < LZO_LEN) || in lzo_compress_pages()
324 tot_in = LZO_LEN; in lzo_decompress_bio()
325 in_offset = LZO_LEN; in lzo_decompress_bio()
326 in_page_bytes_left = PAGE_SIZE - LZO_LEN; in lzo_decompress_bio()
332 in_page_bytes_left -= LZO_LEN; in lzo_decompress_bio()
333 in_offset += LZO_LEN; in lzo_decompress_bio()
334 tot_in += LZO_LEN; in lzo_decompress_bio()
373 if ((working_bytes == 0 && in_page_bytes_left < LZO_LEN) in lzo_decompress_bio()
435 if (srclen < LZO_LEN || srclen > max_segment_len + LZO_LEN * 2) in lzo_decompress()
441 data_in += LZO_LEN; in lzo_decompress()
444 if (in_len != srclen - LZO_LEN * 2) { in lzo_decompress()
448 data_in += LZO_LEN; in lzo_decompress()