Lines Matching refs:first_false_index
17 assert_eq!(bitmap.first_false_index(), Some(0)); in test_empty_bitmap_32()
30 assert_eq!(bitmap.first_false_index(), None); in test_empty_bitmap_32()
47 assert_eq!(bitmap.first_false_index(), Some(0)); in test_empty_bitmap_64()
60 assert_eq!(bitmap.first_false_index(), None); in test_empty_bitmap_64()
79 assert_eq!(bitmap.first_false_index(), Some(1)); in test_alloc_bitmap_32_first_1()
98 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_32_first_1()
120 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_32_middle_1()
140 assert_eq!(bitmap.first_false_index(), Some(15)); in test_alloc_bitmap_32_middle_1()
162 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_32_last_1()
182 assert_eq!(bitmap.first_false_index(), Some(31)); in test_alloc_bitmap_32_last_1()
204 assert_eq!(bitmap.first_false_index(), Some(1)); in test_alloc_bitmap_64_first_1()
223 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_64_first_1()
245 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_64_middle_1()
265 assert_eq!(bitmap.first_false_index(), Some(15)); in test_alloc_bitmap_64_middle_1()
287 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_64_last_1()
307 assert_eq!(bitmap.first_false_index(), Some(63)); in test_alloc_bitmap_64_last_1()
331 assert_eq!(bitmap.first_false_index(), Some(1)); in test_alloc_bitmap_64_two_1_first()
347 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_64_two_1_first()
372 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_64_two_1_middle()
389 assert_eq!(bitmap.first_false_index(), Some(15)); in test_alloc_bitmap_64_two_1_middle()
415 assert_eq!(bitmap.first_false_index(), Some(1)); in test_alloc_bitmap_128_two_1_seperate_first()
432 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_128_two_1_seperate_first()
456 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_128_two_1_nearby_middle()
478 assert_eq!(bitmap.first_false_index(), Some(63)); in test_alloc_bitmap_128_two_1_nearby_middle()
503 assert_eq!(bitmap.first_false_index(), None); in test_alloc_bitmap_full_32()
520 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_full_32()
541 assert_eq!(bitmap.first_false_index(), None); in test_alloc_bitmap_full_64()
558 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_full_64()
579 assert_eq!(bitmap.first_false_index(), None); in test_alloc_bitmap_full_100()
596 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_full_100()
617 assert_eq!(bitmap.first_false_index(), None); in test_alloc_bitmap_full_128()
634 assert_eq!(bitmap.first_false_index(), Some(0)); in test_alloc_bitmap_full_128()
663 assert_eq!(bitmap3.first_false_index(), Some(2)); in test_alloc_bitmap_bitand_128()
683 assert_eq!(bitmap.first_false_index(), Some(2)); in test_alloc_bitmap_bitand_assign_128()