Lines Matching refs:bmap
40 const unsigned long *exp_bmap, const unsigned long *bmap, in __check_eq_bitmap() argument
43 if (!bitmap_equal(exp_bmap, bmap, nbits)) { in __check_eq_bitmap()
46 nbits, exp_bmap, nbits, bmap); in __check_eq_bitmap()
114 DECLARE_BITMAP(bmap, 1024); in test_zero_clear()
117 memset(bmap, 0xff, 128); in test_zero_clear()
119 expect_eq_pbl("0-22", bmap, 23); in test_zero_clear()
120 expect_eq_pbl("0-1023", bmap, 1024); in test_zero_clear()
123 bitmap_clear(bmap, 0, 9); in test_zero_clear()
124 expect_eq_pbl("9-1023", bmap, 1024); in test_zero_clear()
126 bitmap_zero(bmap, 35); in test_zero_clear()
127 expect_eq_pbl("64-1023", bmap, 1024); in test_zero_clear()
130 bitmap_clear(bmap, 79, 19); in test_zero_clear()
131 expect_eq_pbl("64-78,98-1023", bmap, 1024); in test_zero_clear()
133 bitmap_zero(bmap, 115); in test_zero_clear()
134 expect_eq_pbl("128-1023", bmap, 1024); in test_zero_clear()
137 bitmap_zero(bmap, 1024); in test_zero_clear()
138 expect_eq_pbl("", bmap, 1024); in test_zero_clear()
143 DECLARE_BITMAP(bmap, 1024); in test_fill_set()
146 memset(bmap, 0x00, 128); in test_fill_set()
148 expect_eq_pbl("", bmap, 23); in test_fill_set()
149 expect_eq_pbl("", bmap, 1024); in test_fill_set()
152 bitmap_set(bmap, 0, 9); in test_fill_set()
153 expect_eq_pbl("0-8", bmap, 1024); in test_fill_set()
155 bitmap_fill(bmap, 35); in test_fill_set()
156 expect_eq_pbl("0-63", bmap, 1024); in test_fill_set()
159 bitmap_set(bmap, 79, 19); in test_fill_set()
160 expect_eq_pbl("0-63,79-97", bmap, 1024); in test_fill_set()
162 bitmap_fill(bmap, 115); in test_fill_set()
163 expect_eq_pbl("0-127", bmap, 1024); in test_fill_set()
166 bitmap_fill(bmap, 1024); in test_fill_set()
167 expect_eq_pbl("0-1023", bmap, 1024); in test_fill_set()
290 DECLARE_BITMAP(bmap, 2048); in __test_bitmap_parselist()
303 bmap, ptest.nbits); in __test_bitmap_parselist()
308 err = bitmap_parselist(ptest.in, bmap, ptest.nbits); in __test_bitmap_parselist()
319 && !__bitmap_equal(bmap, ptest.expected, ptest.nbits)) { in __test_bitmap_parselist()
321 mode, i, ptest.in, bmap[0], in __test_bitmap_parselist()