Home | Sort by relevance Sort by last modified time |
/external/qemu/block/ | |
qcow2.h | 59 uint32_t cluster_bits; member in struct:QCowHeader 83 int cluster_bits; member in struct:BDRVQcowState 124 int cluster_bits; member in struct:QCowCreateState 150 return (size + (s->cluster_size - 1)) >> s->cluster_bits; 155 int shift = s->cluster_bits + s->l2_bits; |
qcow.c | 48 uint8_t cluster_bits; member in struct:QCowHeader 58 int cluster_bits; member in struct:BDRVQcowState 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); [all...] |
/external/kernel-headers/original/linux/ | |
msdos_fs.h | 233 unsigned short cluster_bits; /* log2(cluster_size) */ member in struct:msdos_sb_info |