Searched refs:size_hint (Results 1 – 6 of 6) sorted by relevance
/openbmc/linux/rust/alloc/vec/ |
H A D | drain.rs | 162 fn size_hint(&self) -> (usize, Option<usize>) { in size_hint() method 163 self.iter.size_hint() in size_hint()
|
H A D | extract_if.rs | 87 fn size_hint(&self) -> (usize, Option<usize>) { in size_hint() function
|
H A D | mod.rs | 3044 let (lower, _) = iterator.size_hint(); in extend_desugared() 3070 let (lower, _) = iterator.size_hint(); in try_extend_desugared() 3089 let (low, high) = iterator.size_hint(); in extend_trusted() 3122 let (low, high) = iterator.size_hint(); in try_extend_trusted()
|
H A D | into_iter.rs | 209 fn size_hint(&self) -> (usize, Option<usize>) { in size_hint() method
|
/openbmc/u-boot/scripts/dtc/pylibfdt/ |
H A D | libfdt.i_shipped | 743 def __init__(self, size_hint=None): 747 size_hint: A hint as to the initial size to use 750 ValueError if size_hint is negative 755 if not size_hint: 756 size_hint = self.INC_SIZE 757 fdtsw = bytearray(size_hint) 758 err = check_err(fdt_create(fdtsw, size_hint))
|
/openbmc/linux/rust/alloc/ |
H A D | boxed.rs | 1947 fn size_hint(&self) -> (usize, Option<usize>) { in size_hint() method 1948 (**self).size_hint() in size_hint() 2159 fn size_hint(&self) -> (usize, Option<usize>) { in size_hint() method 2160 (**self).size_hint() in size_hint()
|