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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/tools/llvm-pdbdump/
ExternalSymbolDumper.cpp 35 uint64_t Addr = Symbol.getVirtualAddress();
38 WithColor(Printer, PDB_ColorItem::Address).get() << format_hex(Addr, 10);
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
address.go 14 // An Addr represents an address associated with packet routing.
15 type Addr interface {
26 // Family implements the Family method of Addr interface.
36 // Family implements the Family method of Addr interface.
43 func Addrs(af int, name string) ([]Addr, error) {
57 var as []Addr
96 var addr []byte
101 addr = make([]byte, alen)
102 copy(addr, b[:alen])
104 return addr, ni
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug243.go 25 var conn, _ = Dial("tcp", "", listen.Addr().Error())
40 func (t T) Addr() error {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/
address.go 14 // An Addr represents an address associated with packet routing.
15 type Addr interface {
26 // Family implements the Family method of Addr interface.
36 // Family implements the Family method of Addr interface.
43 func Addrs(af int, name string) ([]Addr, error) {
57 var as []Addr
96 var addr []byte
101 addr = make([]byte, alen)
102 copy(addr, b[:alen])
104 return addr, ni
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug243.go 25 var conn, _ = Dial("tcp", "", listen.Addr().Error())
40 func (t T) Addr() error {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/
Initialize.c 37 VOID *Addr;
49 &Addr,
64 ASSERT (Addr);
66 Snp->TxRxBuffer = Addr;
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/
SmbiosView.h 25 UINT16 Addr; // offset from table head
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
PHITransAddr.h 35 /// Addr - The actual address we're analyzing.
36 Value *Addr;
44 PHITransAddr(Value *addr, const TargetData *td) : Addr(addr), TD(td) {
46 if (Instruction *I = dyn_cast<Instruction>(Addr))
50 Value *getAddr() const { return Addr; }
71 /// PredBB. This returns true on failure and sets Addr to null.
  /prebuilts/go/darwin-x86/test/fixedbugs/issue19548.dir/
a.go 10 func (m *Mode) Addr() *Mode { return m }
  /prebuilts/go/linux-x86/test/fixedbugs/issue19548.dir/
a.go 10 func (m *Mode) Addr() *Mode { return m }
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/AArch64/
EbcSupport.c 126 UINTN Addr;
133 Addr = EntryPoint;
143 VmContext.Ip = (VMIP) Addr;
220 // The offset is the size of locals (VMContext + Addr + saved ebp).
223 // VmContext.HighStackBottom = (UINTN)(Addr + sizeof (VmContext) + sizeof (Addr));
263 UINTN Addr;
270 Addr = EntryPoint;
286 VmContext.Ip = (VMIP) Addr;
  /external/compiler-rt/lib/esan/
working_set_posix.cpp 88 uptr Addr = (uptr)SigInfo->si_addr;
89 if (isShadowMem(Addr)) {
90 VPrintf(3, "Shadow fault @%p\n", Addr);
92 int Res = internal_mprotect((void *)RoundDownTo(Addr, PageSize),
  /external/google-breakpad/src/common/linux/
elf_core_dump.h 53 typedef ElfW(Addr) Addr;
135 bool CopyData(void* buffer, Addr virtual_address, size_t length);
elfutils.h 45 typedef Elf32_Addr Addr;
58 typedef Elf64_Addr Addr;
  /external/llvm/include/llvm/Analysis/
PHITransAddr.h 37 /// Addr - The actual address we're analyzing.
38 Value *Addr;
53 PHITransAddr(Value *addr, const DataLayout &DL, AssumptionCache *AC)
54 : Addr(addr), DL(DL), TLI(nullptr), AC(AC) {
56 if (Instruction *I = dyn_cast<Instruction>(Addr))
60 Value *getAddr() const { return Addr; }
81 /// PredBB. This returns true on failure and sets Addr to null.
  /external/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.h 50 std::string &Name, uint64_t &Addr,
64 uint64_t Addr;
69 return s1.Addr < s2.Addr;
  /external/llvm/tools/sanstats/
sanstats.cpp 67 uint64_t Addr = ReadLE(SizeofPtr, Begin, End);
74 if (Addr == 0 && Data == 0)
80 Symbolizer.symbolizeCode(Filename, Addr)) {
  /external/syslinux/gnu-efi/gnu-efi-3.0/apps/
AllocPages.c 40 __AllocType__ {0,1,2} -- Any, MaxAddr, Addr
54 __AllocType__ {0,1,2} -- Any, MaxAddr, Addr
122 UINTN Addr = 0;
131 Print(L"__AllocType__ {0,1,2} -- Any, MaxAddr, Addr\n");
172 if ( argc == 5 ) Addr = xtoi(argv[4]);
186 if ( Addr > MAX_ADDR ) {
194 Print(L"AllocatPage(%d,%d,%d,%lx)\n", AllocType, MemType, NumPages, Addr);
196 efi_status = uefi_call_wrapper(BS->AllocatePages, 4, AllocType, MemType, NumPages, &Addr);
  /external/valgrind/coregrind/m_debuginfo/
priv_misc.h 101 DEF_READ(Addr);
110 DEF_WRITE(Addr);
  /external/valgrind/none/tests/amd64/
smc1.c 36 typedef unsigned long long int Addr;
55 void set_dest ( Addr dest )
57 assert(sizeof(Addr) == 8);
107 set_dest ( (Addr)&p );
110 set_dest ( (Addr)&q );
  /external/valgrind/none/tests/x86/
smc1.c 34 typedef unsigned int Addr;
51 void set_dest ( Addr dest )
87 set_dest ( (Addr)&p );
90 set_dest ( (Addr)&q );
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
PHITransAddr.h 37 /// Addr - The actual address we're analyzing.
38 Value *Addr;
53 PHITransAddr(Value *addr, const DataLayout &DL, AssumptionCache *AC)
54 : Addr(addr), DL(DL), TLI(nullptr), AC(AC) {
56 if (Instruction *I = dyn_cast<Instruction>(Addr))
60 Value *getAddr() const { return Addr; }
81 /// PredBB. This returns true on failure and sets Addr to null.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
PHITransAddr.h 37 /// Addr - The actual address we're analyzing.
38 Value *Addr;
53 PHITransAddr(Value *addr, const DataLayout &DL, AssumptionCache *AC)
54 : Addr(addr), DL(DL), TLI(nullptr), AC(AC) {
56 if (Instruction *I = dyn_cast<Instruction>(Addr))
60 Value *getAddr() const { return Addr; }
81 /// PredBB. This returns true on failure and sets Addr to null.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ExecutionEngine/
RTDyldMemoryManager.h 67 static void registerEHFramesInProcess(uint8_t *Addr, size_t Size);
70 static void deregisterEHFramesInProcess(uint8_t *Addr, size_t Size);
72 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override;
140 uint8_t *Addr;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
PHITransAddr.h 37 /// Addr - The actual address we're analyzing.
38 Value *Addr;
53 PHITransAddr(Value *addr, const DataLayout &DL, AssumptionCache *AC)
54 : Addr(addr), DL(DL), TLI(nullptr), AC(AC) {
56 if (Instruction *I = dyn_cast<Instruction>(Addr))
60 Value *getAddr() const { return Addr; }
81 /// PredBB. This returns true on failure and sets Addr to null.

Completed in 820 milliseconds

1 2 3 4 5 6 7 8 91011>>