Home
last modified time | relevance | path

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

/linux/rust/zerocopy/src/
H A Dbyteorder.rs1072 fn checked_div(self, rhs: Self) -> Option<Self>; in checked_div() method
1209 fn checked_div(self, rhs: Self) -> Option<Self> { self.checked_div(rhs) }
1219 fn checked_div(self, rhs: Self) -> Option<Self> { Some(self / rhs) }
1541 test!(@binary Div, div[checked_div], DivAssign, div_assign, call_for_all_types); in test_ops_impls()