HomeSort by relevance Sort by last modified time
    Searched defs:Address (Results 201 - 225 of 377) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 236 /// (potentially phi translated) address that was live in the block.
239 Value *Address;
242 NonLocalDepResult(BasicBlock *bb, MemDepResult result, Value *address)
243 : Entry(bb, result), Address(address) {}
250 Address = Addr;
255 /// Returns the address of this pointer in this block.
257 /// This can be different than the address queried for the non-local result
258 /// because of phi translation. This returns null if the address was not
260 /// a cached result and that address was deleted
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/
JITSymbol.h 39 /// Represents an address in the target process's address space.
156 /// Represents a symbol that has been evaluated to an address already.
164 /// Create a symbol for the given address and flags.
165 JITEvaluatedSymbol(JITTargetAddress Address, JITSymbolFlags Flags)
166 : Address(Address), Flags(Flags) {}
168 /// An evaluated symbol converts to 'true' if its address is non-zero.
169 explicit operator bool() const { return Address != 0; }
171 /// Return the address of this symbol
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZLongBranch.cpp 40 // (1) Work out the address that each block would have if no branches
44 // (2) Work out the address that each block would have if all branches
47 // (3) Walk through the block calculating the final address of each instruction
49 // this check uses the final address of the target block, as calculated
51 // address of the target block that was calculated in (2). Both checks
82 // The address that we currently assume the block has.
83 uint64_t Address = 0;
105 // The address that we currently assume the terminator has.
106 uint64_t Address = 0;
124 // The address that we assume this position has
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
LinePrinter.h 142 Address,
  /art/compiler/utils/x86/
assembler_x86.h 93 // Operand can be sub classed (e.g: Address).
150 class Address : public Operand {
152 Address(Register base_in, int32_t disp) {
156 Address(Register base_in, int32_t disp, AssemblerFixup *fixup) {
161 Address(Register base_in, Offset disp) {
165 Address(Register base_in, FrameOffset disp) {
170 Address(Register base_in, MemberOffset disp) {
174 Address(Register index_in, ScaleFactor scale_in, int32_t disp) {
181 Address(Register base_in, Register index_in, ScaleFactor scale_in, int32_t disp) {
185 Address(Register base_in
    [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64.h 125 // Operand can be sub classed (e.g: Address).
186 class Address : public Operand {
188 Address(CpuRegister base_in, int32_t disp) {
192 Address(CpuRegister base_in, Offset disp) {
196 Address(CpuRegister base_in, FrameOffset disp) {
201 Address(CpuRegister base_in, MemberOffset disp) {
227 Address(CpuRegister index_in, ScaleFactor scale_in, int32_t disp) {
234 Address(CpuRegister base_in, CpuRegister index_in, ScaleFactor scale_in, int32_t disp) {
250 // If no_rip is true then the Absolute address isn't RIP relative.
251 static Address Absolute(uintptr_t addr, bool no_rip = false)
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/SdMmc/XenonDxe/
SdMmcPciHci.c 123 header to use as the base address for the memory
190 header to use as the base address for the memory
248 header to use as the base address for the memory
306 header to use as the base address for the memory
357 header to use as the base address for the memory
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
Elf32Convert.c 406 // if the section address is aligned we must align PE/COFF
409 Error (NULL, 0, 3000, "Invalid", "Section address not aligned to its own alignment.");
457 // if the section address is aligned we must align PE/COFF
460 Error (NULL, 0, 3000, "Invalid", "Section address not aligned to its own alignment.");
510 // if the section address is aligned we must align PE/COFF
513 Error (NULL, 0, 3000, "Invalid", "Section address not aligned to its own alignment.");
732 UINT16 Address;
758 // r_offset is the virtual address of the storage unit to be relocated.
759 // sh_addr is the virtual address for the base of the section.
773 // Converts Targ from a absolute virtual address to the absolute
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/MpServicesOnFrameworkMpServicesThunk/
MpServicesOnFrameworkMpServicesThunk.c     [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGlueReportStatusCodeLib.h 117 EFI_PHYSICAL_ADDRESS Address;
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
EfiDevice.c 160 // Try to print out the MAC address
399 // If it is a address just use it.
637 Load a file into memory and optionally jump to it. A load address can be
643 Argv[2] - Address to load to or '*' if the load address will be allocated
656 go fv1:\EblCmdX 0x10000; Load EblCmdX to address 0x10000 and return
674 VOID *Address;
682 // device name and laod address are required
695 Status = EfiReadAllocatePool (File, &Address, &Size);
698 EntryPoint = (EBL_COMMMAND)((UINTN)EntryPoint + (UINTN)Address);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/
GdbStub.c 183 Transfer length bytes of input buffer, starting at Address, to memory.
186 @param *address the start address of the transferring/writing the memory
193 IN unsigned char *Address,
209 *Address++ = (UINT8)((c1 << 4) + c2);
217 Transfer Length bytes of memory starting at Address to an output buffer, OutBuffer. This function will finally send the buffer
221 @param *address pointer to the start address of the transferring/reading the memory
227 IN unsigned char *Address
235 if (ValidateAddress(Address) == FALSE) {
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/
InternalIsaBus.h 125 UINT8 Address;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/
IsaDriver.h 117 UINT8 Address;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciEnumerator.c 319 @param RomBase Base address of ROM driver loaded from.
381 UINT64 Address;
432 Address = EFI_PCI_ADDRESS (StartBusNumber, Device, Func, 0x18);
437 Address,
445 Address = EFI_PCI_ADDRESS (StartBusNumber, Device, Func, 0x1A);
449 Address,
462 Address,
481 Address = EFI_PCI_ADDRESS (StartBusNumber, Device, Func, 0x1A);
486 Address,
    [all...]
PciLib.c 43 UINT32 Address;
53 Address = 0;
59 &Address
62 (PciIoDevice->PciBar)[P2C_MEM_1].BaseAddress = (UINT64) (Address);
66 Address = 0;
72 &Address
74 (PciIoDevice->PciBar)[P2C_MEM_2].BaseAddress = (UINT64) (Address);
78 Address = 0;
84 &Address
86 (PciIoDevice->PciBar)[P2C_IO_1].BaseAddress = (UINT64) (Address);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/
SdMmcPciHci.c 123 header to use as the base address for the memory
190 header to use as the base address for the memory
248 header to use as the base address for the memory
306 header to use as the base address for the memory
357 header to use as the base address for the memory
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/
UfsHci.c 19 @param Address The system memory address to test.
31 IN UINTN Address,
53 Value = MmioRead32 (Address) & MaskValue;
213 @param[in, out] TsfBase The base address of TSF field of QUERY REQUEST UPIU.
257 @param[in, out] Command The base address of COMMAND UPIU.
313 @param[in] Prdt The base address of PRDT.
366 @param[in, out] QueryReq The base address of QUERY REQUEST UPIU.
716 UINTN Address;
721 Address = UfsHcBase + UFS_HC_UTRLRSR_OFFSET;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
BootScriptExecute.c 26 @param SmbusAddress Address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length,
127 Translates boot script width and address stride to MDE library interface.
131 @param Address Address of the operation.
136 @retval EFI_INVALID_PARAMETER Width or Address is invalid.
141 IN UINT64 Address,
156 if ((Address & AlignMask) != 0) {
175 @param[in] Address Address of the operation.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Config2Impl.c 91 and address list in all interfaces will be released.
465 Set the station address and subnetmask for the default interface.
468 @param[in] StationAddress Ip address to be set.
471 @retval EFI_SUCCESS Set default address successful.
500 // The default address is changed, free the previous interface first.
541 // A non-NULL IpIf->Arp here means a new ARP child is created when setting default address,
588 Set the station address, subnetmask and gateway address for the default interface.
591 @param[in] StationAddress Ip address to be set.
742 // The dns server address must be unicast.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Application/IfConfig6/
IfConfig6.c 254 Print MAC address.
256 @param[in] Node The pointer of MAC address buffer.
257 @param[in] Size The size of MAC address buffer.
281 Print IPv6 address.
306 // :: is at the beginning of the address.
323 // :: is at the end of the address.
345 Pick up host IPv6 address in string format from Args with "-s" option and convert it to EFI_IP6_CONFIG_MANUAL_ADDRESS format.
347 @param[in, out] Arg The pointer of the address of ARG_LIST which save Args with the "-s" option.
348 @param[out] Buf The pointer of the address of EFI_IP6_CONFIG_MANUAL_ADDRESS.
352 @retval Others Does't find the host address, or it is an invalid IPv6 address in string format.
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
CpuS3.c 43 Get starting address and size of the rendezvous entry for APs.
46 @param AddressMap Output buffer for address map information.
417 @param WorkingBuffer The address of the work buffer.
428 // Get the address map of startup code for AP,
447 // Get the start address of exchange data between BSP and AP.
543 // Re-initialize StackAddress to original beginning address.
737 @param[in] Cr3 The base address of the page tables to use in SMM.
748 EFI_PHYSICAL_ADDRESS Address;
797 Address = BASE_4GB - 1;
802 &Address
    [all...]
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/
PchAccess.h 470 UINT32 Address;
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 225 /// (potentially phi translated) address that was live in the block.
228 Value *Address;
231 NonLocalDepResult(BasicBlock *bb, MemDepResult result, Value *address)
232 : Entry(bb, result), Address(address) {}
239 Address = Addr;
244 /// Returns the address of this pointer in this block.
246 /// This can be different than the address queried for the non-local result
247 /// because of phi translation. This returns null if the address was not
249 /// a cached result and that address was deleted
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 48 // program opcodes that alter the address register first multiply their
102 return LHS.Address < RHS.Address;
107 uint64_t Address;
131 // A boolean indicating that the current address is that of the
135 // A boolean indicating that the current address is one (of possibly
139 // A boolean indicating that the current address is one (of possibly
147 // guaranteed to be in the order of ascending instruction address.
149 // Sequence describes instructions at address range [LowPC, HighPC)
184 // Returns the index of the row with file/line info for a given address,
    [all...]

Completed in 1047 milliseconds

1 2 3 4 5 6 7 891011>>