Home
last modified time | relevance | path

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

/external/rust/crates/hashbrown/src/
Dlib.rs125 CapacityOverflow, enumerator
Dmap.rs8071 use crate::TryReserveError::{AllocError, CapacityOverflow}; in test_try_reserve()
8077 if let Err(CapacityOverflow) = empty_bytes.try_reserve(MAX_USIZE) { in test_try_reserve()
/external/rust/crates/smallvec/src/
Dlib.rs285 CapacityOverflow, enumerator
302 CollectionAllocErr::CapacityOverflow in from()
309 Err(CollectionAllocErr::CapacityOverflow) => panic!("capacity overflow"), in infallible()
319 .ok_or(CollectionAllocErr::CapacityOverflow)?; in layout_array()
321 Layout::from_size_align(size, align).map_err(|_| CollectionAllocErr::CapacityOverflow) in layout_array()
961 .ok_or(CollectionAllocErr::CapacityOverflow)?; in try_reserve()
980 .ok_or(CollectionAllocErr::CapacityOverflow)?; in try_reserve_exact()
/external/rust/crates/hashlink/src/
Dlinked_hash_map.rs17 CapacityOverflow, enumerator
101 hashbrown::TryReserveError::CapacityOverflow => TryReserveError::CapacityOverflow, in try_reserve()
/external/rust/crates/hashbrown/src/raw/
Dmod.rs89 Fallibility::Fallible => TryReserveError::CapacityOverflow, in capacity_overflow()