Lines Matching refs:new
79 new: BitmapVec, field
90 let new = BitmapVec::new(self.num_ids, flags)?; in realloc() localVariable
91 Ok(PoolResizer { new }) in realloc()
102 pub fn new() -> Self { in new() method
116 let map = BitmapVec::new(num_ids, flags)?; in with_capacity()
185 if updated.num_ids > resizer.new.len() { in shrink()
189 resizer.new.copy_and_extend(&self.map); in shrink()
190 self.map = resizer.new; in shrink()
216 if resizer.new.len() <= self.capacity() { in grow()
220 resizer.new.copy_and_extend(&self.map); in grow()
221 self.map = resizer.new; in grow()
293 Self::new() in default()