Lines Matching defs:GuestAddress
13 pub struct GuestAddress(pub u64); struct
15 impl GuestAddress { impl
37 pub fn checked_add(self, other: u64) -> Option<GuestAddress> { in checked_add()
43 pub fn unchecked_add(self, offset: u64) -> GuestAddress { in unchecked_add()
48 pub fn checked_sub(self, other: u64) -> Option<GuestAddress> { in checked_sub()
53 pub fn mask(self, mask: u64) -> GuestAddress { in mask() method
58 impl BitAnd<u64> for GuestAddress { implementation
61 fn bitand(self, other: u64) -> GuestAddress { in bitand()
66 impl BitOr<u64> for GuestAddress { implementation
69 fn bitor(self, other: u64) -> GuestAddress { in bitor()
74 impl PartialEq for GuestAddress { implementation
79 impl Eq for GuestAddress {} implementation
81 impl Ord for GuestAddress { implementation
87 impl PartialOrd for GuestAddress { implementation
93 impl Display for GuestAddress { implementation