Home
last modified time | relevance | path

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

/Linux-v4.19/fs/btrfs/
Dlzo.c295 unsigned long working_bytes; in lzo_decompress_bio() local
350 working_bytes = in_len; in lzo_decompress_bio()
364 while (working_bytes) { in lzo_decompress_bio()
365 bytes = min(working_bytes, in_page_bytes_left); in lzo_decompress_bio()
370 working_bytes -= bytes; in lzo_decompress_bio()
375 if ((working_bytes == 0 && in_page_bytes_left < LZO_LEN) in lzo_decompress_bio()
379 if (working_bytes == 0 && tot_in >= tot_len) in lzo_decompress_bio()
Dcompression.c1130 unsigned long working_bytes = total_out - buf_start; in btrfs_decompress_buf2page() local
1151 working_bytes -= buf_offset; in btrfs_decompress_buf2page()
1158 while (working_bytes > 0) { in btrfs_decompress_buf2page()
1161 bytes = min(bytes, working_bytes); in btrfs_decompress_buf2page()
1169 working_bytes -= bytes; in btrfs_decompress_buf2page()
1202 working_bytes = total_out - start_byte; in btrfs_decompress_buf2page()