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

1 2 3

  /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...]
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...]
  /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...]
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...]
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;
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...]
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...]
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,
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);
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));
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));
  /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...]
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...]
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...]
  /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);

Completed in 155 milliseconds

1 2 3