Lines Matching refs:newaddr
209 ulong newaddr = patchto ? (patchto + patchoff) : 0; in efi_runtime_detach() local
211 debug("%s: Setting %p to %lx\n", __func__, p, newaddr); in efi_runtime_detach()
212 *p = newaddr; in efi_runtime_detach()
230 ulong newaddr; in efi_runtime_relocate() local
239 newaddr = rel->addend + offset - CONFIG_SYS_TEXT_BASE; in efi_runtime_relocate()
241 newaddr = *p - lastoff + offset; in efi_runtime_relocate()
245 if (map && ((newaddr < map->virtual_start) || in efi_runtime_relocate()
246 newaddr > (map->virtual_start + (map->num_pages << 12)))) { in efi_runtime_relocate()
249 "range (%lx)\n", p, newaddr); in efi_runtime_relocate()
253 debug("%s: Setting %p to %lx\n", __func__, p, newaddr); in efi_runtime_relocate()
254 *p = newaddr; in efi_runtime_relocate()