Lines Matching refs:BitmapVec
8 use crate::bitmap::BitmapVec;
69 map: BitmapVec,
79 new: BitmapVec,
90 let new = BitmapVec::new(self.num_ids, flags)?; in realloc()
104 map: BitmapVec::new_inline(), in new()
115 let num_ids = usize::max(num_ids, BitmapVec::MAX_INLINE_LEN); in with_capacity()
116 let map = BitmapVec::new(num_ids, flags)?; in with_capacity()
155 if cap <= BitmapVec::MAX_INLINE_LEN { in shrink_request()
164 num_ids: BitmapVec::MAX_INLINE_LEN, in shrink_request()
170 let num_ids = usize::max(BitmapVec::MAX_INLINE_LEN, cap / 2); in shrink_request()
201 if num_ids > BitmapVec::MAX_LEN { in grow_request()