Home
last modified time | relevance | path

Searched refs:first_index (Results 1 – 8 of 8) sorted by relevance

/DragonOS/kernel/crates/bitmap/tests/
H A Dstatic-bitmap.rs16 assert_eq!(bitmap.first_index(), None); in test_empty_bitmap_32()
29 assert_eq!(bitmap.first_index(), Some(0)); in test_empty_bitmap_32()
46 assert_eq!(bitmap.first_index(), None); in test_empty_bitmap_64()
59 assert_eq!(bitmap.first_index(), Some(0)); in test_empty_bitmap_64()
78 assert_eq!(bitmap.first_index(), Some(0)); in test_static_bitmap_32_first_1()
97 assert_eq!(bitmap.first_index(), Some(1)); in test_static_bitmap_32_first_1()
119 assert_eq!(bitmap.first_index(), Some(15)); in test_static_bitmap_32_middle_1()
139 assert_eq!(bitmap.first_index(), Some(0)); in test_static_bitmap_32_middle_1()
161 assert_eq!(bitmap.first_index(), Some(31)); in test_static_bitmap_32_last_1()
181 assert_eq!(bitmap.first_index(), Some(0)); in test_static_bitmap_32_last_1()
[all …]
H A Dalloc-bitmap.rs16 assert_eq!(bitmap.first_index(), None); in test_empty_bitmap_32()
29 assert_eq!(bitmap.first_index(), Some(0)); in test_empty_bitmap_32()
46 assert_eq!(bitmap.first_index(), None); in test_empty_bitmap_64()
59 assert_eq!(bitmap.first_index(), Some(0)); in test_empty_bitmap_64()
78 assert_eq!(bitmap.first_index(), Some(0)); in test_alloc_bitmap_32_first_1()
97 assert_eq!(bitmap.first_index(), Some(1)); in test_alloc_bitmap_32_first_1()
119 assert_eq!(bitmap.first_index(), Some(15)); in test_alloc_bitmap_32_middle_1()
139 assert_eq!(bitmap.first_index(), Some(0)); in test_alloc_bitmap_32_middle_1()
161 assert_eq!(bitmap.first_index(), Some(31)); in test_alloc_bitmap_32_last_1()
181 assert_eq!(bitmap.first_index(), Some(0)); in test_alloc_bitmap_32_last_1()
[all …]
/DragonOS/kernel/crates/bitmap/src/
H A Dalloc_bitmap.rs53 fn first_index(&self) -> Option<usize> { in first_index() method
54 self.core.first_index(&self.data) in first_index()
H A Dstatic_bitmap.rs64 fn first_index(&self) -> Option<usize> { in first_index() function
65 self.core.first_index(&self.data) in first_index()
H A Dtraits.rs11 fn first_index(bits: &Self) -> Option<usize>; in first_index() method
60 fn first_index(bits: &Self) -> Option<usize> {
260 fn first_index(&self) -> Option<usize>; in first_index() method
H A Dbitmap_core.rs61 pub(crate) fn first_index(&self, data: &[T]) -> Option<usize> { in first_index() method
63 let bit = <T as BitOps>::first_index(element); in first_index()
140 if let Some(bit) = <T as BitOps>::first_index(element) { in next_index()
/DragonOS/kernel/src/libs/
H A Dcpumask.rs37 .first_index() in first()
/DragonOS/kernel/src/driver/tty/tty_ldisc/
H A Dntty.rs1036 let ret = self.read_flags.first_index(); in canon_copy_from_read_buf()