Home | History | Annotate | Download | only in block

Lines Matching defs:cluster_bits

48     uint8_t cluster_bits;
58 int cluster_bits;
112 if (header.size <= 1 || header.cluster_bits < 9)
119 s->cluster_bits = header.cluster_bits;
120 s->cluster_size = 1 << s->cluster_bits;
121 s->cluster_sectors = 1 << (s->cluster_bits - 9);
125 s->cluster_offset_mask = (1LL << (63 - s->cluster_bits)) - 1;
128 shift = s->cluster_bits + s->l2_bits;
263 l1_index = offset >> (s->l2_bits + s->cluster_bits);
317 l2_index = (offset >> s->cluster_bits) & (s->l2_size - 1);
366 (uint64_t)compressed_size << (63 - s->cluster_bits);
430 csize = cluster_offset >> (63 - s->cluster_bits);
783 header.cluster_bits = 9; /* 512 byte cluster to avoid copying
787 header.cluster_bits = 12; /* 4 KB clusters */
791 shift = header.cluster_bits + header.l2_bits;