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

1 2 3 4 5

  /frameworks/av/libvideoeditor/osal/src/
M4PSW_MemoryInterface.c 40 * @return address of the allocated block, M4OSA_NULL if no memory available
48 M4OSA_MemAddr32 Address = M4OSA_NULL;
57 return Address;
65 Address = (M4OSA_MemAddr32) malloc(size);
67 return Address;
  /frameworks/compile/mclinker/include/mcld/Support/
SystemUtils.h 22 typedef uint8_t* Address;
RegionFactory.h 30 typedef MemoryRegion::Address Address;
34 MemoryRegion* produce(Address pVMAStart, size_t pSize);
MemoryRegion.h 44 typedef Space::Address Address;
50 MemoryRegion(const Address pVMAStart, size_t pSize);
61 /// @param pStart [in] The start address of a piece of memory
77 /// @param pStart [in] The start address of a piece of memory
95 Address start() { return m_VMAStart; }
98 Address end() { return m_VMAStart+m_Length; }
105 Address getBuffer(size_t pOffset = 0)
110 Address m_VMAStart;
  /external/chromium_org/components/autofill/core/browser/
address.cc 5 #include "components/autofill/core/browser/address.h"
25 Address::Address() {}
27 Address::Address(const Address& address) : FormGroup() {
28 *this = address;
31 Address::~Address() {}
111 base::string16 address = line1_; local
    [all...]
address.h 17 // A form group that stores address information.
18 class Address : public FormGroup {
20 Address();
21 Address(const Address& address);
22 virtual ~Address();
24 Address& operator=(const Address& address);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
glx_getproc.c 41 __GLXextFuncPtr Address;
184 * Return address of named glX function, or NULL if not found.
192 return GLX_functions[i].Address;
  /external/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/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_getproc.c 41 __GLXextFuncPtr Address;
184 * Return address of named glX function, or NULL if not found.
192 return GLX_functions[i].Address;
  /frameworks/compile/mclinker/include/mcld/LD/
RelocationFactory.h 32 typedef Relocation::Address Address;
48 Address pAddend = 0);
Relocator.h 33 typedef Relocation::Address Address;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
Address.java 20 package org.apache.james.mime4j.field.address;
32 public abstract class Address {
35 * Adds any mailboxes represented by this address
41 final void addMailboxesTo(ArrayList<Address> results) {
46 * Adds any mailboxes represented by this address
50 protected abstract void doAddMailboxesTo(ArrayList<Address> results);
  /external/chromium/chrome/browser/autofill/
address.h 17 // A form group that stores address information.
18 class Address : public FormGroup {
20 Address();
21 Address(const Address& address);
22 virtual ~Address();
24 Address& operator=(const Address& address);
    [all...]
address.cc 5 #include "chrome/browser/autofill/address.h"
33 Address::Address() {}
35 Address::Address(const Address& address) : FormGroup() {
36 *this = address;
39 Address::~Address() {}
    [all...]
  /external/grub/netboot/
osdep.h 79 typedef unsigned long Address;
  /external/llvm/include/llvm/ExecutionEngine/
JITEventListener.h 34 /// The address at which the current line changes.
35 uintptr_t Address;
45 /// The list of line boundary information, sorted by address.
73 /// OldPtr is the address of the machine code and will be the same as the Code
85 /// with section headers updated to reflect the address at which sections
  /external/llvm/include/llvm/Support/
Memory.h 24 /// This class encapsulates the notion of a memory block which has an address
31 MemoryBlock() : Address(0), Size(0) { }
32 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
33 void *base() const { return Address; }
36 void *Address; ///< Address of first byte of memory area
58 /// The actual allocated address is not guaranteed to be near the requested
59 /// address.
70 /// If the address following \p NearBlock is not so aligned, it will be
  /external/llvm/lib/DebugInfo/
DWARFDebugArangeSet.cpp 32 if (ArangeDescriptors[i].getEndAddress() >= ArangeDescriptors[i+1].Address){
33 // The current range ends at or exceeds the start of the next address
34 // range. Compute the max end address between the two and use that to
39 ArangeDescriptors[i].Length = max_end_addr - ArangeDescriptors[i].Address;
43 // Discontiguous address range, just proceed to the next one.
55 // 7.20 Address Range Table
57 // Each set of entries in the table of address ranges contained in
63 // containing the size in bytes of an address (or the offset portion of
64 // an address for segmented addressing) on the target system; and a
67 // of tuples. Each tuple consists of an address and a length, each i
    [all...]
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;
  /frameworks/compile/mclinker/include/mcld/Fragment/
FragmentRef.h 34 typedef NonConstTraits<unsigned char>::pointer Address;
61 /// @pDest - the destination address
64 /// the start address offset from fragment[offset()]
82 Address deref();
86 Address operator*()
Relocation.h 34 typedef uint64_t Address; // FIXME: use SizeTrait<T>::Address instead
45 Address pAddend,
65 Address pAddend = 0);
74 /// symValue - S value - the symbol address
75 Address symValue() const;
78 Address addend() const
81 /// place - P value - address of the place being relocated
82 Address place() const;
108 void setAddend(Address pAddend)
    [all...]
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_address.cc 19 // Server specified type for address with complete details.
24 Address* CreateAddressInternal(const base::DictionaryValue& dictionary,
56 DVLOG(1) << "Response from Google Wallet missing address line 1";
58 DVLOG(1) << "Response from Google Wallet missing address line 2";
60 DVLOG(1) << "Response from Google Wallet missing address lines";
75 Address* address = new Address(country_name_code, local
87 address->set_is_complete_address(!is_minimal_address);
91 return address;
271 base::string16 address = address_line_1(); local
    [all...]
  /external/nist-sip/java/javax/sip/address/
Address.java 1 package javax.sip.address;
6 public interface Address extends Cloneable, Serializable {
  /external/llvm/lib/Target/ARM/InstPrinter/
ARMInstPrinter.cpp 292 // that address in hex. And only print 32 unsigned bits for the address.
294 int64_t Address;
295 if (BranchTarget && BranchTarget->EvaluateAsAbsolute(Address)) {
297 O.write_hex((uint32_t)Address);
    [all...]
  /external/llvm/lib/Target/X86/InstPrinter/
X86ATTInstPrinter.cpp 138 // that address in hex.
140 int64_t Address;
141 if (BranchTarget && BranchTarget->EvaluateAsAbsolute(Address)) {
142 O << formatHex((uint64_t)Address);

Completed in 806 milliseconds

1 2 3 4 5