HomeSort by relevance Sort by last modified time
    Searched refs:Address (Results 26 - 50 of 674) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/heap/
store-buffer.h 22 typedef void (StoreBuffer::*RegionCallback)(Address start, Address end,
34 inline Address TopAddress();
40 inline void Mark(Address addr);
56 inline void EnterDirectlyIntoStoreBuffer(Address addr);
69 static const int kStoreBufferLength = kStoreBufferSize / sizeof(Address);
85 old_top_ = reinterpret_cast<Address*>(top);
103 bool CellIsInStoreBuffer(Address cell);
114 Address* start_;
115 Address* limit_
    [all...]
spaces.h 78 #define DCHECK_PAGE_ALIGNED(address) \
79 DCHECK((OffsetFrom(address) & Page::kPageAlignmentMask) == 0)
81 #define DCHECK_OBJECT_ALIGNED(address) \
82 DCHECK((OffsetFrom(address) & kObjectAlignmentMask) == 0)
184 INLINE(Address address()) { return reinterpret_cast<Address>(this); } function in class:v8::internal::Bitmap
186 INLINE(static Bitmap* FromAddress(Address addr)) {
276 static MemoryChunk* FromAddress(Address a) {
285 static inline MemoryChunk* FromAnyPointerAddress(Heap* heap, Address addr)
287 Address address() { return reinterpret_cast<Address>(this); } function in class:v8::internal::MemoryChunk
2014 Address address() { return reinterpret_cast<Address>(this); } function in class:v8::internal::NewSpacePage
    [all...]
  /external/llvm/lib/MC/
MCDisassembler.cpp 20 uint64_t Address, bool IsBranch,
25 return Symbolizer->tryAddingSymbolicOperand(Inst, cStream, Value, Address,
31 uint64_t Address) const {
34 Symbolizer->tryAddingPcLoadReferenceComment(cStream, Value, Address);
  /external/chromium_org/components/autofill/content/browser/wallet/
full_wallet.h 51 scoped_ptr<Address> billing_address,
52 scoped_ptr<Address> shipping_address);
73 const Address* billing_address() const { return billing_address_.get(); }
75 // If there are required actions or shipping address is not required
77 const Address* shipping_address() const { return shipping_address_.get(); }
104 scoped_ptr<Address> billing_address,
105 scoped_ptr<Address> shipping_address,
133 // The billing address of the backing instrument.
134 scoped_ptr<Address> billing_address_;
136 // The shipping address for the transaction
    [all...]
mock_wallet_client.cc 19 scoped_ptr<Address> address,
21 const Address* reference_address) {
23 address.get(),
wallet_test_util.h 16 class Address;
24 scoped_ptr<Address> GetTestAddress();
25 scoped_ptr<Address> GetTestMinimalAddress();
45 const std::string& id, scoped_ptr<Address> address);
48 scoped_ptr<Address> address,
51 scoped_ptr<Address> GetTestSaveableAddress();
52 scoped_ptr<Address> GetTestShippingAddress();
53 scoped_ptr<Address> GetTestNonDefaultShippingAddress()
    [all...]
wallet_address.h 26 // TODO(ahutter): This address is a lot like
27 // components/autofill/core/browser/address.h. There should be a super
31 // Address contains various address fields that have been populated from the
33 // "extensible Address Language" (xAL); see
35 class Address {
41 Address();
43 // Using the raw info in |profile|, create a wallet::Address.
44 explicit Address(const AutofillProfile& profile);
46 Address(const std::string& country_name_code
    [all...]
  /external/lldb/include/lldb/API/
SBAddress.h 28 // Create an address by resolving a load address using the supplied target
60 // The following queries can lookup symbol information for a given address.
61 // An address might refer to code or data from an existing module, or it
63 // will only return valid values if the address has been resolved to a code
64 // or data address using "void SBAddress::SetLoadAddress(...)" or
70 // The following functions grab individual objects for a given address and
73 // objects for an address:
122 lldb_private::Address *
125 const lldb_private::Address *
    [all...]
  /external/lldb/include/lldb/Breakpoint/
BreakpointLocationList.h 20 #include "lldb/Core/Address.h"
29 /// has a unique ID, and is unique by Address as well.
51 /// Returns a shared pointer to the breakpoint location at address
55 /// The address to look for.
62 FindByAddress (const Address &addr) const;
80 /// at address \a addr.
83 /// The address to match.
89 FindIDByAddress (const Address &addr);
239 Create (const Address &addr);
248 AddLocation (const Address &addr
    [all...]
  /external/llvm/lib/Target/Sparc/Disassembler/
SparcDisassembler.cpp 44 uint64_t address,
118 uint64_t Address,
129 uint64_t Address,
141 uint64_t Address,
153 uint64_t Address,
165 uint64_t Address,
178 uint64_t Address,
187 static DecodeStatus DecodeLoadInt(MCInst &Inst, unsigned insn, uint64_t Address,
189 static DecodeStatus DecodeLoadFP(MCInst &Inst, unsigned insn, uint64_t Address,
191 static DecodeStatus DecodeLoadDFP(MCInst &Inst, unsigned insn, uint64_t Address,
    [all...]
  /external/chromium_org/v8/src/
allocation-tracker.h 65 void AddRange(Address addr, int size, unsigned node_id);
66 unsigned GetTraceNodeId(Address addr);
67 void MoveObject(Address from, Address to, int size);
74 RangeStack(Address start, unsigned node_id)
76 Address start;
80 typedef std::map<Address, RangeStack> RangeMap;
82 void RemoveRange(Address start, Address end);
103 void AllocationEvent(Address addr, int size)
    [all...]
frames-inl.h 34 inline Address StackHandler::address() const { function in class:v8::internal::StackHandler
35 return reinterpret_cast<Address>(const_cast<StackHandler*>(this));
41 return FromAddress(Memory::Address_at(address() + offset));
45 inline bool StackHandler::includes(Address address) const {
46 Address start = this->address();
47 Address end = start + StackHandlerConstants::kSize;
48 return start <= address && address <= end
    [all...]
sampler.h 26 Address pc; // Instruction pointer.
27 Address sp; // Stack pointer.
28 Address fp; // Frame pointer.
42 Address pc; // Instruction pointer.
44 Address tos; // Top stack value (*sp).
45 Address external_callback;
49 Address stack[kMaxFramesCount]; // Call stack.
sampler.cc 237 state->pc = reinterpret_cast<Address>(simulator_->get_pc());
238 state->sp = reinterpret_cast<Address>(simulator_->get_register(
240 state->fp = reinterpret_cast<Address>(simulator_->get_register(
250 state->pc = reinterpret_cast<Address>(simulator_->pc());
251 state->sp = reinterpret_cast<Address>(simulator_->sp());
252 state->fp = reinterpret_cast<Address>(simulator_->fp());
254 state->pc = reinterpret_cast<Address>(simulator_->get_pc());
255 state->sp = reinterpret_cast<Address>(simulator_->get_register(
257 state->fp = reinterpret_cast<Address>(simulator_->get_register(
260 state->pc = reinterpret_cast<Address>(simulator_->get_pc())
    [all...]
gdb-jit.h 38 static void RemoveCodeRange(Address start, Address end);
  /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
76 // The address that we currently assume the block has.
77 uint64_t Address;
91 : Address(0), Size(0), Alignment(0), NumTerminators(0) {}
100 // The address that we currently assume the terminator has.
101 uint64_t Address;
    [all...]
  /external/llvm/lib/Target/Mips/Disassembler/
MipsDisassembler.cpp 82 uint64_t address,
101 uint64_t address,
112 uint64_t Address,
117 uint64_t Address,
122 uint64_t Address,
127 uint64_t Address,
132 uint64_t Address,
137 uint64_t Address,
142 uint64_t Address,
147 uint64_t Address,
    [all...]
  /external/lldb/source/Core/
AddressRange.cpp 37 AddressRange::AddressRange (const Address& so_addr, addr_t byte_size) :
48 //AddressRange::Contains (const Address &addr) const
56 //AddressRange::Contains (const Address *addr) const
64 AddressRange::ContainsFileAddress (const Address &addr) const
100 AddressRange::ContainsLoadAddress (const Address &addr, Target *target) const
142 AddressRange::Dump(Stream *s, Target *target, Address::DumpStyle style, Address::DumpStyle fallback_style) const
154 case Address::DumpStyleSectionNameOffset:
155 case Address::DumpStyleSectionPointerOffset:
159 s->Address (m_base_addr.GetOffset() + GetByteSize(), addr_size)
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugAranges.cpp 30 uint64_t LowPC = Desc.Address;
80 // a current address range.
84 if (PrevAddress < E.Address && ValidCUs.size() > 0) {
85 // If the address range between two endpoints is described by some
90 Aranges.back().setHighPC(E.Address);
92 Aranges.emplace_back(PrevAddress, E.Address, *ValidCUs.begin());
103 PrevAddress = E.Address;
112 uint32_t DWARFDebugAranges::findAddress(uint64_t Address) const {
114 Range range(Address);
120 if (pos != end && pos->containsAddress(Address)) {
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.h 79 /// - that cannot address through registers larger than pointers, or
97 llvm::Value *Address) const {
102 /// address as stored by the system into the actual address of the
107 llvm::Value *Address) const {
108 return Address;
111 /// Performs the code-generation required to convert the address
112 /// of an instruction into a return address suitable for storage
117 llvm::Value *Address) const {
118 return Address;
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 102 const MemoryObject &region, uint64_t address,
121 const MemoryObject &region, uint64_t address,
151 uint64_t Address, const void *Decoder);
153 unsigned RegNo, uint64_t Address,
156 unsigned RegNo, uint64_t Address,
159 uint64_t Address, const void *Decoder);
161 uint64_t Address, const void *Decoder);
163 uint64_t Address, const void *Decoder);
165 uint64_t Address, const void *Decoder);
167 uint64_t Address, const void *Decoder)
    [all...]
  /external/llvm/lib/Target/SystemZ/Disassembler/
SystemZDisassembler.cpp 33 const MemoryObject &region, uint64_t address,
62 uint64_t Address,
68 uint64_t Address,
74 uint64_t Address,
80 uint64_t Address,
86 uint64_t Address,
92 uint64_t Address,
98 uint64_t Address,
104 uint64_t Address,
124 uint64_t Address,
    [all...]
  /external/chromium_org/v8/test/cctest/
trace-extension.h 46 static Address GetJsEntrySp();
48 static void DoTrace(Address fp);
50 static Address GetFP(const v8::FunctionCallbackInfo<v8::Value>& args);
  /art/compiler/utils/x86/
assembler_x86.h 89 // Operand can be sub classed (e.g: Address).
136 class Address : public Operand {
138 Address(Register base, int32_t disp) {
142 Address(Register base, Offset disp) {
146 Address(Register base, FrameOffset disp) {
151 Address(Register base, MemberOffset disp) {
171 Address(Register index, ScaleFactor scale, int32_t disp) {
178 Address(Register base, Register index, ScaleFactor scale, int32_t disp) {
194 static Address Absolute(uword addr) {
195 Address result
    [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64.h 106 // Operand can be sub classed (e.g: Address).
164 class Address : public Operand {
166 Address(CpuRegister base, int32_t disp) {
170 Address(CpuRegister base, Offset disp) {
174 Address(CpuRegister base, FrameOffset disp) {
179 Address(CpuRegister base, MemberOffset disp) {
205 Address(CpuRegister index, ScaleFactor scale, int32_t disp) {
212 Address(CpuRegister base, CpuRegister index, ScaleFactor scale, int32_t disp) {
228 // If no_rip is true then the Absolute address isn't RIP relative.
229 static Address Absolute(uword addr, bool no_rip = false)
    [all...]

Completed in 883 milliseconds

12 3 4 5 6 7 8 91011>>