| /device/linaro/bootloader/edk2/MdeModulePkg/Core/RuntimeDxe/ |
| Runtime.c | 13 the new virtual address space.
115 Determines the new virtual address that is to be used on subsequent memory accesses.
120 for the new virtual address mappings being applied.
122 @retval EFI_SUCCESS The pointer pointed to by Address was modified.
123 @retval EFI_NOT_FOUND The pointer pointed to by Address was not found to be part
135 UINTN Address;
147 // Get the address to convert
149 Address = (UINTN) *ConvertAddress;
154 if (Address == 0) {
173 if (Address >= VirtEntry->PhysicalStart) { [all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/X64/ |
| SetIdtEntry.c | 195 UINTN Address;
197 Address = mPageFaultBuffer + EFI_PAGES_TO_SIZE (mPageFaultIndex);
198 ZeroMem ((VOID *) Address, EFI_PAGES_TO_SIZE (1));
203 if ((mPageFaultUplink[mPageFaultIndex] != NULL) && ((*mPageFaultUplink[mPageFaultIndex] & mPhyMask) == Address)) {
210 *Uplink = Address | IA32_PG_P | IA32_PG_RW;
|
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/ |
| Edb.c | 169 UINT64 Address;
176 Address = SystemContext.SystemContextEbc->Ip - sizeof(UINT16);
183 if ((DebuggerPrivate->DebuggerBreakpointContext[Index].BreakpointAddress == Address) &&
199 SystemContext.SystemContextEbc->Ip = Address;
210 Address = SystemContext.SystemContextEbc->Ip;
217 if ((DebuggerPrivate->DebuggerBreakpointContext[Index].BreakpointAddress == Address) &&
231 // Do not set Breakpoint flag. We record the address here just let it not patch breakpoint address when de-init.
|
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/ |
| Ip4Igmp.c | 58 Group->Address = IP4_ALLSYSTEM_ADDRESS;
86 group Address in this IGMP control block
89 @param[in] Address The multicast address to search.
91 @return NULL if the multicast address isn't in the IGMP control block. Otherwise
93 for Address.
99 IN IP4_ADDR Address
108 if (Group->Address == Address) {
119 same MAC address. Several IP4 multicast address may be mapped to [all...] |
| Ip4Igmp.h | 46 IP4_ADDR Address;
82 @param[in] Address The group to join.
92 IN IP4_ADDR Address
99 address.
100 @param[in] Address The group address to leave.
110 IN IP4_ADDR Address
148 Add a group address to the array of group addresses.
149 The caller should make sure that no duplicated address
156 @param[in] Addr The IP4 multicast address to add. [all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/ |
| Snp.c | 270 VOID *Address;
368 &Address,
377 Snp = (SNP_DRIVER *) (UINTN) Address;
440 // v2p callback to check if the physical address is < 2gb, we will pass.
455 &Address,
464 Snp->Cpb = (VOID *) (UINTN) Address;
465 Snp->Db = (VOID *) ((UINTN) Address + 2048);
621 // need to get the station address to save in the mode structure. we need to
649 // contains the MAC address of the NIC. For this reason we started and
|
| /device/linaro/bootloader/edk2/MdePkg/Library/BaseIoLibIntrinsic/ |
| IoLibIpf.c | 23 Translates I/O port address to memory address.
25 This function translates I/O port address to memory address by adding the 64MB
26 aligned I/O Port space to the I/O address.
31 @return The memory address.
39 UINTN Address;
42 Address = MAP_PORT_BASE_TO_MEM (Port);
49 Address += IoBlockBaseAddress;
51 return Address;
[all...] |
| /device/linaro/bootloader/edk2/OvmfPkg/Library/PciHostBridgeLib/ |
| XenSupport.c | 33 IN UINTN Address,
41 *OriginalValue = PciRead32 (Address);
48 PciWrite32 (Address, 0xFFFFFFFF);
49 *Value = PciRead32 (Address);
50 PciWrite32 (Address, *OriginalValue);
183 UINTN Address;
215 // Compute the PCI configuration address of the PCI device to probe
217 Address = PCI_LIB_ADDRESS (PrimaryBus, Device, Function, 0);
222 if (PciRead16 (Address) == MAX_UINT16) {
241 PciReadBuffer (Address, sizeof (Pci), &Pci); [all...] |
| /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/S3Support/Dxe/ |
| QncS3Support.c | 43 EFI_PHYSICAL_ADDRESS Address;
51 Address = 0xFFFFFFFF;
52 Status = gBS->AllocatePages (AllocateMaxAddress, EfiReservedMemoryType, EFI_SIZE_TO_PAGES (ContextStoreSize), &Address);
56 mS3Parameter = (QNC_S3_PARAMETER_HEADER *) (UINTN) Address;
|
| /device/linaro/bootloader/edk2/UefiCpuPkg/CpuS3DataDxe/ |
| CpuS3Data.c | 4 This module initializes the ACPI_CPU_DATA structure and registers the address
49 Allocate EfiACPIMemoryNVS below 4G memory address.
51 This function allocates EfiACPIMemoryNVS below 4G memory address.
55 @return Allocated address for output.
63 EFI_PHYSICAL_ADDRESS Address;
67 Address = BASE_4GB - 1;
72 &Address
78 Buffer = (VOID *)(UINTN)Address;
130 to the address that ACPI_CPU_DATA is allocated at.
260 // Set PcdCpuS3DataAddress to the base address of the ACPI_CPU_DATA structure [all...] |
| /external/clang/lib/CodeGen/ |
| Address.h | 1 //===-- Address.h - An aligned address -------------------------*- C++ -*-===// 24 /// An aligned address. 25 class Address { 29 Address(llvm::Value *pointer, CharUnits alignment) 32 "creating valid address with invalid alignment"); 35 static Address invalid() { return Address(nullptr, CharUnits()); } 48 /// Return the type of the values stored in this address. 51 /// store it in Address instead for the convenience of writing code [all...] |
| /external/libtextclassifier/annotator/ |
| collections.h | 27 static const std::string& Address() { 29 *[]() { return new std::string("address"); }();
|
| /external/llvm/lib/Target/X86/InstPrinter/ |
| X86ATTInstPrinter.cpp | 150 // that address in hex. 152 int64_t Address; 153 if (BranchTarget && BranchTarget->evaluateAsAbsolute(Address)) { 154 O << formatHex((uint64_t)Address);
|
| X86IntelInstPrinter.cpp | 131 // that address in hex. 133 int64_t Address; 134 if (BranchTarget && BranchTarget->evaluateAsAbsolute(Address)) { 135 O << formatHex((uint64_t)Address);
|
| /external/swiftshader/third_party/LLVM/lib/DebugInfo/ |
| DWARFDebugArangeSet.h | 31 // The size in bytes of an address on the target architecture. For segmented 32 // addressing, this is the size of the offset portion of the address. 35 // If the target system uses a flat address space, this value is 0. 40 uint64_t Address; 42 uint64_t getEndAddress() const { return Address + Length; } 63 uint32_t findAddress(uint64_t address) const;
|
| /external/swiftshader/third_party/LLVM/tools/llvm-objdump/ |
| MCFunction.h | 31 /// address and size. 33 uint64_t Address; 38 MCDecodedInst(uint64_t Address, uint64_t Size, MCInst Inst) 39 : Address(Address), Size(Size), Inst(Inst) {} 42 return Address < RHS.Address; 73 // Keep BBs sorted by address. 92 MCBasicBlock &addBlock(uint64_t Address, const MCBasicBlock &BB) { 93 Blocks.push_back(std::make_pair(Address, BB)) [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/XRay/ |
| InstrumentationMap.h | 43 /// The address of the sled. 44 uint64_t Address; 46 /// The address of the function. 58 yaml::Hex64 Address; 68 /// address. 90 /// Returns an XRay computed function id, provided a function address. 93 /// Returns the function address for a function id. 119 IO.mapRequired("address", Entry.Address);
|
| /external/syzkaller/vendor/google.golang.org/grpc/ |
| balancer.go | 34 // Address represents a server the client connects to. 37 type Address struct { 38 // Addr is the server address on which a connection will be established. 64 // connected address. 81 Up(addr Address) (down func(error)) 82 // Get gets the address of a server for the RPC corresponding to ctx. 83 // i) If it returns a connected address, gRPC internals issues the RPC on the 84 // connection to this address; 85 // ii) If it returns an address on which the connection is under construction 91 // iii) If it returns an address on which the connection does not exist, gRP [all...] |
| /device/linaro/bootloader/OpenPlatformPkg/Applications/EepromCmd/ |
| EepromCmd.c | 56 #define I2C_DEVICE_INDEX(bus, address) (((address) & 0xffff) | (bus) << 16)
95 "eeprom [read] [write] [list] [<Chip>] [<Bus>][<Address>] [<Length>] [-d <Data>] [-m <Source>]\n"
96 "All modes except 'list' require Address, Length and Chip set.\n\n"
101 "Chip - EEPROM bus address\n"
102 "Bus - I2C bus address\n"
103 "Address - address in EEPROM to read/write\n"
106 "Source - address of data in RAM to be copied\n"
110 "Read 16 bytes from address 0x0 in chip 0x57:\n" [all...] |
| /device/linaro/bootloader/edk2/CorebootPayloadPkg/Library/PciHostBridgeLib/ |
| PciHostBridgeSupport.c | 112 @param[in] Address PCI address for the BAR.
119 IN UINT64 Address,
126 PciAddress = (UINTN)Address;
309 UINTN Address;
341 // Compute the PCI configuration address of the PCI device to probe
343 Address = PCI_LIB_ADDRESS (PrimaryBus, Device, Function, 0);
348 if (PciRead16 (Address) == MAX_UINT16) {
367 PciReadBuffer (Address, sizeof (Pci), &Pci);
|
| /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/ |
| LegacyTable.c | 35 UINTN Address;
41 for (Address = 0xe0000; Address < 0xfffff; Address += 0x10) {
42 if (*(UINT64 *)(Address) == EFI_ACPI_3_0_ROOT_SYSTEM_DESCRIPTION_POINTER_SIGNATURE) {
43 return (VOID *)Address;
51 Address = (*(UINT16 *)(UINTN)(EBDA_BASE_ADDRESS)) << 4;
53 if (*(UINT64 *)(Address + Index) == EFI_ACPI_3_0_ROOT_SYSTEM_DESCRIPTION_POINTER_SIGNATURE) {
54 return (VOID *)Address;
65 UINTN Address;
[all...] |
| /device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/ |
| PciEnumeratorSupport.c | 136 UINT64 Address;
140 // Create PCI address map in terms of Bus, Device and Func
142 Address = EFI_PCI_ADDRESS (Bus, Device, Func, 0);
150 Address,
164 Address,
947 //memory space; anywhere in 32 bit address space
962 // memory space; anywhere in 64 bit address space
[all...] |
| /device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/ |
| DeviceIo.c | 104 IN UINT64 Address,
118 Address - The base address of I/O operations.
120 Bytes moves is Width size * Count, starting at Address.
145 Address,
152 Address,
168 IN UINT64 Address,
182 Address - The base address of I/O operations.
184 Bytes moves is Width size * Count, starting at Address. [all...] |
| PcatPciRootBridge.c | 57 UINT64 Address;
123 // For IPF, a SAL call is made to retrieve the base address for PCI I/O cycles
134 // Get PCI Express Base Address
175 // Compute the PCI configuration address of the PCI device to probe
177 Address = EFI_PCI_ADDRESS (PrimaryBusIndex, Device, Function, 0);
185 Address,
209 Address,
735 IN UINT64 Address,
761 Address,
776 Address,
[all...] |
| /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/ |
| HwDebug.c | 29 Argv[1] - Hex Address to dump
50 STATIC UINT8 *Address = NULL;
60 Address = (UINT8 *)AsciiStrHexToUintn (Argv[1]);
65 OutputData (Address, Length, Width, (UINTN)Address);
67 Address += Length;
77 Argv[1] - Hex Address to fill
100 UINTN Address;
112 Address = AsciiStrHexToUintn (Argv[1]);
116 for (EndAddress = Address + (Length * Width); Address < EndAddress; Address += Width) { [all...] |