Lines Matching refs:int32_t
40 static union pci_bdf dmar_path_bdf(int32_t path_len, uint8_t busno, const struct acpi_dmar_pci_path… in dmar_path_bdf()
42 int32_t i; in dmar_path_bdf()
58 static int32_t handle_dmar_devscope(struct dmar_dev_scope *dev_scope, void *addr, int32_t remaining) in handle_dmar_devscope()
60 int32_t path_len, ret = -1; in handle_dmar_devscope()
65 if ((remaining >= (int32_t)sizeof(struct acpi_dmar_device_scope)) && in handle_dmar_devscope()
66 (remaining >= (int32_t)apci_devscope->length)) { in handle_dmar_devscope()
68 path_len = (int32_t)((apci_devscope->length - sizeof(struct acpi_dmar_device_scope)) / in handle_dmar_devscope()
76 ret = (int32_t)apci_devscope->length; in handle_dmar_devscope()
107 static int32_t handle_one_drhd(struct acpi_dmar_hardware_unit *acpi_drhd, struct dmar_drhd *drhd) in handle_one_drhd()
111 int32_t remaining, consumed; in handle_one_drhd()
124 remaining = (int32_t)(acpi_drhd->header.length - sizeof(struct acpi_dmar_hardware_unit)); in handle_one_drhd()
160 int32_t parse_dmar_table(struct dmar_info *plat_dmar_info) in parse_dmar_table()