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

1 2 3 4 5 6 7 891011>>

  /external/swiftshader/third_party/LLVM/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 50 uint64_t address,
75 uint64_t address,
107 uint64_t Address, const void *Decoder);
109 unsigned RegNo, uint64_t Address,
112 uint64_t Address, const void *Decoder);
114 uint64_t Address, const void *Decoder);
116 uint64_t Address, const void *Decoder);
118 uint64_t Address, const void *Decoder);
120 uint64_t Address, const void *Decoder);
122 uint64_t Address, const void *Decoder)
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/PeiIoLibCpuIo/
IoLib.c 302 Reads the 8-bit MMIO register specified by Address. The 8-bit read value is
308 @param Address The MMIO register to read.
316 IN UINTN Address
326 return CpuIo->MemRead8 (PeiServices, CpuIo, (UINT64) Address);
332 Writes the 8-bit MMIO register specified by Address with the value specified
338 @param Address The MMIO register to write.
347 IN UINTN Address,
358 CpuIo->MemWrite8 (PeiServices, CpuIo, (UINT64) Address, Value);
365 Reads the 16-bit MMIO register specified by Address. The 16-bit read value is
370 If Address is not aligned on a 16-bit boundary, then ASSERT().
    [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...]
  /external/llvm/lib/Target/Lanai/Disassembler/
LanaiDisassembler.cpp 51 uint64_t Address, const void *Decoder);
54 uint64_t Address, const void *Decoder);
57 uint64_t Address, const void *Decoder);
60 uint64_t Address, const void *Decoder);
62 static DecodeStatus decodeBranch(MCInst &Inst, unsigned Insn, uint64_t Address,
66 uint64_t Address,
70 uint64_t Address, const void *Decoder);
74 static DecodeStatus readInstruction32(ArrayRef<uint8_t> Bytes, uint64_t Address,
132 uint64_t Address,
137 DecodeStatus Result = readInstruction32(Bytes, Address, Size, Insn)
    [all...]
  /external/clang/lib/CodeGen/
CGBuilder.h 15 #include "Address.h"
70 llvm::LoadInst *CreateLoad(Address Addr, const llvm::Twine &Name = "") {
75 llvm::LoadInst *CreateLoad(Address Addr, const char *Name) {
82 llvm::LoadInst *CreateLoad(Address Addr, bool IsVolatile,
113 llvm::StoreInst *CreateStore(llvm::Value *Val, Address Addr,
160 Address CreateBitCast(Address Addr, llvm::Type *Ty,
162 return Address(CreateBitCast(Addr.getPointer(), Ty, Name),
166 /// Cast the element type of the given address to a different type,
167 /// preserving information like the alignment and address space
    [all...]
  /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/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...]
  /external/valgrind/memcheck/tests/
descr_belowsp.stderr.exp 2 Address 0x........ is on thread 1's stack
5 Address 0x........ is on thread 2's stack
12 Address 0x........ is on thread 2's stack
15 describing 0x........ discovered address giving SEGV in thread stack
16 Address 0x........ is on thread 2's stack
19 Address 0x........ is on thread 2's stack
22 Address 0x........ is on thread 2's stack
25 Address 0x........ is on thread 2's stack
  /external/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
75 // The address that we currently assume the block has.
76 uint64_t Address;
90 : Address(0), Size(0), Alignment(0), NumTerminators(0) {}
99 // The address that we currently assume the terminator has.
100 uint64_t Address;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/
JITSymbol.h 32 /// @brief Represents an address in the target process's address space.
87 /// @brief Represents a symbol that has been evaluated to an address already.
92 : Address(0) {}
94 /// @brief Create a symbol for the given address and flags.
95 JITEvaluatedSymbol(JITTargetAddress Address, JITSymbolFlags Flags)
96 : Address(Address), Flags(Flags) {}
98 /// @brief An evaluated symbol converts to 'true' if its address is non-zero.
99 explicit operator bool() const { return Address != 0;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ExecutionEngine/
JITSymbol.h 32 /// @brief Represents an address in the target process's address space.
87 /// @brief Represents a symbol that has been evaluated to an address already.
92 : Address(0) {}
94 /// @brief Create a symbol for the given address and flags.
95 JITEvaluatedSymbol(JITTargetAddress Address, JITSymbolFlags Flags)
96 : Address(Address), Flags(Flags) {}
98 /// @brief An evaluated symbol converts to 'true' if its address is non-zero.
99 explicit operator bool() const { return Address != 0;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ExecutionEngine/
JITSymbol.h 32 /// @brief Represents an address in the target process's address space.
87 /// @brief Represents a symbol that has been evaluated to an address already.
92 : Address(0) {}
94 /// @brief Create a symbol for the given address and flags.
95 JITEvaluatedSymbol(JITTargetAddress Address, JITSymbolFlags Flags)
96 : Address(Address), Flags(Flags) {}
98 /// @brief An evaluated symbol converts to 'true' if its address is non-zero.
99 explicit operator bool() const { return Address != 0;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/
JITSymbol.h 32 /// @brief Represents an address in the target process's address space.
87 /// @brief Represents a symbol that has been evaluated to an address already.
92 : Address(0) {}
94 /// @brief Create a symbol for the given address and flags.
95 JITEvaluatedSymbol(JITTargetAddress Address, JITSymbolFlags Flags)
96 : Address(Address), Flags(Flags) {}
98 /// @brief An evaluated symbol converts to 'true' if its address is non-zero.
99 explicit operator bool() const { return Address != 0;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ExecutionEngine/
JITSymbol.h 32 /// @brief Represents an address in the target process's address space.
87 /// @brief Represents a symbol that has been evaluated to an address already.
92 : Address(0) {}
94 /// @brief Create a symbol for the given address and flags.
95 JITEvaluatedSymbol(JITTargetAddress Address, JITSymbolFlags Flags)
96 : Address(Address), Flags(Flags) {}
98 /// @brief An evaluated symbol converts to 'true' if its address is non-zero.
99 explicit operator bool() const { return Address != 0;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ExecutionEngine/
JITSymbol.h 32 /// @brief Represents an address in the target process's address space.
87 /// @brief Represents a symbol that has been evaluated to an address already.
92 : Address(0) {}
94 /// @brief Create a symbol for the given address and flags.
95 JITEvaluatedSymbol(JITTargetAddress Address, JITSymbolFlags Flags)
96 : Address(Address), Flags(Flags) {}
98 /// @brief An evaluated symbol converts to 'true' if its address is non-zero.
99 explicit operator bool() const { return Address != 0;
    [all...]
  /external/capstone/arch/PowerPC/
PPCGenDisassemblerTables.inc     [all...]
  /prebuilts/go/darwin-x86/src/debug/dwarf/
line_test.go 28 {Address: 0x40059d, File: file1H, Line: 2, IsStmt: true},
29 {Address: 0x4005a5, File: file1H, Line: 2, IsStmt: true},
30 {Address: 0x4005b4, File: file1H, Line: 5, IsStmt: true},
31 {Address: 0x4005bd, File: file1H, Line: 6, IsStmt: true, Discriminator: 2},
32 {Address: 0x4005c7, File: file1H, Line: 5, IsStmt: true, Discriminator: 2},
33 {Address: 0x4005cb, File: file1H, Line: 5, IsStmt: false, Discriminator: 1},
34 {Address: 0x4005d1, File: file1H, Line: 7, IsStmt: true},
35 {Address: 0x4005e7, File: file1C, Line: 6, IsStmt: true},
36 {Address: 0x4005eb, File: file1C, Line: 7, IsStmt: true},
37 {Address: 0x4005f5, File: file1C, Line: 8, IsStmt: true}
    [all...]
  /prebuilts/go/linux-x86/src/debug/dwarf/
line_test.go 28 {Address: 0x40059d, File: file1H, Line: 2, IsStmt: true},
29 {Address: 0x4005a5, File: file1H, Line: 2, IsStmt: true},
30 {Address: 0x4005b4, File: file1H, Line: 5, IsStmt: true},
31 {Address: 0x4005bd, File: file1H, Line: 6, IsStmt: true, Discriminator: 2},
32 {Address: 0x4005c7, File: file1H, Line: 5, IsStmt: true, Discriminator: 2},
33 {Address: 0x4005cb, File: file1H, Line: 5, IsStmt: false, Discriminator: 1},
34 {Address: 0x4005d1, File: file1H, Line: 7, IsStmt: true},
35 {Address: 0x4005e7, File: file1C, Line: 6, IsStmt: true},
36 {Address: 0x4005eb, File: file1C, Line: 7, IsStmt: true},
37 {Address: 0x4005f5, File: file1C, Line: 8, IsStmt: true}
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceAssemblerX86Base.h 56 using Address = typename Traits::Address;
180 using TypedEmitAddr = void (AssemblerX86Base::*)(Type, const Address &);
189 const Address &);
215 using TypedEmitAddrGPR = void (AssemblerX86Base::*)(Type, const Address &,
217 using TypedEmitAddrImm = void (AssemblerX86Base::*)(Type, const Address &,
228 const Address &);
235 using EmitXmmAddr = void (AssemblerX86Base::*)(XmmRegister, const Address &);
236 using EmitAddrXmm = void (AssemblerX86Base::*)(const Address &, XmmRegister);
257 const Address &)
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
Address.java 33 * This class represent email address.
35 * <p>RFC822 email address may have following format. "name" <address> (comment) "name" <address>
36 * name <address> address Name and comment part should be MIME/base64 encoded in header if
39 public class Address implements Parcelable {
41 /** Address part, in the form local_part@domain_part. No surrounding angle brackets. */
42 private String address; field in class:Address
46 * Address has no name part
126 String address; local
196 String address = token.getAddress(); local
220 String address = token.getAddress(); local
475 Address address; local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Address.java 36 * This class represent email address.
38 * RFC822 email address may have following format.
39 * "name" <address> (comment)
40 * "name" <address>
41 * name <address>
42 * address
46 public class Address implements Parcelable {
49 * Address part, in the form local_part@domain_part. No surrounding angle brackets.
55 * This must be null if Address has no name part.
61 * string. Otherwise, it will return the e-mail address up to the '@' sign
136 String name, address; local
208 String address = token.getAddress(); local
232 String address = token.getAddress(); local
501 Address address; local
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
Mm.c 61 from a SHELL_MM_PCI or SHELL_MM_PCIE format of address..
63 @param[in] PciFormat Whether the address is of PCI format of PCIE format.
64 @param[in] Address SHELL_MM_PCI or SHELL_MM_PCIE address.
74 IN UINT64 Address,
84 // PCI Configuration Space.The address will have the format 0x000000ssbbddffrr,
87 *Segment = (UINT32) (RShiftU64 (Address, 32) & 0xFF);
88 *Bus = (UINT8) (((UINT32) Address) >> 24);
91 *Device = (UINT8) (((UINT32) Address) >> 16);
94 *Function = (UINT8) (((UINT32) Address) >> 8);
    [all...]
  /external/v8/src/profiler/
tick-sample.cc 24 // Check if the code at specified address could potentially be a
26 bool IsNoFrameRegion(i::Address address) {
32 i::byte* pc = reinterpret_cast<i::byte*>(address);
98 state->pc = reinterpret_cast<Address>(simulator->get_pc());
100 state->sp = reinterpret_cast<Address>(simulator->get_register(Simulator::sp));
102 reinterpret_cast<Address>(simulator->get_register(Simulator::r11));
104 state->pc = reinterpret_cast<Address>(simulator->pc());
105 state->sp = reinterpret_cast<Address>(simulator->sp());
106 state->fp = reinterpret_cast<Address>(simulator->fp())
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 97 ArrayRef<uint8_t> Bytes, uint64_t Address,
112 ArrayRef<uint8_t> Bytes, uint64_t Address,
142 uint64_t Address, const void *Decoder);
144 unsigned RegNo, uint64_t Address,
147 unsigned RegNo, uint64_t Address,
150 uint64_t Address, const void *Decoder);
152 uint64_t Address, const void *Decoder);
154 uint64_t Address, const void *Decoder);
156 uint64_t Address, const void *Decoder);
158 uint64_t Address, const void *Decoder)
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/AcpiResetDxe/
Reset.c 66 if ((mAcpiDescription.PM1a_CNT_BLK.Address != 0) && (mAcpiDescription.SLP_TYPa != 0)) {
69 IoAndThenOr16 ((UINTN)mAcpiDescription.PM1a_CNT_BLK.Address, 0xc3ff, (UINT16)(0x2000 | (mAcpiDescription.SLP_TYPa << 10)));
72 MmioAndThenOr16 ((UINTN)mAcpiDescription.PM1a_CNT_BLK.Address, 0xc3ff, (UINT16)(0x2000 | (mAcpiDescription.SLP_TYPa << 10)));
80 if ((mAcpiDescription.PM1b_CNT_BLK.Address != 0) && (mAcpiDescription.SLP_TYPb != 0)) {
83 IoAndThenOr16 ((UINTN)mAcpiDescription.PM1b_CNT_BLK.Address, 0xc3ff, (UINT16)(0x2000 | (mAcpiDescription.SLP_TYPb << 10)));
86 MmioAndThenOr16 ((UINTN)mAcpiDescription.PM1b_CNT_BLK.Address, 0xc3ff, (UINT16)(0x2000 | (mAcpiDescription.SLP_TYPb << 10)));
95 if ((mAcpiDescription.RESET_REG.Address != 0) &&
107 IoWrite8 ((UINTN)mAcpiDescription.RESET_REG.Address, mAcpiDescription.RESET_VALUE);
116 MmioWrite8 ((UINTN)mAcpiDescription.RESET_REG.Address, mAcpiDescription.RESET_VALUE);
125 Register = (UINT8)mAcpiDescription.RESET_REG.Address;
    [all...]

Completed in 562 milliseconds

1 2 3 4 5 6 7 891011>>