Lines Matching refs:orig
743 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_wrap()
747 bitmap_zero(orig, 500); in test_for_each_set_bit_wrap()
751 bitmap_set(orig, bit, 1); in test_for_each_set_bit_wrap()
754 bitmap_set(orig, 100, 50); in test_for_each_set_bit_wrap()
759 for_each_set_bit_wrap(bit, orig, 500, wr) in test_for_each_set_bit_wrap()
762 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit_wrap()
768 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit()
772 bitmap_zero(orig, 500); in test_for_each_set_bit()
777 bitmap_set(orig, bit, 1); in test_for_each_set_bit()
780 bitmap_set(orig, 100, 50); in test_for_each_set_bit()
782 for_each_set_bit(bit, orig, 500) in test_for_each_set_bit()
785 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit()
790 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_from()
794 bitmap_zero(orig, 500); in test_for_each_set_bit_from()
798 bitmap_set(orig, bit, 1); in test_for_each_set_bit_from()
801 bitmap_set(orig, 100, 50); in test_for_each_set_bit_from()
809 for_each_set_bit_from(bit, orig, 500) in test_for_each_set_bit_from()
812 bitmap_copy(tmp, orig, 500); in test_for_each_set_bit_from()
820 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit()
824 bitmap_fill(orig, 500); in test_for_each_clear_bit()
829 bitmap_clear(orig, bit, 1); in test_for_each_clear_bit()
832 bitmap_clear(orig, 100, 50); in test_for_each_clear_bit()
834 for_each_clear_bit(bit, orig, 500) in test_for_each_clear_bit()
837 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bit()
842 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit_from()
846 bitmap_fill(orig, 500); in test_for_each_clear_bit_from()
850 bitmap_clear(orig, bit, 1); in test_for_each_clear_bit_from()
853 bitmap_clear(orig, 100, 50); in test_for_each_clear_bit_from()
861 for_each_clear_bit_from(bit, orig, 500) in test_for_each_clear_bit_from()
864 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bit_from()
872 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange()
876 bitmap_zero(orig, 500); in test_for_each_set_bitrange()
881 bitmap_set(orig, s, 1); in test_for_each_set_bitrange()
884 bitmap_set(orig, 100, 50); in test_for_each_set_bitrange()
886 for_each_set_bitrange(s, e, orig, 500) in test_for_each_set_bitrange()
889 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bitrange()
894 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange()
898 bitmap_fill(orig, 500); in test_for_each_clear_bitrange()
903 bitmap_clear(orig, s, 1); in test_for_each_clear_bitrange()
906 bitmap_clear(orig, 100, 50); in test_for_each_clear_bitrange()
908 for_each_clear_bitrange(s, e, orig, 500) in test_for_each_clear_bitrange()
911 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bitrange()
916 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange_from()
920 bitmap_zero(orig, 500); in test_for_each_set_bitrange_from()
924 bitmap_set(orig, s, 1); in test_for_each_set_bitrange_from()
927 bitmap_set(orig, 100, 50); in test_for_each_set_bitrange_from()
935 for_each_set_bitrange_from(s, e, orig, 500) in test_for_each_set_bitrange_from()
938 bitmap_copy(tmp, orig, 500); in test_for_each_set_bitrange_from()
946 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange_from()
950 bitmap_fill(orig, 500); in test_for_each_clear_bitrange_from()
954 bitmap_clear(orig, s, 1); in test_for_each_clear_bitrange_from()
957 bitmap_set(orig, 100, 50); in test_for_each_clear_bitrange_from()
965 for_each_clear_bitrange_from(s, e, orig, 500) in test_for_each_clear_bitrange_from()
968 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bitrange_from()