Lines Matching refs:m_end
219 u64 m_start, m_end; in efi_memmap_split_count() local
228 m_end = range->end; in efi_memmap_split_count()
232 if (start < m_end && m_end < end) in efi_memmap_split_count()
238 if (m_end < end) in efi_memmap_split_count()
241 if (end <= m_end) in efi_memmap_split_count()
260 u64 m_start, m_end, m_attr; in efi_memmap_insert() local
267 m_end = mem->range.end; in efi_memmap_insert()
276 !IS_ALIGNED(m_end + 1, EFI_PAGE_SIZE)) { in efi_memmap_insert()
291 if (m_start <= start && end <= m_end) in efi_memmap_insert()
295 (start < m_end && m_end < end)) { in efi_memmap_insert()
298 md->num_pages = (m_end - md->phys_addr + 1) >> in efi_memmap_insert()
304 md->phys_addr = m_end + 1; in efi_memmap_insert()
309 if ((start < m_start && m_start < end) && m_end < end) { in efi_memmap_insert()
319 md->num_pages = (m_end - m_start + 1) >> in efi_memmap_insert()
325 md->phys_addr = m_end + 1; in efi_memmap_insert()
326 md->num_pages = (end - m_end) >> in efi_memmap_insert()
331 (end <= m_end)) { in efi_memmap_insert()