Searched refs:bitmap_count (Results  1 – 5 of 5) sorted by relevance
| /Linux-v5.4/mm/ | 
| D | cma.c | 86 	unsigned long bitmap_no, bitmap_count;  in cma_clear_bitmap()  local89 	bitmap_count = cma_bitmap_pages_to_bits(cma, count);  in cma_clear_bitmap()
 92 	bitmap_clear(cma->bitmap, bitmap_no, bitmap_count);  in cma_clear_bitmap()
 423 	unsigned long bitmap_maxno, bitmap_no, bitmap_count;  in cma_alloc()  local
 440 	bitmap_count = cma_bitmap_pages_to_bits(cma, count);  in cma_alloc()
 442 	if (bitmap_count > bitmap_maxno)  in cma_alloc()
 448 				bitmap_maxno, start, bitmap_count, mask,  in cma_alloc()
 454 		bitmap_set(cma->bitmap, bitmap_no, bitmap_count);  in cma_alloc()
 
 | 
| /Linux-v5.4/fs/ext4/ | 
| D | balloc.c | 686 	ext4_fsblk_t bitmap_count;  in ext4_count_free_clusters()  local692 	bitmap_count = 0;  in ext4_count_free_clusters()
 715 		bitmap_count += x;  in ext4_count_free_clusters()
 721 	       desc_count, bitmap_count);  in ext4_count_free_clusters()
 722 	return bitmap_count;  in ext4_count_free_clusters()
 
 | 
| D | ialloc.c | 1280 	unsigned long bitmap_count, x;  in ext4_count_free_inodes()  local1285 	bitmap_count = 0;  in ext4_count_free_inodes()
 1303 		bitmap_count += x;  in ext4_count_free_inodes()
 1308 	       le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);  in ext4_count_free_inodes()
 
 | 
| /Linux-v5.4/fs/ext2/ | 
| D | balloc.c | 1472 	unsigned long bitmap_count, x;  in ext2_count_free_blocks()  local1477 	bitmap_count = 0;  in ext2_count_free_blocks()
 1492 		bitmap_count += x;  in ext2_count_free_blocks()
 1497 		desc_count, bitmap_count);  in ext2_count_free_blocks()
 1498 	return bitmap_count;  in ext2_count_free_blocks()
 
 | 
| D | ialloc.c | 628 	unsigned long bitmap_count = 0;  in ext2_count_free_inodes()  local647 		bitmap_count += x;  in ext2_count_free_inodes()
 653 		desc_count, bitmap_count);  in ext2_count_free_inodes()
 
 |