| /src/sys/external/bsd/acpica/dist/compiler/ |
| aslmapenter.c | 64 UINT16 Address); 144 UINT16 Address; 160 /* Extract address and speed from the resource descriptor */ 166 Address = Resource->I2cSerialBus.SlaveAddress; 172 Address = Resource->SpiSerialBus.DeviceSelection; 178 Address = 0; 186 Info = MpCreateSerialInfo (DeviceName, Address); 191 Info->Address = Address; 279 * Address - Physical address for the devic [all...] |
| dttable2.c | 1981 UINT32 Address; 1988 DtCompileInteger ((UINT8 *) &Address, FieldList, 4, DT_NON_ZERO); 1990 DtCreateSubtable ((UINT8 *) &Address, 4, &Subtable); 2949 /* Optional: Log area start address */ 3321 UINT64 Address; 3328 DtCompileInteger ((UINT8 *) &Address, FieldList, 8, DT_NON_ZERO); 3330 DtCreateSubtable ((UINT8 *) &Address, 8, &Subtable);
|
| asltypes.h | 370 UINT16 Address;
|
| /src/sys/external/bsd/acpica/dist/tables/ |
| tbinstal.c | 98 NewTableDesc->Address, NewTableDesc->Flags, NewTableDesc->Pointer); 100 AcpiTbPrintTableHeader (NewTableDesc->Address, NewTableDesc->Pointer); 119 * PARAMETERS: Address - Address of the table (might be a virtual 120 * address depending on the TableFlags) 140 ACPI_PHYSICAL_ADDRESS Address, 157 Status = AcpiTbAcquireTempTable (&NewTableDesc, Address, Flags, Table); 162 ACPI_FORMAT_UINT64 (Address))); 176 NewTableDesc.Signature.Ascii, ACPI_FORMAT_UINT64 (Address))); 256 ACPI_PHYSICAL_ADDRESS Address; [all...] |
| tbutils.c | 203 * RETURN: Physical address extracted from the root table 223 * Get the table physical address (32-bit for RSDT, 64-bit for XSDT): 247 /* Will truncate 64-bit address to 32 bits, issue warning */ 250 "64-bit Physical Address in XSDT is too large (0x%8.8X%8.8X)," 286 ACPI_PHYSICAL_ADDRESS Address; 296 /* Map the entire RSDP and extract the address of the RSDT or XSDT */ 318 Address = (ACPI_PHYSICAL_ADDRESS) Rsdp->XsdtPhysicalAddress; 325 Address = (ACPI_PHYSICAL_ADDRESS) Rsdp->RsdtPhysicalAddress; 337 Table = AcpiOsMapMemory (Address, sizeof (ACPI_TABLE_HEADER)); 343 AcpiTbPrintTableHeader (Address, Table) [all...] |
| /src/sys/external/bsd/acpica/dist/tools/acpidump/ |
| apdump.c | 53 ACPI_PHYSICAL_ADDRESS Address); 189 * Address - Physical address of the table 202 ACPI_PHYSICAL_ADDRESS Address) 213 AcpiTbPrintTableHeader (Address, Table); 226 * Note: simplest to just always emit a 64-bit address. AcpiXtract 230 Table->Signature, ACPI_FORMAT_UINT64 (Address)); 259 ACPI_PHYSICAL_ADDRESS Address; 269 Status = AcpiOsGetTableByIndex (i, &Table, &Instance, &Address); 292 TableStatus = ApDumpTableBuffer (Table, Instance, Address); [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
| xray_interface_internal.h | 27 uint64_t Address; 34 uint32_t Address;
|
| /src/sys/external/bsd/acpica/dist/hardware/ |
| hwregs.c | 59 UINT64 Address, 82 * PARAMETERS: Address - GAS register address 94 UINT64 Address, 112 * Note: This algorithm assumes that the "Address" fields should always 135 while (!ACPI_IS_ALIGNED (Address, AccessBitWidth >> 3)) 168 * Address - Pointer to where the gas->address 174 * pointer, Address, SpaceId, BitWidth, and BitOffset. 182 UINT64 *Address) [all...] |
| /src/sys/external/bsd/acpica/dist/tools/acpiexec/ |
| aecommon.h | 68 ACPI_PHYSICAL_ADDRESS Address; 157 UINT32 Address); 194 ACPI_PHYSICAL_ADDRESS Address,
|
| /src/sys/external/bsd/acpica/dist/debugger/ |
| dbmethod.c | 91 UINT32 Address; 101 /* Get and verify the breakpoint address */ 103 Address = strtoul (Location, NULL, 16); 106 if (Address <= AmlOffset) 108 AcpiOsPrintf ("Breakpoint %X is beyond current address %X\n", 109 Address, AmlOffset); 114 WalkState->UserBreakpoint = Address; 115 AcpiOsPrintf ("Breakpoint set at AML offset %X\n", Address);
|
| dbcmds.c | 111 ACPI_SIZE Address; 118 Address = strtoul (InString, NULL, 16); 119 Node = ACPI_TO_POINTER (Address); 122 AcpiOsPrintf ("Address %p is invalid", Node); 130 AcpiOsPrintf ("Address %p is not a valid namespace node [%s]\n", 346 "TableHeader (Sig, Address, Length, Misc)\n"); 404 AcpiTbPrintTableHeader (TableDesc->Address, TableDesc->Pointer); 607 * PARAMETERS: BufferArg - Buffer name or address
|
| dbnames.c | 1052 ACPI_SIZE Address; 1057 Address = strtoul (ObjectArg, NULL, 16); 1058 ObjDesc = ACPI_TO_POINTER (Address); 1148 ACPI_FORMAT_UINT64 (Info->Address));
|
| dbdisply.c | 85 /* All predefined Address Space IDs */ 141 ACPI_SIZE Address; 144 Address = strtoul (Target, NULL, 16); 145 ObjPtr = ACPI_TO_POINTER (Address); 247 "Address %p is invalid in this address space\n", 263 "Cannot read entire Named object at address %p\n", 278 "Cannot read entire ACPI object at address %p\n", 295 "Cannot read entire Parser object at address %p\n", 354 AcpiOsPrintf ("Invalid Named object at address %p\n", Node) [all...] |
| /src/sys/external/bsd/acpica/dist/events/ |
| evregion.c | 102 /* Run the _REG methods for OpRegions in each default address space */ 138 * DESCRIPTION: Dispatch an address space or operation region access to 143 * region address spaces are always available as per the ACPI specification. 167 ACPI_PHYSICAL_ADDRESS Address; 221 Ctx->SubspaceId = (UINT8) RegionObj->Region.Address; 229 Ctx->Offset = RegionObj->Region.Address; 273 /* We have everything we need, we can invoke the address space handler */ 276 Address = (RegionObj->Region.Address + RegionOffset); 279 "Handler %p (@%p) Address %8.8X%8.8X [%s]\n" [all...] |
| /src/sys/external/bsd/acpica/dist/os_specific/service_layers/ |
| osbsdtbl.c | 66 ACPI_SIZE Address, 79 ACPI_PHYSICAL_ADDRESS *Address); 102 /* Fadt address */ 117 ACPI_PHYSICAL_ADDRESS Address; 128 * PARAMETERS: Address - Physical address of the ACPI table 132 * AE_NOT_FOUND: A valid table was not found at the address 134 * DESCRIPTION: Get an ACPI table via a physical memory address. 140 ACPI_PHYSICAL_ADDRESS Address, 148 /* Validate the input physical address to avoid program crash * [all...] |
| oslinuxtbl.c | 91 ACPI_SIZE Address, 122 ACPI_PHYSICAL_ADDRESS *Address); 133 ACPI_PHYSICAL_ADDRESS *Address); 217 * PARAMETERS: Address - Physical address of the ACPI table 221 * AE_NOT_FOUND: A valid table was not found at the address 223 * DESCRIPTION: Get an ACPI table via a physical memory address. 229 ACPI_PHYSICAL_ADDRESS Address, 248 Status = OslMapTable (Address, NULL, &MappedTable); 288 * Address - Where the table physical address is returne [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_descriptions.h | 10 // This file is a part of AddressSanitizer, an address sanity checker. 152 // Assume address is close to at most four globals. 162 // as other. Descriptions can have different address within the variable 170 // General function to describe an address. Will try to describe the address as 171 // a shadow, global (variable), stack, or heap address. 212 uptr Address() const { 230 Printf("Address %p is a wild pointer.\n", data.addr);
|
| /src/sys/external/bsd/gnu-efi/dist/inc/ |
| efilib.h | 913 UINT64 Address; 920 IN OUT EFI_PCI_ADDRESS_UNION *Address,
|
| efiip.h | 227 EFI_IPv6_ADDRESS Address;
|
| /src/sys/external/bsd/gnu-efi/dist/inc/ia64/ |
| salproc.h | 227 UINT64 Address;
|
| /src/sys/external/bsd/acpica/dist/include/ |
| acobject.h | 53 * address space handlers and notify handlers. The object is a constant 100 #define AOPOBJ_INVALID 0x40 /* Host OS won't allow a Region address */ 206 ACPI_PHYSICAL_ADDRESS Address; 255 union acpi_operand_object *Handler /* Handler for Address space */ 295 ACPI_IO_ADDRESS Address; 402 ACPI_NOTIFY_HANDLER Handler; /* Handler address */ 424 /* Flags for address handler (HandlerFlags) */
|
| actbl.h | 123 * GAS - Generic Address Structure (ACPI 2.0+) 127 * 64-bit Address field must be performed with care. 133 UINT8 SpaceId; /* Address space where struct or register exists */ 137 UINT64 Address; /* 64-bit address of struct or register */ 155 UINT32 RsdtPhysicalAddress; /* 32-bit physical address of the RSDT */ 157 UINT64 XsdtPhysicalAddress; /* 64-bit physical address of the XSDT (ACPI 2.0+) */ 223 UINT32 FirmwareWakingVector; /* 32-bit physical address of the Firmware Waking Vector */ 261 UINT32 Facs; /* 32-bit physical address of FACS */ 262 UINT32 Dsdt; /* 32-bit physical address of DSDT * [all...] |
| actbl3.h | 444 UINT64 LogAddress; /* Address of the event log area */ 452 UINT64 LogAddress; /* Address of the event log area */ 459 ACPI_GENERIC_ADDRESS Address; 561 UINT64 LogAddress; /* Address of the event log area */ 809 ACPI_GENERIC_ADDRESS Address;
|
| amlresrc.h | 230 UINT16 Address; 275 /* General Flags for address space resource descriptors */ 316 UINT32 Address; 414 UINT64 Address; 736 AML_RESOURCE_ADDRESS Address;
|
| acrestyp.h | 84 #define ACPI_DECODE_10 (UINT8) 0x00 /* 10-bit IO address decode */ 85 #define ACPI_DECODE_16 (UINT8) 0x01 /* 16-bit IO address decode */ 135 * 16, 32 and 64-bit Address Descriptor resource types 232 UINT16 Address; 302 UINT32 Address; 351 /* Fields common to all address descriptors, 16/32/64 bit */ 400 ACPI_ADDRESS16_ATTRIBUTE Address; 408 ACPI_ADDRESS32_ATTRIBUTE Address; 416 ACPI_ADDRESS64_ATTRIBUTE Address; 425 ACPI_ADDRESS64_ATTRIBUTE Address; [all...] |