Lines Matching refs:last_false_index

19     assert_eq!(bitmap.last_false_index(), Some(31));  in test_empty_bitmap_32()
32 assert_eq!(bitmap.last_false_index(), None); in test_empty_bitmap_32()
49 assert_eq!(bitmap.last_false_index(), Some(63)); in test_empty_bitmap_64()
62 assert_eq!(bitmap.last_false_index(), None); in test_empty_bitmap_64()
81 assert_eq!(bitmap.last_false_index(), Some(31)); in test_alloc_bitmap_32_first_1()
100 assert_eq!(bitmap.last_false_index(), Some(0)); in test_alloc_bitmap_32_first_1()
122 assert_eq!(bitmap.last_false_index(), Some(31)); in test_alloc_bitmap_32_middle_1()
142 assert_eq!(bitmap.last_false_index(), Some(15)); in test_alloc_bitmap_32_middle_1()
164 assert_eq!(bitmap.last_false_index(), Some(30)); in test_alloc_bitmap_32_last_1()
184 assert_eq!(bitmap.last_false_index(), Some(31)); in test_alloc_bitmap_32_last_1()
206 assert_eq!(bitmap.last_false_index(), Some(63)); in test_alloc_bitmap_64_first_1()
225 assert_eq!(bitmap.last_false_index(), Some(0)); in test_alloc_bitmap_64_first_1()
247 assert_eq!(bitmap.last_false_index(), Some(63)); in test_alloc_bitmap_64_middle_1()
267 assert_eq!(bitmap.last_false_index(), Some(15)); in test_alloc_bitmap_64_middle_1()
289 assert_eq!(bitmap.last_false_index(), Some(62)); in test_alloc_bitmap_64_last_1()
309 assert_eq!(bitmap.last_false_index(), Some(63)); in test_alloc_bitmap_64_last_1()
333 assert_eq!(bitmap.last_false_index(), Some(62)); in test_alloc_bitmap_64_two_1_first()
349 assert_eq!(bitmap.last_false_index(), Some(63)); in test_alloc_bitmap_64_two_1_first()
374 assert_eq!(bitmap.last_false_index(), Some(62)); in test_alloc_bitmap_64_two_1_middle()
391 assert_eq!(bitmap.last_false_index(), Some(63)); in test_alloc_bitmap_64_two_1_middle()
417 assert_eq!(bitmap.last_false_index(), Some(126)); in test_alloc_bitmap_128_two_1_seperate_first()
434 assert_eq!(bitmap.last_false_index(), Some(127)); in test_alloc_bitmap_128_two_1_seperate_first()
458 assert_eq!(bitmap.last_false_index(), Some(127)); in test_alloc_bitmap_128_two_1_nearby_middle()
480 assert_eq!(bitmap.last_false_index(), Some(64)); in test_alloc_bitmap_128_two_1_nearby_middle()
505 assert_eq!(bitmap.last_false_index(), None); in test_alloc_bitmap_full_32()
522 assert_eq!(bitmap.last_false_index(), Some(31)); in test_alloc_bitmap_full_32()
543 assert_eq!(bitmap.last_false_index(), None); in test_alloc_bitmap_full_64()
560 assert_eq!(bitmap.last_false_index(), Some(63)); in test_alloc_bitmap_full_64()
581 assert_eq!(bitmap.last_false_index(), None); in test_alloc_bitmap_full_100()
598 assert_eq!(bitmap.last_false_index(), Some(99)); in test_alloc_bitmap_full_100()
619 assert_eq!(bitmap.last_false_index(), None); in test_alloc_bitmap_full_128()
636 assert_eq!(bitmap.last_false_index(), Some(127)); in test_alloc_bitmap_full_128()