Lines Matching defs:Value
72 AcpiOsReadPort(ACPI_IO_ADDRESS Address, UINT32 *Value, UINT32 Width)
77 *Value = acpi_md_OsIn8(Address);
81 *Value = acpi_md_OsIn16(Address);
85 *Value = acpi_md_OsIn32(Address);
101 AcpiOsWritePort(ACPI_IO_ADDRESS Address, UINT32 Value, UINT32 Width)
106 acpi_md_OsOut8(Address, Value);
110 acpi_md_OsOut16(Address, Value);
114 acpi_md_OsOut32(Address, Value);
130 AcpiOsReadMemory(ACPI_PHYSICAL_ADDRESS Address, UINT64 *Value, UINT32 Width)
141 *Value = *(volatile uint8_t *) LogicalAddress;
145 *Value = *(volatile uint16_t *) LogicalAddress;
149 *Value = *(volatile uint32_t *) LogicalAddress;
153 *Value = *(volatile uint64_t *) LogicalAddress;
171 AcpiOsWriteMemory(ACPI_PHYSICAL_ADDRESS Address, UINT64 Value, UINT32 Width)
182 *(volatile uint8_t *) LogicalAddress = Value;
186 *(volatile uint16_t *) LogicalAddress = Value;
190 *(volatile uint32_t *) LogicalAddress = Value;
194 *(volatile uint64_t *) LogicalAddress = Value;
212 AcpiOsReadPciConfiguration(ACPI_PCI_ID *PciId, UINT32 Register, UINT64 *Value,
230 *Value = (tmp >> ((Register & 3) * 8)) & 0xff;
234 *Value = (tmp >> ((Register & 3) * 8)) & 0xffff;
238 *Value = tmp;
258 ACPI_INTEGER Value, UINT32 Width)
272 tmp |= (Value << ((Register & 3) * 8));
278 tmp |= (Value << ((Register & 3) * 8));
282 tmp = Value;