Home
last modified time | relevance | path

Searched refs:try_reserve_exact (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/rust/alloc/
H A Draw_vec.rs372 handle_reserve(self.try_reserve_exact(len, additional)); in reserve_exact()
376 pub fn try_reserve_exact( in try_reserve_exact() method
/openbmc/linux/rust/alloc/vec/
H A Dmod.rs1136 pub fn try_reserve_exact(&mut self, additional: usize) -> Result<(), TryReserveError> { in try_reserve_exact() method
1137 self.buf.try_reserve_exact(self.len, additional) in try_reserve_exact()