Searched refs:bmap (Results 1 – 1 of 1) sorted by relevance
/lib/ |
D | test_bitmap.c | 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() [all …]
|