Lines Matching refs:m_end
113 u64 m_start, m_end; in efi_memmap_split_count() local
122 m_end = range->end; in efi_memmap_split_count()
126 if (start < m_end && m_end < end) in efi_memmap_split_count()
132 if (m_end < end) in efi_memmap_split_count()
135 if (end <= m_end) in efi_memmap_split_count()
154 u64 m_start, m_end, m_attr; in efi_memmap_insert() local
161 m_end = mem->range.end; in efi_memmap_insert()
170 !IS_ALIGNED(m_end + 1, EFI_PAGE_SIZE)) { in efi_memmap_insert()
185 if (m_start <= start && end <= m_end) in efi_memmap_insert()
189 (start < m_end && m_end < end)) { in efi_memmap_insert()
192 md->num_pages = (m_end - md->phys_addr + 1) >> in efi_memmap_insert()
198 md->phys_addr = m_end + 1; in efi_memmap_insert()
203 if ((start < m_start && m_start < end) && m_end < end) { in efi_memmap_insert()
213 md->num_pages = (m_end - m_start + 1) >> in efi_memmap_insert()
219 md->phys_addr = m_end + 1; in efi_memmap_insert()
220 md->num_pages = (end - m_end) >> in efi_memmap_insert()
225 (end <= m_end)) { in efi_memmap_insert()