Home
last modified time | relevance | path

Searched refs:IntegerOverflow (Results 1 – 3 of 3) sorted by relevance

/bootable/libbootloader/gbl/libfdt/src/
Dlib.rs37 IntegerOverflow, enumerator
75 name.len().try_into().map_err(|_| FdtError::IntegerOverflow)?, in fdt_add_subnode()
92 name.len().try_into().map_err(|_| FdtError::IntegerOverflow)?, in fdt_subnode_offset()
190 u32::from_be(v.len).try_into().map_err(|_| FdtError::IntegerOverflow)?, in get_property()
219 fdt.as_mut().len().try_into().map_err(|_| FdtError::IntegerOverflow)?, in new_from_init()
222 let new_size: u32 = fdt.as_mut().len().try_into().map_err(|_| FdtError::IntegerOverflow)?; in new_from_init()
253 val.len().try_into().map_err(|_| FdtError::IntegerOverflow)?, in set_property()
276 len.try_into().map_err(|_| FdtError::IntegerOverflow)?, in set_property_placeholder()
/bootable/libbootloader/gbl/libboot/src/
Dlib.rs20 IntegerOverflow, enumerator
Dx86.rs221 (ramdisk.as_ptr() as usize).try_into().map_err(|_| BootError::IntegerOverflow)?; in boot_linux_bzimage()
223 ramdisk.len().try_into().map_err(|_| BootError::IntegerOverflow)?; in boot_linux_bzimage()