Home
last modified time | relevance | path

Searched refs:newres (Results 1 – 2 of 2) sorted by relevance

/NextBSD/sys/dev/acpica/
HDacpi_pci_link.c799 ACPI_RESOURCE newres; in acpi_pci_link_srs_from_links() local
814 bcopy(&link->l_prs_template, &newres, in acpi_pci_link_srs_from_links()
815 ACPI_RS_SIZE(newres.Data.Irq)); in acpi_pci_link_srs_from_links()
816 newres.Data.Irq.InterruptCount = 1; in acpi_pci_link_srs_from_links()
821 newres.Data.Irq.Interrupts[0] = link->l_irq; in acpi_pci_link_srs_from_links()
823 newres.Data.Irq.Interrupts[0] = 0; in acpi_pci_link_srs_from_links()
827 bcopy(&link->l_prs_template, &newres, in acpi_pci_link_srs_from_links()
828 ACPI_RS_SIZE(newres.Data.ExtendedIrq)); in acpi_pci_link_srs_from_links()
829 newres.Data.ExtendedIrq.InterruptCount = 1; in acpi_pci_link_srs_from_links()
831 newres.Data.ExtendedIrq.Interrupts[0] = in acpi_pci_link_srs_from_links()
[all …]
/NextBSD/sys/isa/
HDpnp.c569 u_char *newres; in pnp_read_bytes() local
584 newres = malloc(space + extra, M_TEMP, M_NOWAIT); in pnp_read_bytes()
585 if (!newres) { in pnp_read_bytes()
589 bcopy(resources, newres, len); in pnp_read_bytes()
591 resources = newres; in pnp_read_bytes()