Searched refs:c_byte (Results 1 - 4 of 4) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/squashfs/
H A Dunsquashfs.c160 unsigned short c_byte; local
166 ((unsigned char *) &c_byte)[1] = block[0];
167 ((unsigned char *) &c_byte)[0] = block[1];
169 if(read_bytes(start, 2, (char *)&c_byte) == FALSE)
172 TRACE("read_block: block @0x%llx, %d %s bytes\n", start, SQUASHFS_COMPRESSED_SIZE(c_byte), SQUASHFS_COMPRESSED(c_byte) ? "compressed" : "uncompressed");
176 if(SQUASHFS_COMPRESSED(c_byte)) {
181 c_byte = SQUASHFS_COMPRESSED_SIZE(c_byte);
182 if(read_bytes(start + offset, c_byte, buffe
222 int c_byte = SQUASHFS_COMPRESSED_SIZE_BLOCK(size); local
[all...]
H A Dread_fs.c70 unsigned short c_byte; local
75 ((unsigned char *) &c_byte)[1] = block[0];
76 ((unsigned char *) &c_byte)[0] = block[1];
78 read_bytes(fd, start, 2, (char *)&c_byte);
82 if(SQUASHFS_COMPRESSED(c_byte)) {
87 c_byte = SQUASHFS_COMPRESSED_SIZE(c_byte);
88 read_bytes(fd, start + offset, c_byte, buffer);
91 if((res = uncompress(block, &bytes, (const unsigned char *) buffer, c_byte)) != Z_OK) {
103 if((res = LzmaUncompress(block, &bytes, buffer, c_byte)) !
[all...]
H A Dmksquashfs.c270 int c_byte; member in struct:file_buffer
569 unsigned long c_byte; local
616 c_byte = stream->total_out;
618 if(res != Z_STREAM_END || c_byte >= size) {
626 res = LzmaCompress(s, size, d, block_size, &c_byte);
633 return (unsigned int) c_byte;
648 unsigned short c_byte; local
659 c_byte = mangle(inode_table + inode_bytes + block_offset, data_cache,
661 TRACE("Inode block @ %x, size %d\n", inode_bytes, c_byte);
663 memcpy(inode_table + inode_bytes, &c_byte, sizeo
735 unsigned short c_byte; local
771 unsigned short c_byte; local
1110 unsigned short c_byte; local
1335 unsigned short c_byte; local
1779 int c_byte, compressed_size; local
1950 unsigned int c_byte, frag_bytes; local
2026 unsigned int c_byte, frag_bytes; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/squashfs/
H A Dinode.c118 int *cur_index, int *offset, int *c_byte)
143 *c_byte = temp;
157 *c_byte = temp;
196 unsigned int c_byte = length; local
198 if (c_byte) {
200 compressed = SQUASHFS_COMPRESSED_BLOCK(c_byte);
201 c_byte = SQUASHFS_COMPRESSED_SIZE_BLOCK(c_byte);
204 ? "" : "un", (unsigned int) c_byte, srclength);
206 if (c_byte > srclengt
117 get_block_length(struct super_block *s, int *cur_index, int *offset, int *c_byte) argument
[all...]

Completed in 472 milliseconds