Searched refs:bitmap_count (Results 1 – 7 of 7) sorted by relevance
/linux-4.1.27/mm/ |
D | cma.c | 87 unsigned long bitmap_no, bitmap_count; in cma_clear_bitmap() local 90 bitmap_count = cma_bitmap_pages_to_bits(cma, count); in cma_clear_bitmap() 93 bitmap_clear(cma->bitmap, bitmap_no, bitmap_count); in cma_clear_bitmap() 365 unsigned long bitmap_maxno, bitmap_no, bitmap_count; in cma_alloc() local 381 bitmap_count = cma_bitmap_pages_to_bits(cma, count); in cma_alloc() 386 bitmap_maxno, start, bitmap_count, mask, in cma_alloc() 392 bitmap_set(cma->bitmap, bitmap_no, bitmap_count); in cma_alloc()
|
/linux-4.1.27/fs/ext4/ |
D | balloc.c | 664 ext4_fsblk_t bitmap_count; in ext4_count_free_clusters() local 670 bitmap_count = 0; in ext4_count_free_clusters() 691 bitmap_count += x; in ext4_count_free_clusters() 697 desc_count, bitmap_count); in ext4_count_free_clusters() 698 return bitmap_count; in ext4_count_free_clusters()
|
D | ialloc.c | 1190 unsigned long bitmap_count, x; in ext4_count_free_inodes() local 1195 bitmap_count = 0; in ext4_count_free_inodes() 1211 bitmap_count += x; in ext4_count_free_inodes() 1216 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count); in ext4_count_free_inodes()
|
/linux-4.1.27/fs/ext3/ |
D | ialloc.c | 653 unsigned long bitmap_count, x; in ext3_count_free_inodes() local 658 bitmap_count = 0; in ext3_count_free_inodes() 673 bitmap_count += x; in ext3_count_free_inodes() 677 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count); in ext3_count_free_inodes()
|
D | balloc.c | 1785 ext3_fsblk_t bitmap_count; in ext3_count_free_blocks() local 1791 bitmap_count = 0; in ext3_count_free_blocks() 1808 bitmap_count += x; in ext3_count_free_blocks() 1814 desc_count, bitmap_count); in ext3_count_free_blocks() 1815 return bitmap_count; in ext3_count_free_blocks()
|
/linux-4.1.27/fs/ext2/ |
D | ialloc.c | 623 unsigned long bitmap_count = 0; in ext2_count_free_inodes() local 642 bitmap_count += x; in ext2_count_free_inodes() 648 desc_count, bitmap_count); in ext2_count_free_inodes()
|
D | balloc.c | 1452 unsigned long bitmap_count, x; in ext2_count_free_blocks() local 1457 bitmap_count = 0; in ext2_count_free_blocks() 1472 bitmap_count += x; in ext2_count_free_blocks() 1477 desc_count, bitmap_count); in ext2_count_free_blocks() 1478 return bitmap_count; in ext2_count_free_blocks()
|