Lines Matching refs:copy

808 	DECLARE_BITMAP(copy, 500);  in test_for_each_set_bit_wrap()
821 bitmap_zero(copy, 500); in test_for_each_set_bit_wrap()
824 bitmap_set(copy, bit, 1); in test_for_each_set_bit_wrap()
826 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit_wrap()
833 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit()
837 bitmap_zero(copy, 500); in test_for_each_set_bit()
847 bitmap_set(copy, bit, 1); in test_for_each_set_bit()
849 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit()
855 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit_from()
870 bitmap_zero(copy, 500); in test_for_each_set_bit_from()
874 bitmap_set(copy, bit, 1); in test_for_each_set_bit_from()
878 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bit_from()
885 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit()
889 bitmap_fill(copy, 500); in test_for_each_clear_bit()
899 bitmap_clear(copy, bit, 1); in test_for_each_clear_bit()
901 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bit()
907 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit_from()
922 bitmap_fill(copy, 500); in test_for_each_clear_bit_from()
926 bitmap_clear(copy, bit, 1); in test_for_each_clear_bit_from()
930 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bit_from()
937 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange()
941 bitmap_zero(copy, 500); in test_for_each_set_bitrange()
951 bitmap_set(copy, s, e-s); in test_for_each_set_bitrange()
953 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bitrange()
959 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange()
963 bitmap_fill(copy, 500); in test_for_each_clear_bitrange()
973 bitmap_clear(copy, s, e-s); in test_for_each_clear_bitrange()
975 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bitrange()
981 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange_from()
996 bitmap_zero(copy, 500); in test_for_each_set_bitrange_from()
1000 bitmap_set(copy, s, e - s); in test_for_each_set_bitrange_from()
1004 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bitrange_from()
1011 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange_from()
1026 bitmap_fill(copy, 500); in test_for_each_clear_bitrange_from()
1030 bitmap_clear(copy, s, e - s); in test_for_each_clear_bitrange_from()
1034 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bitrange_from()