Lines Matching full:1024

178 	DECLARE_BITMAP(bmap, 1024);  in test_zero_clear()
184 expect_eq_pbl("0-1023", bmap, 1024); in test_zero_clear()
188 expect_eq_pbl("9-1023", bmap, 1024); in test_zero_clear()
191 expect_eq_pbl("64-1023", bmap, 1024); in test_zero_clear()
195 expect_eq_pbl("64-78,98-1023", bmap, 1024); in test_zero_clear()
198 expect_eq_pbl("128-1023", bmap, 1024); in test_zero_clear()
201 bitmap_zero(bmap, 1024); in test_zero_clear()
202 expect_eq_pbl("", bmap, 1024); in test_zero_clear()
207 DECLARE_BITMAP(bmap, 1024); in test_fill_set()
213 expect_eq_pbl("", bmap, 1024); in test_fill_set()
217 expect_eq_pbl("0-8", bmap, 1024); in test_fill_set()
220 expect_eq_pbl("0-63", bmap, 1024); in test_fill_set()
224 expect_eq_pbl("0-63,79-97", bmap, 1024); in test_fill_set()
227 expect_eq_pbl("0-127", bmap, 1024); in test_fill_set()
230 bitmap_fill(bmap, 1024); in test_fill_set()
231 expect_eq_pbl("0-1023", bmap, 1024); in test_fill_set()
236 DECLARE_BITMAP(bmap1, 1024); in test_copy()
237 DECLARE_BITMAP(bmap2, 1024); in test_copy()
239 bitmap_zero(bmap1, 1024); in test_copy()
240 bitmap_zero(bmap2, 1024); in test_copy()
245 expect_eq_pbl("0-18", bmap2, 1024); in test_copy()
249 expect_eq_pbl("0-18", bmap2, 1024); in test_copy()
253 bitmap_copy(bmap2, bmap1, 1024); in test_copy()
254 expect_eq_pbl("0-108", bmap2, 1024); in test_copy()
256 bitmap_fill(bmap2, 1024); in test_copy()
257 bitmap_copy(bmap2, bmap1, 1024); in test_copy()
258 expect_eq_pbl("0-108", bmap2, 1024); in test_copy()
264 bitmap_fill(bmap2, 1024); in test_copy()
266 expect_eq_pbl("0-108,128-1023", bmap2, 1024); in test_copy()
268 bitmap_fill(bmap2, 1024); in test_copy()
270 expect_eq_pbl("0-108,128-1023", bmap2, 1024); in test_copy()
279 DECLARE_BITMAP(bmap, 1024); in test_replace()
283 bitmap_zero(bmap, 1024); in test_replace()
287 bitmap_zero(bmap, 1024); in test_replace()
291 bitmap_fill(bmap, 1024); in test_replace()
295 bitmap_fill(bmap, 1024); in test_replace()
498 DECLARE_BITMAP(bmap1, 1024); in test_mem_optimisations()
499 DECLARE_BITMAP(bmap2, 1024); in test_mem_optimisations()
502 for (start = 0; start < 1024; start += 8) { in test_mem_optimisations()
503 for (nbits = 0; nbits < 1024 - start; nbits += 8) { in test_mem_optimisations()
509 if (!bitmap_equal(bmap1, bmap2, 1024)) { in test_mem_optimisations()
513 if (!__bitmap_equal(bmap1, bmap2, 1024)) { in test_mem_optimisations()
520 if (!bitmap_equal(bmap1, bmap2, 1024)) { in test_mem_optimisations()
524 if (!__bitmap_equal(bmap1, bmap2, 1024)) { in test_mem_optimisations()