Lines Matching refs:m_end
216 u64 m_start, m_end; in efi_memmap_split_count() local
225 m_end = range->end; in efi_memmap_split_count()
229 if (start < m_end && m_end < end) in efi_memmap_split_count()
235 if (m_end < end) in efi_memmap_split_count()
238 if (end <= m_end) in efi_memmap_split_count()
257 u64 m_start, m_end, m_attr; in efi_memmap_insert() local
264 m_end = mem->range.end; in efi_memmap_insert()
273 !IS_ALIGNED(m_end + 1, EFI_PAGE_SIZE)) { in efi_memmap_insert()
288 if (m_start <= start && end <= m_end) in efi_memmap_insert()
292 (start < m_end && m_end < end)) { in efi_memmap_insert()
295 md->num_pages = (m_end - md->phys_addr + 1) >> in efi_memmap_insert()
301 md->phys_addr = m_end + 1; in efi_memmap_insert()
306 if ((start < m_start && m_start < end) && m_end < end) { in efi_memmap_insert()
316 md->num_pages = (m_end - m_start + 1) >> in efi_memmap_insert()
322 md->phys_addr = m_end + 1; in efi_memmap_insert()
323 md->num_pages = (end - m_end) >> in efi_memmap_insert()
328 (end <= m_end)) { in efi_memmap_insert()