Searched defs:cb_start (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dcompress.c70 * @cb_start: compression block to decompress
71 * @cb_size: size of compression block @cb_start in bytes
73 * This decompresses the compression block @cb_start into the destination
76 * @cb_start is a pointer to the compression block which needs decompressing
77 * and @cb_size is the size of @cb_start in bytes (8-64kiB).
82 u8 *const cb_start, const u32 cb_size)
88 u8 *cb_end = cb_start + cb_size; /* End of cb. */
89 u8 *cb = cb_start; /* Current position in cb. */
103 cb - cb_start);
81 ntfs_decompress(u8 *dest, const u32 dest_size, u8 *const cb_start, const u32 cb_size) argument

Completed in 23 milliseconds