Lines Matching refs:m_end
124 u64 m_start, m_end; in efi_memmap_split_count() local
133 m_end = range->end; in efi_memmap_split_count()
137 if (start < m_end && m_end < end) in efi_memmap_split_count()
143 if (m_end < end) in efi_memmap_split_count()
146 if (end <= m_end) in efi_memmap_split_count()
165 u64 m_start, m_end, m_attr; in efi_memmap_insert() local
172 m_end = mem->range.end; in efi_memmap_insert()
181 !IS_ALIGNED(m_end + 1, EFI_PAGE_SIZE)) { in efi_memmap_insert()
196 if (m_start <= start && end <= m_end) in efi_memmap_insert()
200 (start < m_end && m_end < end)) { in efi_memmap_insert()
203 md->num_pages = (m_end - md->phys_addr + 1) >> in efi_memmap_insert()
209 md->phys_addr = m_end + 1; in efi_memmap_insert()
214 if ((start < m_start && m_start < end) && m_end < end) { in efi_memmap_insert()
224 md->num_pages = (m_end - m_start + 1) >> in efi_memmap_insert()
230 md->phys_addr = m_end + 1; in efi_memmap_insert()
231 md->num_pages = (end - m_end) >> in efi_memmap_insert()
236 (end <= m_end)) { in efi_memmap_insert()