| /device/linaro/bootloader/edk2/MdePkg/Include/Ppi/ |
| IsaHc.h | 94 /// The address of the ISA/LPC Bridge device.
106 UINT32 Address;
|
| /device/linaro/bootloader/edk2/MdePkg/Library/BasePeCoffLib/Arm/ |
| PeCoffLoaderEx.c | 26 @return Immediate address encoded in the instruction
35 UINT16 Address;
46 Address = (UINT16)(Movt & 0x000000ff); // imm8
47 Address |= (UINT16)((Movt >> 4) & 0x0000f700); // imm4 imm3
48 Address |= (((Movt & BIT26) != 0) ? BIT11 : 0); // i
49 return Address;
57 @param Address New addres to patch into the instruction
62 IN UINT16 Address
68 Patch = ((Address >> 12) & 0x000f); // imm4
69 Patch |= (((Address & BIT11) != 0) ? BIT10 : 0); // i [all...] |
| /device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/ |
| ComponentName.c | 264 CHAR16 Address[sizeof"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"];
279 Status = NetLibIp6ToStr (&ModeData.DnsConfigData.StationIp, Address, sizeof (Address));
287 Address,
|
| /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/ |
| ComponentName.c | 255 CHAR16 Address[sizeof"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"];
293 Status = NetLibIp6ToStr (&Ip6ModeData.ConfigData.StationAddress, Address, sizeof(Address));
301 Address
303 Status = NetLibIp6ToStr (&Ip6ModeData.ConfigData.DestinationAddress, Address, sizeof(Address));
311 Address
|
| Ip6Mld.h | 39 EFI_IPv6_ADDRESS Address;
59 @param[in] MulticastAddr The IPv6 multicast address to be searched.
91 @param[in] Address The group address to join.
102 IN EFI_IPv6_ADDRESS *Address
109 @param[in] Address The group address to leave.
119 IN EFI_IPv6_ADDRESS *Address
128 @param[in] GroupAddress The target group address. If NULL, leave all
|
| /device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/ |
| ComponentName.c | 249 CHAR16 Address[sizeof"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"];
260 Status = NetLibIp6ToStr (&Mtftp6ModeData.ConfigData.ServerIp, Address, sizeof(Address));
266 Address,
|
| /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDMediaDeviceDxe/ |
| CEATABlockIo.c | 64 @param LBA The starting logical block address to read from on the device.
94 UINT64 Address;
103 Address = MultU64x32(LBA, CardData->BlockIoMedia.BlockSize);
129 if ((Address + BufferSize) > MultU64x32 (CardData->BlockIoMedia.LastBlock + 1, CardData->BlockIoMedia.BlockSize)) {
143 Address += Index * TransferSize;
144 CEATALBA = DivU64x32Remainder (Address, DATA_UNIT_SIZE, &Remainder);
154 DEBUG((EFI_D_ERROR, "Read Failed at 0x%x, Index %d, Size 0x%x\n", Address, Index, TransferSize));
173 @param LBA The starting logical block address to read from on the device.
203 UINT64 Address;
213 Address = MultU64x32(LBA, CardData->BlockIoMedia.BlockSize); [all...] |
| MMCSDBlockIo.c | 50 @param LBA The starting logical block address to read from on the device.
76 UINT32 Address;
103 //Block Address
105 Address = (UINT32)DivU64x32 (MultU64x32 (LBA, CardData->BlockIoMedia.BlockSize), 512);
108 //Byte Address
110 Address = (UINT32)MultU64x32 (LBA, CardData->BlockIoMedia.BlockSize);
184 Address,
207 Address,
224 //Block Address
226 Address += TransferLength / 512; [all...] |
| /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/X64/ |
| SmmProfileArch.c | 59 // Return the address of PML4 (to set CR3)
75 VOID *Address;
80 Address = NULL;
81 Address = AllocatePages (MAX_PF_PAGE_COUNT);
82 ASSERT (Address != NULL);
84 mPFPageBuffer = (UINT64)(UINTN) Address;
95 @param Uplink The address of Page-Directory entry.
103 UINT64 Address;
108 Address = mPFPageBuffer + EFI_PAGES_TO_SIZE (mPFPageIndex);
109 ZeroMem ((VOID *) (UINTN) Address, EFI_PAGE_SIZE); [all...] |
| /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSmm/ |
| SmmScriptSave.c | 173 UINTN Address;
180 Address = VA_ARG(Marker, UINTN);
194 Script.IoWrite->Address = Address;
218 UINT64 Address;
225 Address = VA_ARG(Marker, UINT64);
239 Script.PciWrite->Address = Address;
|
| /external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/ |
| JITEventListener.h | 31 /// The address at which the current line changes. 32 uintptr_t Address; 42 /// The list of line boundary information, sorted by address. 70 /// OldPtr is the address of the machine code and will be the same as the Code
|
| /external/swiftshader/third_party/LLVM/lib/DebugInfo/ |
| DWARFDebugArangeSet.cpp | 32 if (ArangeDescriptors[i].getEndAddress() >= ArangeDescriptors[i+1].Address){ 33 // The current range ends at or exceeds the start of the next address 34 // range. Compute the max end address between the two and use that to 39 ArangeDescriptors[i].Length = max_end_addr - ArangeDescriptors[i].Address; 43 // Discontiguous address range, just proceed to the next one. 55 // 7.20 Address Range Table 57 // Each set of entries in the table of address ranges contained in 63 // containing the size in bytes of an address (or the offset portion of 64 // an address for segmented addressing) on the target system; and a 67 // of tuples. Each tuple consists of an address and a length, each i [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFDebugAranges.h | 25 uint32_t findAddress(uint64_t Address) const; 53 bool containsAddress(uint64_t Address) const { 54 return LowPC <= Address && Address < HighPC(); 61 uint64_t LowPC; /// Start of address range. 62 uint32_t Length; /// End of address range (not including this address). 67 uint64_t Address; 71 RangeEndpoint(uint64_t Address, uint32_t CUOffset, bool IsRangeStart) 72 : Address(Address), CUOffset(CUOffset), IsRangeStart(IsRangeStart) { [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/ |
| JITEventListener.h | 42 /// The address at which the current line changes. 43 uintptr_t Address; 53 /// The list of line boundary information, sorted by address. 76 /// with section headers updated to reflect the address at which sections
|
| /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
| WithColor.h | 24 Address,
|
| /external/swiftshader/third_party/llvm-7.0/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; 64 uint64_t Address = Sec.getAddress(); 67 {O.symbol_end(), Address + Size, 0, getSectionID(O, Sec)}); 81 // If multiple symbol have the same address, give both the same size. 83 while (NextI < N && Addresses[NextI].Address == P.Address) [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/InstPrinter/ |
| X86InstPrinterCommon.cpp | 107 // that address in hex. 109 int64_t Address; 110 if (BranchTarget && BranchTarget->evaluateAsAbsolute(Address)) { 111 O << formatHex((uint64_t)Address);
|
| /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cfi-verify/lib/ |
| GraphBuilder.h | 54 uint64_t Address; 71 // Map between an instruction address, and the address of the next instruction 73 // - [orphaned node, base address) 74 // - [conditional branch node {target|fallthrough}, base address) 89 // Returns an in-order list of the path between the address provided and the 90 // base. The provided address must be part of this graph, and must not be a 92 std::vector<uint64_t> flattenAddress(uint64_t Address) const; 106 uint64_t Address); 110 // list of cross references to instruction referenced in `Address`. If any o [all...] |
| /device/google/cuttlefish_common/common/libs/net/ |
| network_interface.h | 67 // Set IPv4 address of the network interface. 68 NetworkInterface& SetAddress(const std::string& address) { 69 ip_address_ = address; 73 // Get IPv4 address of the network interface. 74 const std::string& Address() const { 78 // Set IPv4 broadcast address of the network interface. 79 NetworkInterface& SetBroadcastAddress(const std::string& address) { 80 bc_address_ = address; 90 // Get IPv4 broadcast address of the network interface. 103 // IPv4 address of this interface [all...] |
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseIoLibIntrinsic/ |
| IoLibIpf.c | 47 UINT64 Address;
50 // Add the 64MB aligned IO Port space to the IO address
52 Address = MAP_PORT_BASE_TO_MEM (Port);
53 Address += PcdGet64(PcdIoBlockBaseAddressForIpf);
55 return MmioRead8 (Address);
76 UINT64 Address;
79 // Add the 64MB aligned IO Port space to the IO address
81 Address = MAP_PORT_BASE_TO_MEM (Port);
82 Address += PcdGet64(PcdIoBlockBaseAddressForIpf);
84 return MmioRead16 (Address);
[all...] |
| /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/ |
| Host.h | 132 EFI_PHYSICAL_ADDRESS Address;
|
| /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/ |
| Pool.c | 19 // To cache the SMRAM base since when Loading modules At fixed address feature is enabled,
136 EFI_PHYSICAL_ADDRESS Address;
145 Status = SmmInternalAllocatePages (AllocateAnyPages, PoolType, EFI_SIZE_TO_PAGES (MAX_POOL_SIZE << 1), &Address);
149 Hdr = (FREE_POOL_HEADER *) (UINTN) Address;
208 @param Buffer The address to return a pointer to the allocated
227 EFI_PHYSICAL_ADDRESS Address;
238 Status = SmmInternalAllocatePages (AllocateAnyPages, PoolType, Size, &Address);
243 PoolHdr = (POOL_HEADER*)(UINTN)Address;
269 @param Buffer The address to return a pointer to the allocated
|
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/CapsuleRuntimeDxe/X64/ |
| SaveLongModeContext.c | 2 Create the variable to save the base address of page table and stack
40 Allocate EfiReservedMemoryType below 4G memory address.
42 This function allocates EfiReservedMemoryType below 4G memory address.
46 @return Allocated Address for output.
55 EFI_PHYSICAL_ADDRESS Address;
60 Address = 0xffffffff;
66 &Address
70 Buffer = (VOID *) (UINTN) Address;
201 Create the variable to save the base address of page table and stack
|
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ |
| ReportStatusCodeRouterRuntimeDxe.c | 53 EFI_PHYSICAL_ADDRESS Address;
62 Address = CallbackEntry->StatusCodeDataBuffer;
63 while (Address < CallbackEntry->EndPointer) {
64 RscData = (RSC_DATA_ENTRY *) (UINTN) Address;
73 Address += (sizeof (RSC_DATA_ENTRY) + RscData->Data.Size);
74 Address = ALIGN_VARIABLE (Address);
93 2. not unregister at exit boot services so that the router will still have its callback address
331 Virtual address change notification call back. It converts global pointer
332 to virtual address. [all...] |
| /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
| SmmIoTrapDispatch2.h | 46 UINT16 Address;
67 specified length and characteristics will be allocated and the Address field in RegisterContext
70 The service will not perform GCD allocation if the base address is non-zero or
|