Lines Matching defs:table
16 * location on disk and compressed size using a fragment lookup table.
17 * Like everything in Squashfs this fragment lookup table is itself stored
18 * compressed into metadata blocks. A second index table is used to locate
19 * these. This second index table for speed of access (and because it
32 * Look-up fragment using the fragment index table. Return the on disk
61 * Read the uncompressed fragment lookup table indexes off disk into memory
67 __le64 *table;
70 * Sanity check, length bytes should not extend into the next table -
72 * incorrectly larger than the next table start
77 table = squashfs_read_table(sb, fragment_table_start, length);
80 * table[0] points to the first fragment table metadata block, this
83 if (!IS_ERR(table) && le64_to_cpu(table[0]) >= fragment_table_start) {
84 kfree(table);
88 return table;