Home
last modified time | relevance | path

Searched refs:with_capacity_in (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/hashbrown/src/raw/
Dmod.rs419 Self::with_capacity_in(capacity, Global) in with_capacity()
487 pub fn with_capacity_in(capacity: usize, alloc: A) -> Self { in with_capacity_in() method
627 *self = Self::with_capacity_in(min_size, self.table.alloc.clone()) in shrink_to()
/external/rust/crates/hashbrown/src/
Dset.rs204 pub fn with_capacity_in(capacity: usize, alloc: A) -> Self { in with_capacity_in() method
206 map: HashMap::with_capacity_in(capacity, alloc), in with_capacity_in()
Dmap.rs323 pub fn with_capacity_in(capacity: usize, alloc: A) -> Self { in with_capacity_in() method
451 table: RawTable::with_capacity_in(capacity, alloc), in with_capacity_and_hasher_in()