Searched refs:dpa (Results 1 - 5 of 5) sorted by relevance

/openbsd-current/sys/arch/amd64/stand/efiboot/
H A Defiboot.c258 efi_device_path_ncmp(EFI_DEVICE_PATH *dpa, EFI_DEVICE_PATH *dpb, int deptn) argument
263 if (IsDevicePathEnd(dpa) || IsDevicePathEnd(dpb))
264 return ((IsDevicePathEnd(dpa) && IsDevicePathEnd(dpb))
265 ? 0 : (IsDevicePathEnd(dpa))? -1 : 1);
266 cmp = DevicePathNodeLength(dpa) - DevicePathNodeLength(dpb);
269 cmp = memcmp(dpa, dpb, DevicePathNodeLength(dpa));
272 dpa = NextDevicePathNode(dpa);
/openbsd-current/sys/arch/arm64/stand/efiboot/
H A Defiboot.c370 efi_device_path_ncmp(EFI_DEVICE_PATH *dpa, EFI_DEVICE_PATH *dpb, int deptn) argument
375 if (IsDevicePathEnd(dpa) || IsDevicePathEnd(dpb))
376 return ((IsDevicePathEnd(dpa) && IsDevicePathEnd(dpb))
377 ? 0 : (IsDevicePathEnd(dpa))? -1 : 1);
378 cmp = DevicePathNodeLength(dpa) - DevicePathNodeLength(dpb);
381 cmp = memcmp(dpa, dpb, DevicePathNodeLength(dpa));
384 dpa = NextDevicePathNode(dpa);
/openbsd-current/sys/arch/armv7/stand/efiboot/
H A Defiboot.c354 efi_device_path_ncmp(EFI_DEVICE_PATH *dpa, EFI_DEVICE_PATH *dpb, int deptn) argument
359 if (IsDevicePathEnd(dpa) || IsDevicePathEnd(dpb))
360 return ((IsDevicePathEnd(dpa) && IsDevicePathEnd(dpb))
361 ? 0 : (IsDevicePathEnd(dpa))? -1 : 1);
362 cmp = DevicePathNodeLength(dpa) - DevicePathNodeLength(dpb);
365 cmp = memcmp(dpa, dpb, DevicePathNodeLength(dpa));
368 dpa = NextDevicePathNode(dpa);
/openbsd-current/sys/arch/riscv64/stand/efiboot/
H A Defiboot.c333 efi_device_path_ncmp(EFI_DEVICE_PATH *dpa, EFI_DEVICE_PATH *dpb, int deptn) argument
338 if (IsDevicePathEnd(dpa) || IsDevicePathEnd(dpb))
339 return ((IsDevicePathEnd(dpa) && IsDevicePathEnd(dpb))
340 ? 0 : (IsDevicePathEnd(dpa))? -1 : 1);
341 cmp = DevicePathNodeLength(dpa) - DevicePathNodeLength(dpb);
344 cmp = memcmp(dpa, dpb, DevicePathNodeLength(dpa));
347 dpa = NextDevicePathNode(dpa);
/openbsd-current/sys/arch/hppa/hppa/
H A Dpmap.c1199 paddr_t dpa = VM_PAGE_TO_PHYS(dstpg); local
1200 DPRINTF(PDB_FOLLOW|PDB_PHYS, ("pmap_copy_page(%lx, %lx)\n", spa, dpa));
1204 bcopy((void *)spa, (void *)dpa, PAGE_SIZE);
1206 fdcache(HPPA_SID_KERNEL, dpa, PAGE_SIZE);
1208 pdtlb(HPPA_SID_KERNEL, dpa);

Completed in 205 milliseconds