Lines Matching refs:test_bit2

131   uint i, j, test_bit1, test_bit2, test_bit3,test_bit4;  in test_compare_operators()  local
145 test_bit2=get_rand_bit(bitsize); in test_compare_operators()
146 bitmap_set_prefix(map2, test_bit2); in test_compare_operators()
148 test_bit3= test_bit2 < test_bit1 ? test_bit2 : test_bit1; in test_compare_operators()
156 test_bit2=get_rand_bit(bitsize); in test_compare_operators()
159 bitmap_set_prefix(map2, test_bit2); in test_compare_operators()
160 test_bit3= test_bit2 > test_bit1 ? test_bit2 : test_bit1; in test_compare_operators()
169 test_bit2=get_rand_bit(bitsize); in test_compare_operators()
172 bitmap_set_prefix(map2, test_bit2); in test_compare_operators()
174 test_bit3= test_bit2 > test_bit1 ? test_bit2 : test_bit1; in test_compare_operators()
175 test_bit4= test_bit2 < test_bit1 ? test_bit2 : test_bit1; in test_compare_operators()
185 test_bit2=get_rand_bit(bitsize); in test_compare_operators()
188 bitmap_set_prefix(map2, test_bit2); in test_compare_operators()
190 if (test_bit2 < test_bit1) in test_compare_operators()
193 for (j=0; j < test_bit2; j++) in test_compare_operators()
215 << ",size2=" << test_bit2; in test_compare_operators()
219 << ",size2=" << test_bit2; in test_compare_operators()
223 << ",size2=" << test_bit2; in test_compare_operators()
227 << ",size2=" << test_bit2; in test_compare_operators()
484 uint i, test_bit1, test_bit2, test_bit3; in test_intersect() local
488 test_bit2= get_rand_bit(bitsize); in test_intersect()
490 bitmap_set_bit(map, test_bit2); in test_intersect()
493 if (test_bit2 < bitsize2) in test_intersect()
494 bitmap_set_bit(&map2, test_bit2); in test_intersect()
497 if (test_bit2 < bitsize2) in test_intersect()
499 if (!bitmap_is_set(map, test_bit2)) in test_intersect()
501 bitmap_clear_bit(map, test_bit2); in test_intersect()
523 << ",bit2=" << test_bit2 << ",bit3=" << test_bit3; in test_intersect()