Lines Matching defs:Value
835 AcpiOsReadPort(ACPI_IO_ADDRESS Address, UINT32 *Value, UINT32 Width)
844 *Value = 0xffffffff;
850 *Value = inb(Address);
853 *Value = inw(Address);
856 *Value = inl(Address);
867 AcpiOsWritePort(ACPI_IO_ADDRESS Address, UINT32 Value, UINT32 Width)
881 outb(Address, Value);
884 outw(Address, Value);
887 outl(Address, Value);
908 osl_rw_memory(ACPI_PHYSICAL_ADDRESS Address, UINT64 *Value,
919 OSL_RW(ptr, Value, uint8_t, write);
922 OSL_RW(ptr, Value, uint16_t, write);
925 OSL_RW(ptr, Value, uint32_t, write);
928 OSL_RW(ptr, Value, uint64_t, write);
941 UINT64 *Value, UINT32 Width)
943 osl_rw_memory(Address, Value, Width, 0);
949 UINT64 Value, UINT32 Width)
951 osl_rw_memory(Address, &Value, Width, 1);
958 UINT64 *Value, UINT32 Width)
963 *Value = (UINT64)(*pci_getb_func)
967 *Value = (UINT64)(*pci_getw_func)
971 *Value = (UINT64)(*pci_getl_func)
990 UINT64 Value, UINT32 Width)
996 PciId->Function, Reg, (long)Value, Width);
1003 Reg, (uint8_t)Value);
1007 Reg, (uint16_t)Value);
1011 Reg, (uint32_t)Value);
1456 *rint = ro.Integer.Value;
1473 *rint = rv->Integer.Value;