Home
last modified time | relevance | path

Searched refs:numchars (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/kernel/fs/ext4/
H A Dbitmap.c14 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 Dext4.h2553 extern unsigned int ext4_count_free(char *bitmap, unsigned numchars);
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-mako/
H A DCVE-2022-40023.patch98 + @pytest.mark.parametrize("comma,numchars", [(",", 48), ("", 47)])
99 + def test_pagetag(self, comma, numchars):
116 + (2, numchars),
/OK3568_Linux_fs/kernel/fs/ext2/
H A Dballoc.c1442 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()