Lines Matching refs:size
70 unsigned int size;
93 size = le32_to_cpu(index->size) + 1;
94 if (size > SQUASHFS_NAME_LEN)
98 &index_offset, size);
102 index->name[size] = '\0';
138 unsigned int dir_count, size;
183 size = le16_to_cpu(dire->size) + 1;
185 /* size should never be larger than SQUASHFS_NAME_LEN */
186 if (size > SQUASHFS_NAME_LEN)
190 &block, &offset, size);
194 length += sizeof(*dire) + size;
199 if (len == size && !strncmp(name, dire->name, len)) {