Searched refs:nibblemap (Results 1 – 5 of 5) sorted by relevance
/linux-2.6.39/fs/ext3/ |
D | bitmap.c | 16 static const int nibblemap[] = {4, 3, 3, 2, 3, 2, 2, 1, 3, 2, 2, 1, 2, 1, 1, 0}; variable 26 sum += nibblemap[map->b_data[i] & 0xf] + in ext3_count_free() 27 nibblemap[(map->b_data[i] >> 4) & 0xf]; in ext3_count_free()
|
/linux-2.6.39/fs/ext4/ |
D | bitmap.c | 16 static const int nibblemap[] = {4, 3, 3, 2, 3, 2, 2, 1, 3, 2, 2, 1, 2, 1, 1, 0}; variable 25 sum += nibblemap[map->b_data[i] & 0xf] + in ext4_count_free() 26 nibblemap[(map->b_data[i] >> 4) & 0xf]; in ext4_count_free()
|
/linux-2.6.39/fs/minix/ |
D | bitmap.c | 19 static const int nibblemap[] = { 4,3,3,2,3,2,2,1,3,2,2,1,2,1,1,0 }; variable 32 sum += nibblemap[bh->b_data[j] & 0xf] in count_free() 33 + nibblemap[(bh->b_data[j]>>4) & 0xf]; in count_free() 40 sum += nibblemap[bh->b_data[j] & 0xf] in count_free() 41 + nibblemap[(bh->b_data[j]>>4) & 0xf]; in count_free() 47 sum += nibblemap[i & 0xf] + nibblemap[(i>>4) & 0xf]; in count_free() 48 sum += nibblemap[(i>>8) & 0xf] + nibblemap[(i>>12) & 0xf]; in count_free()
|
/linux-2.6.39/fs/affs/ |
D | bitmap.c | 15 static const int nibblemap[] = { 0,1,1,2,1,2,2,3,1,2,2,3,2,3,3,4 }; variable 29 free += nibblemap[tmp & 0xf]; in affs_count_free_bits()
|
/linux-2.6.39/fs/ext2/ |
D | balloc.c | 1448 static const int nibblemap[] = {4, 3, 3, 2, 3, 2, 2, 1, 3, 2, 2, 1, 2, 1, 1, 0}; variable 1458 sum += nibblemap[map->b_data[i] & 0xf] + in ext2_count_free() 1459 nibblemap[(map->b_data[i] >> 4) & 0xf]; in ext2_count_free()
|