Home
last modified time | relevance | path

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

/Linux-v5.10/fs/btrfs/
Dlzo.c293 unsigned long working_bytes; in lzo_decompress_bio() local
348 working_bytes = in_len; in lzo_decompress_bio()
362 while (working_bytes) { in lzo_decompress_bio()
363 bytes = min(working_bytes, in_page_bytes_left); in lzo_decompress_bio()
368 working_bytes -= bytes; in lzo_decompress_bio()
373 if ((working_bytes == 0 && in_page_bytes_left < LZO_LEN) in lzo_decompress_bio()
377 if (working_bytes == 0 && tot_in >= tot_len) in lzo_decompress_bio()
Dcompression.c1240 unsigned long working_bytes = total_out - buf_start; in btrfs_decompress_buf2page() local
1261 working_bytes -= buf_offset; in btrfs_decompress_buf2page()
1268 while (working_bytes > 0) { in btrfs_decompress_buf2page()
1271 bytes = min(bytes, working_bytes); in btrfs_decompress_buf2page()
1279 working_bytes -= bytes; in btrfs_decompress_buf2page()
1312 working_bytes = total_out - start_byte; in btrfs_decompress_buf2page()