Searched refs:bmap (Results 1 – 1 of 1) sorted by relevance
/lib/ |
D | test_bitmap.c | 75 const unsigned long *exp_bmap, const unsigned long *bmap, in __check_eq_bitmap() argument 78 if (!bitmap_equal(exp_bmap, bmap, nbits)) { in __check_eq_bitmap() 81 nbits, exp_bmap, nbits, bmap); in __check_eq_bitmap() 195 DECLARE_BITMAP(bmap, 1024); in test_zero_clear() 198 memset(bmap, 0xff, 128); in test_zero_clear() 200 expect_eq_pbl("0-22", bmap, 23); in test_zero_clear() 201 expect_eq_pbl("0-1023", bmap, 1024); in test_zero_clear() 204 bitmap_clear(bmap, 0, 9); in test_zero_clear() 205 expect_eq_pbl("9-1023", bmap, 1024); in test_zero_clear() 207 bitmap_zero(bmap, 35); in test_zero_clear() [all …]
|