• Home
  • Raw
  • Download

Lines Matching full:1024

110 	DECLARE_BITMAP(bmap, 1024);  in test_zero_clear()
116 expect_eq_pbl("0-1023", bmap, 1024); in test_zero_clear()
120 expect_eq_pbl("9-1023", bmap, 1024); in test_zero_clear()
123 expect_eq_pbl("64-1023", bmap, 1024); in test_zero_clear()
127 expect_eq_pbl("64-78,98-1023", bmap, 1024); in test_zero_clear()
130 expect_eq_pbl("128-1023", bmap, 1024); in test_zero_clear()
133 bitmap_zero(bmap, 1024); in test_zero_clear()
134 expect_eq_pbl("", bmap, 1024); in test_zero_clear()
139 DECLARE_BITMAP(bmap, 1024); in test_fill_set()
145 expect_eq_pbl("", bmap, 1024); in test_fill_set()
149 expect_eq_pbl("0-8", bmap, 1024); in test_fill_set()
152 expect_eq_pbl("0-63", bmap, 1024); in test_fill_set()
156 expect_eq_pbl("0-63,79-97", bmap, 1024); in test_fill_set()
159 expect_eq_pbl("0-127", bmap, 1024); in test_fill_set()
162 bitmap_fill(bmap, 1024); in test_fill_set()
163 expect_eq_pbl("0-1023", bmap, 1024); in test_fill_set()
168 DECLARE_BITMAP(bmap1, 1024); in test_copy()
169 DECLARE_BITMAP(bmap2, 1024); in test_copy()
171 bitmap_zero(bmap1, 1024); in test_copy()
172 bitmap_zero(bmap2, 1024); in test_copy()
177 expect_eq_pbl("0-18", bmap2, 1024); in test_copy()
181 expect_eq_pbl("0-18", bmap2, 1024); in test_copy()
185 bitmap_copy(bmap2, bmap1, 1024); in test_copy()
186 expect_eq_pbl("0-108", bmap2, 1024); in test_copy()
188 bitmap_fill(bmap2, 1024); in test_copy()
189 bitmap_copy(bmap2, bmap1, 1024); in test_copy()
190 expect_eq_pbl("0-108", bmap2, 1024); in test_copy()
196 bitmap_fill(bmap2, 1024); in test_copy()
198 expect_eq_pbl("0-108,128-1023", bmap2, 1024); in test_copy()
200 bitmap_fill(bmap2, 1024); in test_copy()
202 expect_eq_pbl("0-108,128-1023", bmap2, 1024); in test_copy()
329 DECLARE_BITMAP(bmap1, 1024); in test_mem_optimisations()
330 DECLARE_BITMAP(bmap2, 1024); in test_mem_optimisations()
333 for (start = 0; start < 1024; start += 8) { in test_mem_optimisations()
334 for (nbits = 0; nbits < 1024 - start; nbits += 8) { in test_mem_optimisations()
340 if (!bitmap_equal(bmap1, bmap2, 1024)) { in test_mem_optimisations()
344 if (!__bitmap_equal(bmap1, bmap2, 1024)) { in test_mem_optimisations()
351 if (!bitmap_equal(bmap1, bmap2, 1024)) { in test_mem_optimisations()
355 if (!__bitmap_equal(bmap1, bmap2, 1024)) { in test_mem_optimisations()