Searched defs:Address (Results 1 - 25 of 159) sorted by relevance

1234567

/external/clang/test/Modules/Inputs/PR20399/
H A DSecondHeader.h7 struct Address {}; struct
10 struct Address<std::vector<bool>> struct in inherits:Address
11 : Address<std::vector<bool>::iterator> {};
/external/syslinux/gpxe/src/include/
H A Detherboot.h22 typedef unsigned long Address; typedef
/external/python/cpython3/Doc/includes/
H A Demail-alternative.py6 from email.headerregistry import Address namespace
12 msg['From'] = Address("Pepé Le Pew", "pepe", "example.com")
13 msg['To'] = (Address("Penelope Pussycat", "penelope", "example.com"),
14 Address("Fabrette Pussycat", "fabrette", "example.com"))
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DAddress.java18 public class Address { class
/external/llvm/lib/MC/MCDisassembler/
H A DMCDisassembler.cpp20 uint64_t Address, bool IsBranch,
25 return Symbolizer->tryAddingSymbolicOperand(Inst, cStream, Value, Address,
31 uint64_t Address) const {
34 Symbolizer->tryAddingPcLoadReferenceComment(cStream, Value, Address);
19 tryAddingSymbolicOperand(MCInst &Inst, int64_t Value, uint64_t Address, bool IsBranch, uint64_t Offset, uint64_t InstSize) const argument
H A DMCExternalSymbolizer.cpp28 // symbolic information at the Address for this instruction. If that returns
38 uint64_t Address,
47 !GetOpInfo(DisInfo, Address, Offset, InstSize, 1, &SymbolicOp)) {
69 const char *Name = SymbolLookUp(DisInfo, Value, &ReferenceType, Address,
149 // in a literal pool near the Address of the instruction. The Address of the
159 uint64_t Address) {
163 (void)SymbolLookUp(DisInfo, Value, &ReferenceType, Address, &ReferenceName);
35 tryAddingSymbolicOperand(MCInst &MI, raw_ostream &cStream, int64_t Value, uint64_t Address, bool IsBranch, uint64_t Offset, uint64_t InstSize) argument
157 tryAddingPcLoadReferenceComment(raw_ostream &cStream, int64_t Value, uint64_t Address) argument
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
H A Dglx_getproc.c42 __GLXextFuncPtr Address; member in struct:name_address_pair
193 return GLX_functions[i].Address;
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineCodeInfo.h27 void *Address; // The address of the function in memory member in class:llvm::MachineCodeInfo
30 MachineCodeInfo() : Size(0), Address(0) {}
37 Address = a;
45 return Address;
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMemory.h30 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 member in class:llvm::sys::MemoryBlock
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCAtom.cpp16 void MCAtom::addInst(const MCInst &I, uint64_t Address, unsigned Size) { argument
19 assert(Address < End+Size &&
21 if (Address > End)
24 Text.push_back(std::make_pair(Address, I));
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
H A Dhw.c105 IN UINTN Address
111 Status = uefi_call_wrapper(GlobalIoFncs->Pci.Read, 5, GlobalIoFncs, Width, (UINT64)Address, 1, &Data);
120 IN UINTN Address,
126 Status = uefi_call_wrapper(GlobalIoFncs->Pci.Write, 5, GlobalIoFncs, Width, (UINT64)Address, 1, &Data);
117 WritePciConfig( IN EFI_DEVICE_IO_INTERFACE *GlobalIoFncs, IN EFI_IO_WIDTH Width, IN UINTN Address, IN UINTN Data ) argument
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugArangeSet.h41 uint64_t Address; member in struct:llvm::DWARFDebugArangeSet::Descriptor
43 uint64_t getEndAddress() const { return Address + Length; }
H A DDWARFDebugAranges.h24 uint32_t findAddress(uint64_t Address) const;
51 bool containsAddress(uint64_t Address) const {
52 return LowPC <= Address && Address < HighPC();
64 uint64_t Address; member in struct:llvm::DWARFDebugAranges::RangeEndpoint
68 RangeEndpoint(uint64_t Address, uint32_t CUOffset, bool IsRangeStart) argument
69 : Address(Address), CUOffset(CUOffset), IsRangeStart(IsRangeStart) {}
72 return Address < Other.Address;
[all...]
/external/llvm/include/llvm/ExecutionEngine/
H A DJITEventListener.h39 uintptr_t Address; member in struct:llvm::JITEvent_EmittedFunctionDetails::LineStart
/external/llvm/lib/DebugInfo/DWARF/
H A DSyntaxHighlighting.h20 enum HighlightColor { Address, String, Tag, Attribute, Enumerator, Macro }; enumerator in enum:llvm::dwarf::syntax::HighlightColor
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
H A DJITEventListener.h32 uintptr_t Address; member in struct:llvm::JITEvent_EmittedFunctionDetails::LineStart
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
H A DDWARFDebugArangeSet.cpp32 if (ArangeDescriptors[i].getEndAddress() >= ArangeDescriptors[i+1].Address){
39 ArangeDescriptors[i].Length = max_end_addr - ArangeDescriptors[i].Address;
55 // 7.20 Address Range Table
96 assert(sizeof(arangeDescriptor.Address) == sizeof(arangeDescriptor.Length));
97 assert(sizeof(arangeDescriptor.Address) >= Header.AddrSize);
100 arangeDescriptor.Address = data.getUnsigned(offset_ptr, Header.AddrSize);
105 if (arangeDescriptor.Address || arangeDescriptor.Length)
117 OS << format("Address Range Header: length = 0x%8.8x, version = 0x%4.4x, ",
125 OS << format("[0x%*.*llx -", hex_width, hex_width, pos->Address)
132 const uint64_t Address; member in class:__anon22711::DescriptorContainsAddress
[all...]
/external/clang/lib/CodeGen/
H A DAddress.h1 //===-- Address.h - An aligned address -------------------------*- C++ -*-===//
25 class Address { class in namespace:clang::CodeGen
29 Address(llvm::Value *pointer, CharUnits alignment) function in class:clang::CodeGen::Address
35 static Address invalid() { return Address(nullptr, CharUnits()); }
51 /// store it in Address instead for the convenience of writing code.
73 /// A specialization of Address that requires the address to be an
75 class ConstantAddress : public Address {
78 : Address(pointer, alignment) {}
85 return llvm::cast<llvm::Constant>(Address
[all...]
/external/llvm/include/llvm/Support/
H A DMemory.h31 MemoryBlock() : Address(nullptr), Size(0) { }
32 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
33 void *base() const { return Address; }
37 void *Address; ///< Address of first byte of memory area member in class:llvm::sys::MemoryBlock
/external/llvm/lib/DebugInfo/PDB/
H A DPDBContext.cpp35 DILineInfo PDBContext::getLineInfoForAddress(uint64_t Address, argument
38 Result.FunctionName = getFunctionName(Address, Specifier.FNKind);
42 Session->findSymbolByAddress(Address, PDB_SymType::None);
51 auto LineNumbers = Session->findLineNumbersByAddress(Address, Length);
68 PDBContext::getLineInfoForAddressRange(uint64_t Address, uint64_t Size, argument
74 auto LineNumbers = Session->findLineNumbersByAddress(Address, Size);
87 PDBContext::getInliningInfoForAddress(uint64_t Address, argument
90 DILineInfo Frame = getLineInfoForAddress(Address, Specifier);
95 std::string PDBContext::getFunctionName(uint64_t Address, argument
101 Session->findSymbolByAddress(Address, PDB_SymTyp
[all...]
/external/llvm/lib/Object/
H A DSymbolSize.cpp22 uint64_t Address; member in struct:__anon14102::SymEntry
31 return A->Address - B->Address;
70 uint64_t Address = Sec.getAddress(); local
73 {O.symbol_end(), Address + Size, 0, getSectionID(O, Sec)});
85 while (NextI < N && Addresses[NextI].Address == P.Address)
88 uint64_t Size = Addresses[NextI].Address - P.Address;
89 P.Address
[all...]
/external/llvm/lib/Support/
H A DStreamingMemoryObject.cpp29 uint64_t Address) const override;
50 uint64_t Address) const {
52 if (Address >= BufferSize)
55 uint64_t End = Address + Size;
59 assert(static_cast<int64_t>(End - Address) >= 0);
60 Size = End - Address;
61 memcpy(Buf, Address + FirstChar, Size);
88 uint64_t Address) const {
89 fetchToPos(Address + Size - 1);
95 if (Address >
107 getPointer(uint64_t Address, uint64_t Size) const argument
[all...]
/external/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64ExternalSymbolizer.cpp49 /// symbolic information at the Address for this instrution. If that returns
53 /// Address + Value is done and if a symbol is found an MCExpr is created with
54 /// that, else an MCExpr with Address + Value is created. If GetOpInfo()
61 MCInst &MI, raw_ostream &CommentStream, int64_t Value, uint64_t Address,
74 !GetOpInfo(DisInfo, Address, 0 /* Offset */, InstSize, 1, &SymbolicOp)) {
77 const char *Name = SymbolLookUp(DisInfo, Address + Value, &ReferenceType,
78 Address, &ReferenceName);
84 SymbolicOp.Value = Address + Value;
100 SymbolLookUp(DisInfo, EncodedInst, &ReferenceType, Address,
103 0xfffffffffffff000LL & (Address
60 tryAddingSymbolicOperand( MCInst &MI, raw_ostream &CommentStream, int64_t Value, uint64_t Address, bool IsBranch, uint64_t Offset, uint64_t InstSize) argument
[all...]
/external/llvm/lib/Target/SystemZ/Disassembler/
H A DSystemZDisassembler.cpp31 ArrayRef<uint8_t> Bytes, uint64_t Address,
55 /// @param Address - The starting address of the instruction
61 /// immediate in the instruction using the Address, Offset and Width. If that
69 uint64_t Address, uint64_t Offset,
73 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch,
88 uint64_t Address,
94 uint64_t Address,
100 uint64_t Address,
106 uint64_t Address,
112 uint64_t Address,
68 tryAddingSymbolicOperand(int64_t Value, bool isBranch, uint64_t Address, uint64_t Offset, uint64_t Width, MCInst &MI, const void *Decoder) argument
[all...]
/external/nist-sip/java/javax/sip/address/
H A DAddress.java6 public interface Address extends Cloneable, Serializable { interface in inherits:Cloneable,Serializable

Completed in 604 milliseconds

1234567