Lines Matching refs:orig
779 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_wrap()
783 bitmap_zero(orig, 500); in test_for_each_set_bit_wrap()
787 bitmap_set(orig, bit, 1); in test_for_each_set_bit_wrap()
790 bitmap_set(orig, 100, 50); in test_for_each_set_bit_wrap()
795 for_each_set_bit_wrap(bit, orig, 500, wr) in test_for_each_set_bit_wrap()
798 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit_wrap()
804 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit()
808 bitmap_zero(orig, 500); in test_for_each_set_bit()
813 bitmap_set(orig, bit, 1); in test_for_each_set_bit()
816 bitmap_set(orig, 100, 50); in test_for_each_set_bit()
818 for_each_set_bit(bit, orig, 500) in test_for_each_set_bit()
821 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit()
826 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_from()
830 bitmap_zero(orig, 500); in test_for_each_set_bit_from()
834 bitmap_set(orig, bit, 1); in test_for_each_set_bit_from()
837 bitmap_set(orig, 100, 50); in test_for_each_set_bit_from()
845 for_each_set_bit_from(bit, orig, 500) in test_for_each_set_bit_from()
848 bitmap_copy(tmp, orig, 500); in test_for_each_set_bit_from()
856 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit()
860 bitmap_fill(orig, 500); in test_for_each_clear_bit()
865 bitmap_clear(orig, bit, 1); in test_for_each_clear_bit()
868 bitmap_clear(orig, 100, 50); in test_for_each_clear_bit()
870 for_each_clear_bit(bit, orig, 500) in test_for_each_clear_bit()
873 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bit()
878 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit_from()
882 bitmap_fill(orig, 500); in test_for_each_clear_bit_from()
886 bitmap_clear(orig, bit, 1); in test_for_each_clear_bit_from()
889 bitmap_clear(orig, 100, 50); in test_for_each_clear_bit_from()
897 for_each_clear_bit_from(bit, orig, 500) in test_for_each_clear_bit_from()
900 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bit_from()
908 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange()
912 bitmap_zero(orig, 500); in test_for_each_set_bitrange()
917 bitmap_set(orig, s, 1); in test_for_each_set_bitrange()
920 bitmap_set(orig, 100, 50); in test_for_each_set_bitrange()
922 for_each_set_bitrange(s, e, orig, 500) in test_for_each_set_bitrange()
925 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bitrange()
930 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange()
934 bitmap_fill(orig, 500); in test_for_each_clear_bitrange()
939 bitmap_clear(orig, s, 1); in test_for_each_clear_bitrange()
942 bitmap_clear(orig, 100, 50); in test_for_each_clear_bitrange()
944 for_each_clear_bitrange(s, e, orig, 500) in test_for_each_clear_bitrange()
947 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bitrange()
952 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange_from()
956 bitmap_zero(orig, 500); in test_for_each_set_bitrange_from()
960 bitmap_set(orig, s, 1); in test_for_each_set_bitrange_from()
963 bitmap_set(orig, 100, 50); in test_for_each_set_bitrange_from()
971 for_each_set_bitrange_from(s, e, orig, 500) in test_for_each_set_bitrange_from()
974 bitmap_copy(tmp, orig, 500); in test_for_each_set_bitrange_from()
982 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange_from()
986 bitmap_fill(orig, 500); in test_for_each_clear_bitrange_from()
990 bitmap_clear(orig, s, 1); in test_for_each_clear_bitrange_from()
993 bitmap_set(orig, 100, 50); in test_for_each_clear_bitrange_from()
1001 for_each_clear_bitrange_from(s, e, orig, 500) in test_for_each_clear_bitrange_from()
1004 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bitrange_from()