Home
last modified time | relevance | path

Searched refs:CapacityOverflow (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/hashbrown/src/
Dlib.rs122 CapacityOverflow, enumerator
Dmap.rs4636 if let Err(CapacityOverflow) = empty_bytes.try_reserve(MAX_USIZE) { in test_try_reserve()
/external/rust/crates/smallvec/src/
Dlib.rs227 CapacityOverflow, enumerator
244 CollectionAllocErr::CapacityOverflow in from()
251 Err(CollectionAllocErr::CapacityOverflow) => panic!("capacity overflow"), in infallible()
261 .ok_or(CollectionAllocErr::CapacityOverflow)?; in layout_array()
263 Layout::from_size_align(size, align).map_err(|_| CollectionAllocErr::CapacityOverflow) in layout_array()
879 .ok_or(CollectionAllocErr::CapacityOverflow)?; in try_reserve()
898 .ok_or(CollectionAllocErr::CapacityOverflow)?; in try_reserve_exact()
/external/rust/crates/hashbrown/src/raw/
Dmod.rs98 Fallibility::Fallible => TryReserveError::CapacityOverflow, in capacity_overflow()