Lines Matching refs:tot_in
109 unsigned long tot_in = 0; in lzo_compress_pages() local
140 while (tot_in < len) { in lzo_compress_pages()
156 tot_in += in_len; in lzo_compress_pages()
186 if (out_len == 0 && tot_in >= len) in lzo_compress_pages()
210 if (tot_in > 8192 && tot_in < tot_out) { in lzo_compress_pages()
216 if (tot_in >= len) in lzo_compress_pages()
222 bytes_left = len - tot_in; in lzo_compress_pages()
232 if (tot_out > tot_in) in lzo_compress_pages()
243 *total_in = tot_in; in lzo_compress_pages()
280 unsigned long tot_in; in lzo_decompress_biovec() local
289 tot_in = LZO_LEN; in lzo_decompress_biovec()
297 while (tot_in < tot_len) { in lzo_decompress_biovec()
301 tot_in += LZO_LEN; in lzo_decompress_biovec()
303 tot_in += in_len; in lzo_decompress_biovec()
331 tot_in += in_page_bytes_left; in lzo_decompress_biovec()
333 if (working_bytes == 0 && tot_in >= tot_len) in lzo_decompress_biovec()