Searched refs:numchars (Results 1 - 6 of 6) sorted by relevance
/kernel/linux/linux-5.10/fs/ext4/ |
H A D | bitmap.c | 14 unsigned int ext4_count_free(char *bitmap, unsigned int numchars) in ext4_count_free() argument 16 return numchars * BITS_PER_BYTE - memweight(bitmap, numchars); in ext4_count_free()
|
H A D | ext4.h | 2536 extern unsigned int ext4_count_free(char *bitmap, unsigned numchars);
|
/kernel/linux/linux-6.6/fs/ext4/ |
H A D | bitmap.c | 14 unsigned int ext4_count_free(char *bitmap, unsigned int numchars) in ext4_count_free() argument 16 return numchars * BITS_PER_BYTE - memweight(bitmap, numchars); in ext4_count_free()
|
H A D | ext4.h | 2677 extern unsigned int ext4_count_free(char *bitmap, unsigned numchars);
|
/kernel/linux/linux-5.10/fs/ext2/ |
H A D | balloc.c | 1442 unsigned long ext2_count_free(struct buffer_head *map, unsigned int numchars) in ext2_count_free() argument 1444 return numchars * BITS_PER_BYTE - memweight(map->b_data, numchars); in ext2_count_free()
|
/kernel/linux/linux-6.6/fs/ext2/ |
H A D | balloc.c | 1431 unsigned long ext2_count_free(struct buffer_head *map, unsigned int numchars) in ext2_count_free() argument 1433 return numchars * BITS_PER_BYTE - memweight(map->b_data, numchars); in ext2_count_free()
|
Completed in 19 milliseconds