Lines Matching defs:PhysicalAddress
87 pub struct PhysicalAddress(pub usize); struct
89 impl Display for PhysicalAddress { implementation
95 impl Debug for PhysicalAddress { implementation
101 impl Sub for PhysicalAddress { implementation
109 impl Add<usize> for PhysicalAddress { implementation
117 impl Sub<usize> for PhysicalAddress { implementation
137 fn allocate_table(&self) -> (NonNull<PageTable>, PhysicalAddress); in allocate_table() argument
243 pa: PhysicalAddress, in map_range()
272 pub fn to_physical(&self) -> PhysicalAddress { in to_physical()
387 fn new(translation: &T, level: usize) -> (Self, PhysicalAddress) { in new() argument
441 mut pa: PhysicalAddress, in map_range()
590 fn output_address(&self) -> Option<PhysicalAddress> { in output_address()
620 fn set(&mut self, pa: PhysicalAddress, flags: Attributes) { in set()