Lines Matching refs:growth_left
387 growth_left: usize, field
644 if additional > self.table.growth_left { in reserve()
663 if additional > self.table.growth_left { in try_reserve()
723 self_.growth_left = bucket_mask_to_capacity(self_.bucket_mask) - self_.items; in rehash_in_place()
773 guard.growth_left = bucket_mask_to_capacity(guard.bucket_mask) - guard.items; in rehash_in_place()
826 if unlikely(self.table.growth_left == 0 && special_is_empty(old_ctrl)) { in insert()
882 self.table.growth_left -= special_is_empty(old_ctrl) as usize; in insert_no_grow()
904 let old_growth_left = self.table.growth_left; in replace_bucket_with()
907 self.table.growth_left = old_growth_left; in replace_bucket_with()
1015 self.table.items + self.table.growth_left in capacity()
1135 growth_left: 0, in new_in()
1167 growth_left: bucket_mask_to_capacity(buckets - 1), in new_uninitialized()
1298 if unlikely(self.growth_left == 0 && special_is_empty(old_ctrl)) { in prepare_insert_no_grow()
1308 self.growth_left -= special_is_empty(old_ctrl) as usize; in record_item_insert_at()
1402 new_table.growth_left -= self.items; in prepare_resize()
1440 self.growth_left = bucket_mask_to_capacity(self.bucket_mask); in clear_no_drop()
1461 self.growth_left += 1; in erase()
1559 self.table.growth_left = source.table.growth_left; in clone_from_spec()
1604 self.table.growth_left = source.table.growth_left; in clone_from_impl()
1645 self.table.growth_left -= source.table.items; in clone_from_with_hasher()