Lines Matching defs:cb_size
454 * @cb_size: size of compression block @cb_start in bytes
460 * and @cb_size is the size of @cb_start in bytes (8-64kiB).
465 u8 *const cb_start, const u32 cb_size)
471 u8 *cb_end = cb_start + cb_size; /* End of cb. */
483 ntfs_log_trace("Entering, cb_size = 0x%x.\n", (unsigned)cb_size);
717 u32 cb_size;
773 cb_size = na->compression_block_size;
774 cb_size_mask = cb_size - 1UL;
778 cb = (u8*)ntfs_malloc(cb_size);
783 dest = (u8*)ntfs_malloc(cb_size);
799 end_vcn = ((pos + count + cb_size - 1) & ~cb_size_mask) >>
804 cb_end = cb + cb_size;
825 to_read = min(count, cb_size - ofs);
846 to_read = min(count, cb_size - ofs);
905 to_read = cb_size;
948 to_read = min(count, cb_size - ofs);
950 if (ntfs_decompress(dest, decompsz, cb, cb_size) < 0) {