Lines Matching refs:orig

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