HomeSort by: relevance | last modified time | path
    Searched defs:Address (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/sys/external/bsd/acpica/dist/compiler/
aslmapenter.c 172 UINT16 Address);
252 UINT16 Address;
268 /* Extract address and speed from the resource descriptor */
274 Address = Resource->I2cSerialBus.SlaveAddress;
280 Address = Resource->SpiSerialBus.DeviceSelection;
286 Address = 0;
294 Info = MpCreateSerialInfo (DeviceName, Address);
299 Info->Address = Address;
387 * Address - Physical address for the devic
    [all...]
dttable2.c 2094 UINT32 Address;
2101 DtCompileInteger ((UINT8 *) &Address, FieldList, 4, DT_NON_ZERO);
2103 DtCreateSubtable ((UINT8 *) &Address, 4, &Subtable);
3004 /* Optional: Log area start address */
3376 UINT64 Address;
3383 DtCompileInteger ((UINT8 *) &Address, FieldList, 8, DT_NON_ZERO);
3385 DtCreateSubtable ((UINT8 *) &Address, 8, &Subtable);
asltypes.h 478 UINT16 Address;
  /src/sys/external/bsd/acpica/dist/tables/
tbinstal.c 206 NewTableDesc->Address, NewTableDesc->Flags, NewTableDesc->Pointer);
208 AcpiTbPrintTableHeader (NewTableDesc->Address, NewTableDesc->Pointer);
227 * PARAMETERS: Address - Address of the table (might be a virtual
228 * address depending on the TableFlags)
248 ACPI_PHYSICAL_ADDRESS Address,
265 Status = AcpiTbAcquireTempTable (&NewTableDesc, Address, Flags, Table);
270 ACPI_FORMAT_UINT64 (Address)));
284 NewTableDesc.Signature.Ascii, ACPI_FORMAT_UINT64 (Address)));
364 ACPI_PHYSICAL_ADDRESS Address;
    [all...]
tbutils.c 311 * RETURN: Physical address extracted from the root table
331 * Get the table physical address (32-bit for RSDT, 64-bit for XSDT):
355 /* Will truncate 64-bit address to 32 bits, issue warning */
358 "64-bit Physical Address in XSDT is too large (0x%8.8X%8.8X),"
394 ACPI_PHYSICAL_ADDRESS Address;
404 /* Map the entire RSDP and extract the address of the RSDT or XSDT */
426 Address = (ACPI_PHYSICAL_ADDRESS) Rsdp->XsdtPhysicalAddress;
433 Address = (ACPI_PHYSICAL_ADDRESS) Rsdp->RsdtPhysicalAddress;
445 Table = AcpiOsMapMemory (Address, sizeof (ACPI_TABLE_HEADER));
451 AcpiTbPrintTableHeader (Address, Table)
    [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/tools/acpidump/
apdump.c 161 ACPI_PHYSICAL_ADDRESS Address);
296 * Address - Physical address of the table
309 ACPI_PHYSICAL_ADDRESS Address)
320 AcpiTbPrintTableHeader (Address, Table);
333 * Note: simplest to just always emit a 64-bit address. AcpiXtract
337 Table->Signature, ACPI_FORMAT_UINT64 (Address));
366 ACPI_PHYSICAL_ADDRESS Address;
376 Status = AcpiOsGetTableByIndex (i, &Table, &Instance, &Address);
399 TableStatus = ApDumpTableBuffer (Table, Instance, Address);
    [all...]
  /src/sys/external/bsd/acpica/dist/hardware/
hwregs.c 167 UINT64 Address,
190 * PARAMETERS: Address - GAS register address
202 UINT64 Address,
220 * Note: This algorithm assumes that the "Address" fields should always
243 while (!ACPI_IS_ALIGNED (Address, AccessBitWidth >> 3))
276 * Address - Pointer to where the gas->address
282 * pointer, Address, SpaceId, BitWidth, and BitOffset.
290 UINT64 *Address)
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpiexec/
aecommon.h 176 ACPI_PHYSICAL_ADDRESS Address;
265 UINT32 Address);
302 ACPI_PHYSICAL_ADDRESS Address,
  /src/sys/external/bsd/acpica/dist/debugger/
dbmethod.c 199 UINT32 Address;
209 /* Get and verify the breakpoint address */
211 Address = strtoul (Location, NULL, 16);
214 if (Address <= AmlOffset)
216 AcpiOsPrintf ("Breakpoint %X is beyond current address %X\n",
217 Address, AmlOffset);
222 WalkState->UserBreakpoint = Address;
223 AcpiOsPrintf ("Breakpoint set at AML offset %X\n", Address);
dbcmds.c 219 ACPI_SIZE Address;
226 Address = strtoul (InString, NULL, 16);
227 Node = ACPI_TO_POINTER (Address);
230 AcpiOsPrintf ("Address %p is invalid", Node);
238 AcpiOsPrintf ("Address %p is not a valid namespace node [%s]\n",
454 "TableHeader (Sig, Address, Length, Misc)\n");
512 AcpiTbPrintTableHeader (TableDesc->Address, TableDesc->Pointer);
715 * PARAMETERS: BufferArg - Buffer name or address
dbnames.c 1160 ACPI_SIZE Address;
1165 Address = strtoul (ObjectArg, NULL, 16);
1166 ObjDesc = ACPI_TO_POINTER (Address);
1256 ACPI_FORMAT_UINT64 (Info->Address));
dbdisply.c 193 /* All predefined Address Space IDs */
249 ACPI_SIZE Address;
252 Address = strtoul (Target, NULL, 16);
253 ObjPtr = ACPI_TO_POINTER (Address);
355 "Address %p is invalid in this address space\n",
371 "Cannot read entire Named object at address %p\n",
386 "Cannot read entire ACPI object at address %p\n",
403 "Cannot read entire Parser object at address %p\n",
462 AcpiOsPrintf ("Invalid Named object at address %p\n", Node)
    [all...]
  /src/sys/external/bsd/acpica/dist/events/
evregion.c 210 /* Run the _REG methods for OpRegions in each default address space */
246 * DESCRIPTION: Dispatch an address space or operation region access to
251 * region address spaces are always available as per the ACPI specification.
275 ACPI_PHYSICAL_ADDRESS Address;
329 Ctx->SubspaceId = (UINT8) RegionObj->Region.Address;
337 Ctx->Offset = RegionObj->Region.Address;
381 /* We have everything we need, we can invoke the address space handler */
384 Address = (RegionObj->Region.Address + RegionOffset);
387 "Handler %p (@%p) Address %8.8X%8.8X [%s]\n"
    [all...]
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
osbsdtbl.c 174 ACPI_SIZE Address,
187 ACPI_PHYSICAL_ADDRESS *Address);
210 /* Fadt address */
225 ACPI_PHYSICAL_ADDRESS Address;
236 * PARAMETERS: Address - Physical address of the ACPI table
240 * AE_NOT_FOUND: A valid table was not found at the address
242 * DESCRIPTION: Get an ACPI table via a physical memory address.
248 ACPI_PHYSICAL_ADDRESS Address,
256 /* Validate the input physical address to avoid program crash *
    [all...]
oslinuxtbl.c 199 ACPI_SIZE Address,
230 ACPI_PHYSICAL_ADDRESS *Address);
241 ACPI_PHYSICAL_ADDRESS *Address);
325 * PARAMETERS: Address - Physical address of the ACPI table
329 * AE_NOT_FOUND: A valid table was not found at the address
331 * DESCRIPTION: Get an ACPI table via a physical memory address.
337 ACPI_PHYSICAL_ADDRESS Address,
356 Status = OslMapTable (Address, NULL, &MappedTable);
396 * 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 161 * address space handlers and notify handlers. The object is a constant
208 #define AOPOBJ_INVALID 0x40 /* Host OS won't allow a Region address */
314 ACPI_PHYSICAL_ADDRESS Address;
363 union acpi_operand_object *Handler /* Handler for Address space */
403 ACPI_IO_ADDRESS Address;
510 ACPI_NOTIFY_HANDLER Handler; /* Handler address */
532 /* Flags for address handler (HandlerFlags) */
actbl.h 231 * GAS - Generic Address Structure (ACPI 2.0+)
235 * 64-bit Address field must be performed with care.
241 UINT8 SpaceId; /* Address space where struct or register exists */
245 UINT64 Address; /* 64-bit address of struct or register */
263 UINT32 RsdtPhysicalAddress; /* 32-bit physical address of the RSDT */
265 UINT64 XsdtPhysicalAddress; /* 64-bit physical address of the XSDT (ACPI 2.0+) */
331 UINT32 FirmwareWakingVector; /* 32-bit physical address of the Firmware Waking Vector */
369 UINT32 Facs; /* 32-bit physical address of FACS */
370 UINT32 Dsdt; /* 32-bit physical address of DSDT *
    [all...]
actbl3.h 551 UINT64 LogAddress; /* Address of the event log area */
559 UINT64 LogAddress; /* Address of the event log area */
566 ACPI_GENERIC_ADDRESS Address;
668 UINT64 LogAddress; /* Address of the event log area */
916 ACPI_GENERIC_ADDRESS Address;
amlresrc.h 338 UINT16 Address;
383 /* General Flags for address space resource descriptors */
424 UINT32 Address;
522 UINT64 Address;
844 AML_RESOURCE_ADDRESS Address;
acrestyp.h 192 #define ACPI_DECODE_10 (UINT8) 0x00 /* 10-bit IO address decode */
193 #define ACPI_DECODE_16 (UINT8) 0x01 /* 16-bit IO address decode */
243 * 16, 32 and 64-bit Address Descriptor resource types
340 UINT16 Address;
410 UINT32 Address;
459 /* Fields common to all address descriptors, 16/32/64 bit */
508 ACPI_ADDRESS16_ATTRIBUTE Address;
516 ACPI_ADDRESS32_ATTRIBUTE Address;
524 ACPI_ADDRESS64_ATTRIBUTE Address;
533 ACPI_ADDRESS64_ATTRIBUTE Address;
    [all...]

Completed in 98 milliseconds

1 2