Home
last modified time | relevance | path

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

/Linux-v5.4/fs/btrfs/
Dlzo.c317 unsigned long working_bytes; in lzo_decompress_bio() local
372 working_bytes = in_len; in lzo_decompress_bio()
386 while (working_bytes) { in lzo_decompress_bio()
387 bytes = min(working_bytes, in_page_bytes_left); in lzo_decompress_bio()
392 working_bytes -= bytes; in lzo_decompress_bio()
397 if ((working_bytes == 0 && in_page_bytes_left < LZO_LEN) in lzo_decompress_bio()
401 if (working_bytes == 0 && tot_in >= tot_len) in lzo_decompress_bio()
Dcompression.c1131 unsigned long working_bytes = total_out - buf_start; in btrfs_decompress_buf2page() local
1152 working_bytes -= buf_offset; in btrfs_decompress_buf2page()
1159 while (working_bytes > 0) { in btrfs_decompress_buf2page()
1162 bytes = min(bytes, working_bytes); in btrfs_decompress_buf2page()
1170 working_bytes -= bytes; in btrfs_decompress_buf2page()
1203 working_bytes = total_out - start_byte; in btrfs_decompress_buf2page()