Lines Matching refs:orig

807 	DECLARE_BITMAP(orig, 500);
811 bitmap_zero(orig, 500);
815 bitmap_set(orig, bit, 1);
818 bitmap_set(orig, 100, 50);
823 for_each_set_bit_wrap(bit, orig, 500, wr)
826 expect_eq_bitmap(orig, copy, 500);
832 DECLARE_BITMAP(orig, 500);
836 bitmap_zero(orig, 500);
841 bitmap_set(orig, bit, 1);
844 bitmap_set(orig, 100, 50);
846 for_each_set_bit(bit, orig, 500)
849 expect_eq_bitmap(orig, copy, 500);
854 DECLARE_BITMAP(orig, 500);
858 bitmap_zero(orig, 500);
862 bitmap_set(orig, bit, 1);
865 bitmap_set(orig, 100, 50);
873 for_each_set_bit_from(bit, orig, 500)
876 bitmap_copy(tmp, orig, 500);
884 DECLARE_BITMAP(orig, 500);
888 bitmap_fill(orig, 500);
893 bitmap_clear(orig, bit, 1);
896 bitmap_clear(orig, 100, 50);
898 for_each_clear_bit(bit, orig, 500)
901 expect_eq_bitmap(orig, copy, 500);
906 DECLARE_BITMAP(orig, 500);
910 bitmap_fill(orig, 500);
914 bitmap_clear(orig, bit, 1);
917 bitmap_clear(orig, 100, 50);
925 for_each_clear_bit_from(bit, orig, 500)
928 bitmap_copy(tmp, orig, 500);
936 DECLARE_BITMAP(orig, 500);
940 bitmap_zero(orig, 500);
945 bitmap_set(orig, s, 1);
948 bitmap_set(orig, 100, 50);
950 for_each_set_bitrange(s, e, orig, 500)
953 expect_eq_bitmap(orig, copy, 500);
958 DECLARE_BITMAP(orig, 500);
962 bitmap_fill(orig, 500);
967 bitmap_clear(orig, s, 1);
970 bitmap_clear(orig, 100, 50);
972 for_each_clear_bitrange(s, e, orig, 500)
975 expect_eq_bitmap(orig, copy, 500);
980 DECLARE_BITMAP(orig, 500);
984 bitmap_zero(orig, 500);
988 bitmap_set(orig, s, 1);
991 bitmap_set(orig, 100, 50);
999 for_each_set_bitrange_from(s, e, orig, 500)
1002 bitmap_copy(tmp, orig, 500);
1010 DECLARE_BITMAP(orig, 500);
1014 bitmap_fill(orig, 500);
1018 bitmap_clear(orig, s, 1);
1021 bitmap_set(orig, 100, 50);
1029 for_each_clear_bitrange_from(s, e, orig, 500)
1032 bitmap_copy(tmp, orig, 500);