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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/PowerPC/
ppc-word.s 19 # CHECK-NEXT: Address: 0x0
  /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;
  /external/chromium_org/v8/src/
isolate.h 240 // This method is not guaranteed to return an address that can be
242 // address is needed, use try_catch_handler_address.
245 // Get the address of the top C++ try catch handler or NULL if
248 // This method always returns an address that can be compared to
252 // stack, try_catch_handler_address returns a JS stack address that
255 Address try_catch_handler_address() {
256 return reinterpret_cast<Address>(
283 Address c_entry_fp_; // the frame pointer of the top c entry frame
284 Address handler_; // try-blocks are chained through the stack
295 Address js_entry_sp_; // the stack pointer of the bottom JS entry fram
    [all...]
serialize.cc 63 Address address; local
67 address = ref.address();
72 address = ref.address();
77 address = ref.address();
83 address = ref.address();
409 Address address = Deoptimizer::GetDeoptimizationEntry( local
781 Address address = Allocate(space_number, size); local
1327 int address = address_mapper_.MappedTo(heap_object); local
    [all...]
api.h 96 STATIC_ASSERT(sizeof(T) == sizeof(v8::internal::Address));
106 STATIC_ASSERT(sizeof(T) == sizeof(v8::internal::Address));
108 reinterpret_cast<v8::internal::Address>(reinterpret_cast<intptr_t>(obj)));
114 explicit ApiFunction(v8::internal::Address addr) : addr_(addr) { }
115 v8::internal::Address address() { return addr_; } function in class:v8::ApiFunction
117 v8::internal::Address addr_;
401 Address address = reinterpret_cast<Address>(*string) local
412 Address address = reinterpret_cast<Address>(*string); local
    [all...]
execution.h 133 // Pass the address beyond which the stack should not grow. The stack
190 Address address_of_jslimit() {
191 return reinterpret_cast<Address>(&thread_local_.jslimit_);
193 Address address_of_real_jslimit() {
194 return reinterpret_cast<Address>(&thread_local_.real_jslimit_);
heap-profiler.cc 143 return ids_->FindEntry(HeapObject::cast(*obj)->address());
147 void HeapProfiler::ObjectMoveEvent(Address from, Address to, int size) {
155 void HeapProfiler::AllocationEvent(Address addr, int size) {
163 void HeapProfiler::UpdateObjectSizeEvent(Address addr, int size) {
182 if (ids_->FindEntry(obj->address()) == id) {
log-utils.h 73 // Appends an address.
74 void AppendAddress(Address addr);
  /external/chromium_org/v8/src/heap/
spaces.cc 34 // address and end as NULL, then the first iteration will move on
55 void HeapObjectIterator::Initialize(PagedSpace* space, Address cur, Address end,
104 // in a kMaximalCodeRangeSize range of virtual address space, so that
124 LOG(isolate_, NewEvent("CodeRange", code_range_->address(), requested));
125 Address base = reinterpret_cast<Address>(code_range_->address());
126 Address aligned_base =
127 RoundUp(reinterpret_cast<Address>(code_range_->address())
2983 Address address = object->address(); local
    [all...]
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_client_unittest.cc 131 " \"address\":"
452 "\"address\":"
488 "\"address\":"
1275 scoped_ptr<Address> address = GetTestSaveableAddress(); local
1307 scoped_ptr<Address> address = GetTestSaveableAddress(); local
1325 scoped_ptr<Address> address = GetTestSaveableAddress(); local
1343 scoped_ptr<Address> address = GetTestSaveableAddress(); local
1462 scoped_ptr<Address> address = GetTestSaveableAddress(); local
1496 scoped_ptr<Address> address = GetTestSaveableAddress(); local
1517 scoped_ptr<Address> address = GetTestSaveableAddress(); local
    [all...]
full_wallet_unittest.cc 427 scoped_ptr<Address>(),
428 scoped_ptr<Address>(),
438 scoped_ptr<Address>(),
439 scoped_ptr<Address>(),
  /art/compiler/utils/arm/
assembler_arm32.h 100 void ldr(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
101 void str(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
103 void ldrb(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
104 void strb(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
106 void ldrh(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
107 void strh(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
109 void ldrsb(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
110 void ldrsh(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
112 void ldrd(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
113 void strd(Register rd, const Address& ad, Condition cond = AL) OVERRIDE
    [all...]
assembler_thumb2.h 122 void ldr(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
123 void str(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
125 void ldrb(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
126 void strb(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
128 void ldrh(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
129 void strh(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
131 void ldrsb(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
132 void ldrsh(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
134 void ldrd(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
135 void strd(Register rd, const Address& ad, Condition cond = AL) OVERRIDE
    [all...]
  /external/chromium_org/chrome/browser/ui/android/autofill/
autofill_dialog_result.cc 41 scoped_ptr<wallet::Address> ParseJavaWalletAddress(
42 JNIEnv* env, jobject address) {
43 if (!address)
44 return scoped_ptr<wallet::Address>();
47 FETCH_JSTRING(UTF16, env, address, ResultAddress, Name);
51 FETCH_JSTRING(UTF16, env, address, ResultAddress, StreetAddress);
55 FETCH_JSTRING(UTF16, env, address, ResultAddress, Locality);
57 FETCH_JSTRING(UTF16, env, address, ResultAddress, DependentLocality);
59 FETCH_JSTRING(UTF16, env, address, ResultAddress, AdministrativeArea);
61 FETCH_JSTRING(UTF16, env, address, ResultAddress, PostalCode)
    [all...]
  /external/chromium_org/v8/src/x87/
assembler-x87.h 275 inline explicit Immediate(Address addr);
345 return Operand(reinterpret_cast<int32_t>(ext.address()),
352 return Operand(index, scale, reinterpret_cast<int32_t>(arr.address()),
487 inline static Address target_address_at(Address pc,
489 inline static void set_target_address_at(Address pc,
491 Address target,
494 static inline Address target_address_at(Address pc, Code* code) {
498 static inline void set_target_address_at(Address pc
    [all...]
  /external/lldb/include/lldb/Breakpoint/
BreakpointResolverName.h 70 Address *addr,
  /external/lldb/include/lldb/Core/
ValueObjectDynamicValue.h 23 // A ValueObject that represents memory at a given address, viewed as some
115 Address m_address; ///< The variable that this value object is based upon
  /external/lldb/include/lldb/Target/
LanguageRuntime.h 52 Address &address) = 0;
  /external/lldb/source/Core/
FileLineResolver.cpp 47 Address *addr,
ValueObjectMemory.cpp 39 const Address &address,
42 return (new ValueObjectMemory (exe_scope, name, address, type_sp))->GetSP();
48 const Address &address,
51 return (new ValueObjectMemory (exe_scope, name, address, ast_type))->GetSP();
56 const Address &address,
59 m_address (address),
92 const Address &address
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DynamicLoaderDarwinKernel.h 143 // 1. The load address, name, UUID, and size of a kext/kernel binary in memory
194 SetLoadAddress (lldb::addr_t load_addr); // Address of the Mach-O header for this binary
197 GetLoadAddress () const; // Address of the Mach-O header for this binary
330 ParseKextSummaries (const lldb_private::Address &kext_summary_addr,
339 ReadKextSummaries (const lldb_private::Address &kext_summary_addr,
364 lldb_private::Address m_kext_summary_header_ptr_addr;
365 lldb_private::Address m_kext_summary_header_addr;
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntime.cpp 48 // result in an address, and we should try that to see if the address is an ObjC object.
53 // Make the argument list: we pass one arg, the address of our pointer, to the print function.
78 // Get the function address for the print function.
79 const Address *function_address = GetPrintForDebuggerAddr();
200 Address *
216 m_PrintForDebugger_addr.reset(new Address(context.symbol->GetAddress()));
234 Address &address)
  /external/lldb/source/Target/
ThreadPlanRunToAddress.cpp 34 Address &address,
37 ThreadPlan (ThreadPlan::eKindRunToAddress, "Run to address plan", thread, eVoteNoOpinion, eVoteNoOpinion),
42 m_addresses.push_back (address.GetOpcodeLoadAddress (m_thread.CalculateTarget().get()));
49 lldb::addr_t address,
52 ThreadPlan (ThreadPlan::eKindRunToAddress, "Run to address plan", thread, eVoteNoOpinion, eVoteNoOpinion),
57 m_addresses.push_back(m_thread.CalculateTarget()->GetOpcodeLoadAddress(address));
67 ThreadPlan (ThreadPlan::eKindRunToAddress, "Run to address plan", thread, eVoteNoOpinion, eVoteNoOpinion),
73 // breakpoints at the correct address.
96 breakpoint->SetBreakpointKind("run-to-address");
    [all...]
ThreadPlanStepOverRange.cpp 76 s.Address (m_thread.GetRegisterContext()->GetPC(),
180 // The current clang (at least through 424) doesn't always get the address range for the
203 Address cur_address = frame_sp->GetFrameCodeAddress();
222 Address prev_address = prev_line_entry.range.GetBaseAddress();
248 Address next_line_address = next_line_entry.range.GetBaseAddress();
ThreadPlanTracer.cpp 190 Address pc_addr;
195 pc_addr.Dump(stream, &m_thread, Address::DumpStyleResolvedDescription, Address::DumpStyleModuleWithFileAddress);
214 disassembler->DecodeInstructions (Address (pc), extractor, 0, 1, false, data_from_file);

Completed in 1175 milliseconds

1 2 3 4 5 6 7 8 91011>>