Lines Matching full:500
779 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_wrap()
780 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit_wrap()
783 bitmap_zero(orig, 500); in test_for_each_set_bit_wrap()
786 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit_wrap()
792 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bit_wrap()
793 bitmap_zero(copy, 500); 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()
805 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit()
808 bitmap_zero(orig, 500); in test_for_each_set_bit()
809 bitmap_zero(copy, 500); in test_for_each_set_bit()
812 for (bit = 0; bit < 500; bit += 10) 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()
827 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit_from()
830 bitmap_zero(orig, 500); in test_for_each_set_bit_from()
833 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit_from()
839 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bit_from()
840 DECLARE_BITMAP(tmp, 500); in test_for_each_set_bit_from()
842 bitmap_zero(copy, 500); 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()
850 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bit_from()
856 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit()
857 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit()
860 bitmap_fill(orig, 500); in test_for_each_clear_bit()
861 bitmap_fill(copy, 500); in test_for_each_clear_bit()
864 for (bit = 0; bit < 500; bit += 10) 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()
879 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit_from()
882 bitmap_fill(orig, 500); in test_for_each_clear_bit_from()
885 for (bit = 0; bit < 500; bit += 10) in test_for_each_clear_bit_from()
891 for (wr = 0; wr < 500; wr++) { in test_for_each_clear_bit_from()
892 DECLARE_BITMAP(tmp, 500); in test_for_each_clear_bit_from()
894 bitmap_fill(copy, 500); 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()
902 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bit_from()
908 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange()
909 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange()
912 bitmap_zero(orig, 500); in test_for_each_set_bitrange()
913 bitmap_zero(copy, 500); in test_for_each_set_bitrange()
916 for (s = 0; s < 500; s += 10) 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()
931 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange()
934 bitmap_fill(orig, 500); in test_for_each_clear_bitrange()
935 bitmap_fill(copy, 500); in test_for_each_clear_bitrange()
938 for (s = 0; s < 500; s += 10) 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()
953 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange_from()
956 bitmap_zero(orig, 500); in test_for_each_set_bitrange_from()
959 for (s = 0; s < 500; s += 10) in test_for_each_set_bitrange_from()
965 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bitrange_from()
966 DECLARE_BITMAP(tmp, 500); in test_for_each_set_bitrange_from()
968 bitmap_zero(copy, 500); 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()
976 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bitrange_from()
982 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange_from()
983 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange_from()
986 bitmap_fill(orig, 500); in test_for_each_clear_bitrange_from()
989 for (s = 0; s < 500; s += 10) in test_for_each_clear_bitrange_from()
995 for (wr = 0; wr < 500; wr++) { in test_for_each_clear_bitrange_from()
996 DECLARE_BITMAP(tmp, 500); in test_for_each_clear_bitrange_from()
998 bitmap_fill(copy, 500); 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()
1006 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bitrange_from()
1132 …"81,484-485,488-489,492-493,496-497,500-501,504-505,508-509,512,516,520,524,528,532,536,540,544-54…