Home
last modified time | relevance | path

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

/external/rust/android-crates-io/extra_versions/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/android-crates-io/crates/hashbrown/src/
Dlib.rs174 CapacityOverflow, enumerator
Dmap.rs5932 use crate::TryReserveError::{AllocError, CapacityOverflow}; in test_try_reserve()
5938 if let Err(CapacityOverflow) = empty_bytes.try_reserve(usize::MAX) { in test_try_reserve()
5943 if let Err(CapacityOverflow) = empty_bytes.try_reserve(MAX_ISIZE) { in test_try_reserve()
/external/rust/android-crates-io/crates/smallvec/src/
Dlib.rs300 CapacityOverflow, enumerator
317 CollectionAllocErr::CapacityOverflow in from()
324 Err(CollectionAllocErr::CapacityOverflow) => panic!("capacity overflow"), in infallible()
334 .ok_or(CollectionAllocErr::CapacityOverflow)?; in layout_array()
336 Layout::from_size_align(size, align).map_err(|_| CollectionAllocErr::CapacityOverflow) in layout_array()
1250 .ok_or(CollectionAllocErr::CapacityOverflow)?; in try_reserve()
1269 .ok_or(CollectionAllocErr::CapacityOverflow)?; in try_reserve_exact()
/external/rust/android-crates-io/crates/hashlink/src/
Dlinked_hash_map.rs20 CapacityOverflow, enumerator
457 hashbrown::TryReserveError::CapacityOverflow => TryReserveError::CapacityOverflow, in try_reserve()
/external/rust/android-crates-io/extra_versions/crates/hashbrown/src/raw/
Dmod.rs89 Fallibility::Fallible => TryReserveError::CapacityOverflow, in capacity_overflow()
/external/rust/android-crates-io/crates/hashbrown/src/raw/
Dmod.rs34 Fallibility::Fallible => TryReserveError::CapacityOverflow, in capacity_overflow()