Lines Matching refs:c_byte
89 int *cur_index, int *offset, int *c_byte) in get_block_length() argument
114 *c_byte = temp; in get_block_length()
128 *c_byte = temp; in get_block_length()
167 unsigned int c_byte = length; in squashfs_read_data() local
169 if (c_byte) { in squashfs_read_data()
171 compressed = SQUASHFS_COMPRESSED_BLOCK(c_byte); in squashfs_read_data()
173 c_byte = SQUASHFS_COMPRESSED_SIZE_BLOCK(c_byte); in squashfs_read_data()
176 ? "" : "un", (unsigned int) c_byte); in squashfs_read_data()
181 for (b = 1; bytes < c_byte; b++) { in squashfs_read_data()
189 &c_byte))) in squashfs_read_data()
193 compressed = SQUASHFS_COMPRESSED(c_byte); in squashfs_read_data()
195 c_byte = SQUASHFS_COMPRESSED_SIZE(c_byte); in squashfs_read_data()
198 ? "" : "un", (unsigned int) c_byte); in squashfs_read_data()
200 for (b = 1; bytes < c_byte; b++) { in squashfs_read_data()
212 avail_bytes = (c_byte - bytes) > (msblk->devblksize - offset) ? in squashfs_read_data()
214 c_byte - bytes; in squashfs_read_data()
231 msblk->stream.avail_in = c_byte; in squashfs_read_data()
249 *next_index = index + c_byte + (length ? 0 : in squashfs_read_data()