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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/PR20399/
SecondHeader.h 7 struct Address {};
10 struct Address<std::vector<bool>>
11 : Address<std::vector<bool>::iterator> {};
  /device/generic/goldfish/wifi/ipv6proxy/
address.h 27 // Convert an IPv6 address struct to a string for debugging purposes
30 // Represents any kind of address in a struct sockaddr.
31 class Address {
33 Address();
34 explicit Address(const struct sockaddr_nl& address);
35 explicit Address(const struct sockaddr_in6& address);
36 explicit Address(struct in6_addr address);
    [all...]
address.cpp 17 #include "address.h"
38 Address::Address() {
42 Address::Address(const struct sockaddr_nl& address)
43 : mStorage(sizeof(address)) {
44 memcpy(mStorage.data(), &address, sizeof(address));
46 Address::Address(const struct sockaddr_in6& address
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/TemplateResetSystemLib/
ResetSystemLib.c 47 UINTN Address;
56 Address = 0x12345678;
57 Data = MmioRead8 (Address);
58 MmioWrite8 (Address, Data | 0x01);
60 // Note this is a bad example asa MmioOr8 (Address, 0x01) does the same thing
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbCmdGo.c 39 UINTN Address;
54 Status = Symboltoi (CommandStr, &Address);
57 Address = Xtoi(CommandStr);
66 DebuggerPrivate->GoTilContext.BreakAddress = Address;
EdbCmdScope.c 38 UINTN Address;
41 EDBPrint (L"Scope: invalid Address\n");
48 Status = Symboltoi (CommandArg, &Address);
51 Address = Xtoi(CommandArg);
60 DebuggerPrivate->InstructionScope = Address;
EdbCmdBreakpoint.c 21 @param Address EBC IP address.
29 IN UINTN Address
32 if (GET_OPCODE(Address) != OPCODE_BREAK) {
36 if (GET_OPERANDS (Address) != 3) {
45 Check whether the Address is already set in breakpoint.
48 @param Address Breakpoint Address
57 IN UINTN Address
66 if (DebuggerPrivate->DebuggerBreakpointContext[Index].BreakpointAddress == Address) {
    [all...]
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/
DebugCommunicationLibUsb3Pei.c 33 EFI_PHYSICAL_ADDRESS Address;
37 Status = PeiServicesAllocatePages (EfiACPIMemoryNVS, EFI_SIZE_TO_PAGES (BufferSize), &Address);
41 Buf = (VOID *)(UINTN) Address;
  /device/linaro/bootloader/edk2/ArmPkg/Library/DefaultExceptionHandlerLib/
DefaultExceptionHandlerUefi.c 27 @param FaultAddress Address to find PE/COFF image for.
28 @param ImageBase Return load address of found image
46 CHAR8 *Address;
58 Address = (CHAR8 *)(UINTN)FaultAddress;
63 if ((Address >= (CHAR8 *)DebugTable->NormalImage->LoadedImageProtocolInstance->ImageBase) &&
64 (Address <= ((CHAR8 *)DebugTable->NormalImage->LoadedImageProtocolInstance->ImageBase + DebugTable->NormalImage->LoadedImageProtocolInstance->ImageSize))) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/RecvDgram/
RecvDgram.c 45 struct sockaddr_in Address;
76 AddressLength = sizeof ( Address );
81 (struct sockaddr *)&Address,
94 (UINT8)Address.sin_addr.s_addr,
95 (UINT8)( Address.sin_addr.s_addr >> 8 ),
96 (UINT8)( Address.sin_addr.s_addr >> 16 ),
97 (UINT8)( Address.sin_addr.s_addr >> 24 ),
98 htons ( Address.sin_port ));
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
Script.c 54 VOID *Address;
73 Status = EfiReadAllocatePool (File, &Address, &Size);
76 for (Ptr = (CHAR8 *)Address; (Ptr < (((CHAR8 *)Address) + Size)) && !EFI_ERROR (Status); Ptr += CmdLineSize) {
96 FreePool (Address);
  /device/linaro/bootloader/edk2/EmulatorPkg/CpuRuntimeDxe/
CpuIo.c 41 IN UINT64 Address,
52 IN UINT64 Address,
66 Address of the Memory access
79 EFI_UNSUPPORTED - The address range specified by Address, Width,
90 Status = CpuIoCheckAddressRange (Width, Address, Count, Buffer, IA32_MAX_MEM_ADDRESS);
106 IN UINT64 Address,
120 Address of the Memory access
132 EFI_UNSUPPORTED - The address range specified by Address, Width, and
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
Bluetooth.h 26 /// 48bit Bluetooth device address.
28 UINT8 Address[6];
  /device/linaro/bootloader/edk2/Nt32Pkg/CpuRuntimeDxe/
CpuIo.c 34 IN UINT64 Address,
45 IN UINT64 Address,
59 Address of the Memory access
72 EFI_UNSUPPORTED - The address range specified by Address, Width,
88 Status = CpuIoCheckAddressRange (Width, Address, Count, Buffer, IA32_MAX_MEM_ADDRESS);
104 IN UINT64 Address,
118 Address of the Memory access
130 EFI_UNSUPPORTED - The address range specified by Address, Width, and
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/Sec/
SecMain.h 44 EFI_PHYSICAL_ADDRESS Address;
  /device/linaro/bootloader/edk2/OvmfPkg/Library/LockBoxLib/
LockBoxDxe.c 26 Allocate memory below 4G memory address.
28 This function allocates memory below 4G memory address.
33 @return Allocated address for output.
44 EFI_PHYSICAL_ADDRESS Address;
50 Address = 0xffffffff;
70 &Address
76 Buffer = (VOID *) (UINTN) Address;
81 mLockBoxGlobal->SubPageBuffer = (UINT32) (Address + Size);
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/SmmCpuFeaturesLib/Ia32/
SmmStmSupport.c 42 UINT32 Address;
46 Address = 0;
48 *Pte = Address | IA32_PG_PS | IA32_PG_RW | IA32_PG_P;
50 Address += SIZE_4MB;
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_getproc.c 42 __GLXextFuncPtr Address;
185 * Return address of named glX function, or NULL if not found.
193 return GLX_functions[i].Address;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Address.java 18 public class Address {
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineCodeInfo.h 27 void *Address; // The address of the function in memory
30 MachineCodeInfo() : Size(0), Address(0) {}
37 Address = a;
44 void *address() const { function in class:llvm::MachineCodeInfo
45 return Address;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Memory.h 23 /// This class encapsulates the notion of a memory block which has an address
30 MemoryBlock() : Address(0), Size(0) { }
31 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
32 void *base() const { return Address; }
35 void *Address; ///< Address of first byte of memory area
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
SymbolSize.h 21 uint64_t Address;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Ppi/StatusCodeMemory/
StatusCodeMemory.h 47 EFI_PHYSICAL_ADDRESS Address;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Acpi/AcpiS3SaveDxe/
AcpiS3Save.c 52 Allocate memory below 4G memory address.
54 This function allocates memory below 4G memory address.
59 @return Allocated address for output.
69 EFI_PHYSICAL_ADDRESS Address;
74 Address = 0xffffffff;
80 &Address
84 Buffer = (VOID *) (UINTN) Address;
122 @param LegacyMemoryAddress The base address of legacy memory.
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusPei/
UsbIoPeim.c 67 // Request->Index is the Endpoint Address, use it to get the Endpoint Index.
333 UINT8 Address;
346 // Set address
348 Address = PeiUsbDev->DeviceAddress;
354 Address
361 PeiUsbDev->DeviceAddress = Address;

Completed in 1328 milliseconds

1 2 3 4 5 6 7 8 91011>>