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

1 2 3 4 5

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFSection.h 18 uint64_t Address = 0;
DWARFDebugAranges.h 24 uint64_t findAddress(uint64_t Address) const;
56 uint64_t LowPC; /// Start of address range.
57 uint64_t Length; /// End of address range (not including this address).
62 uint64_t Address;
66 RangeEndpoint(uint64_t Address, uint64_t CUOffset, bool IsRangeStart)
67 : Address(Address), CUOffset(CUOffset), IsRangeStart(IsRangeStart) {}
70 return Address < Other.Address;
    [all...]
DWARFDebugArangeSet.h 35 /// The size in bytes of an address on the target architecture. For segmented
36 /// addressing, this is the size of the offset portion of the address.
39 /// If the target system uses a flat address space, this value is 0.
44 uint64_t Address;
47 uint64_t getEndAddress() const { return Address + Length; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
SymbolSize.h 20 uint64_t Address;
  /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...]
  /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/external/apache2/llvm/dist/llvm/lib/Object/
SymbolSize.cpp 19 // Orders increasingly by (SectionID, Address).
23 if (A->Address != B->Address)
24 return A->Address < B->Address ? -1 : 1;
72 uint64_t Address = Sec.getAddress();
75 {O.symbol_end(), Address + Size, 0, getSectionID(O, Sec)});
89 // If multiple symbol have the same address, give both the same size.
91 while (NextI < N && Addresses[NextI].Address == P.Address)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cfi-verify/lib/
GraphBuilder.h 53 uint64_t Address;
70 // Map between an instruction address, and the address of the next instruction
72 // - [orphaned node, base address)
73 // - [conditional branch node {target|fallthrough}, base address)
88 // Returns an in-order list of the path between the address provided and the
89 // base. The provided address must be part of this graph, and must not be a
91 std::vector<uint64_t> flattenAddress(uint64_t Address) const;
105 object::SectionedAddress Address);
109 // list of cross references to instruction referenced in `Address`. If any o
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
ReduceBasicBlocks.cpp 40 Value *Address = nullptr;
42 Address = IndBI->getAddress();
58 if (Address) {
60 IndirectBrInst::Create(Address, ChunkSucessors.size(), &BB);
  /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/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86InstPrinterCommon.cpp 294 /// \p Address The address of the next instruction.
296 void X86InstPrinterCommon::printPCRelImm(const MCInst *MI, uint64_t Address,
298 // Do not print the numberic target address when symbolizing.
305 uint64_t Target = Address + Op.getImm();
314 // that address in hex.
316 int64_t Address;
317 if (BranchTarget && BranchTarget->evaluateAsAbsolute(Address)) {
318 O << formatHex((uint64_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/external/apache2/llvm/dist/clang/lib/CodeGen/
Address.h 1 //===-- Address.h - An aligned address -------------------------*- C++ -*-===//
23 /// An aligned address.
24 class Address {
28 Address(llvm::Value *pointer, CharUnits alignment)
31 "creating valid address with invalid alignment");
34 static Address invalid() { return Address(nullptr, CharUnits()); }
47 /// Return the type of the values stored in this address.
50 /// store it in Address instead for the convenience of writing code
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/Symbolize/
DIPrinter.h 36 Optional<uint64_t> Address;
85 void printHeader(uint64_t Address);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/Shared/
TargetProcessControlTypes.h 29 UIntWrite(JITTargetAddress Address, T Value)
30 : Address(Address), Value(Value) {}
32 JITTargetAddress Address = 0;
52 BufferWrite(JITTargetAddress Address, StringRef Buffer)
53 : Address(Address), Buffer(Buffer) {}
55 JITTargetAddress Address = 0;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Memory.h 26 /// This class encapsulates the notion of a memory block which has an address
33 MemoryBlock() : Address(nullptr), AllocatedSize(0) {}
35 : Address(addr), AllocatedSize(allocatedSize) {}
36 void *base() const { return Address; }
42 void *Address; ///< Address of first byte of memory area
78 /// The actual allocated address is not guaranteed to be near the requested
79 /// address.
90 /// If the address following \p NearBlock is not so aligned, it will be
WithColor.h 27 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);
  /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...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
JITLink.h 106 Addressable(JITTargetAddress Address, bool IsDefined)
107 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {}
109 Addressable(JITTargetAddress Address)
110 : Address(Address), IsDefined(false), IsAbsolute(true) {
121 JITTargetAddress getAddress() const { return Address; }
122 void setAddress(JITTargetAddress Address) { this->Address = Address; }
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
MachOPlatform.h 36 SectionExtent(JITTargetAddress Address, uint64_t NumPtrs)
37 : Address(Address), NumPtrs(NumPtrs) {}
38 JITTargetAddress Address = 0;

Completed in 80 milliseconds

1 2 3 4 5