Searched defs:start_address (Results 1 - 19 of 19) sorted by relevance

/external/oprofile/daemon/
H A Dopd_kernel.c150 unsigned long long start_address; local
180 dependencies, live_info, &start_address);
187 image = opd_create_module(module_name, start_address,
188 start_address + module_size);
/external/chromium_org/v8/src/x64/
H A Dregexp-macro-assembler-x64.cc1254 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart); local
1262 if (start_address != new_address) {
1266 int byte_length = static_cast<int>(end_address - start_address);
1272 // short-circuiting during GC. That will not change start_address but
/external/chromium_org/v8/src/arm/
H A Dregexp-macro-assembler-arm.cc1116 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart); local
1124 if (start_address != new_address) {
1128 int byte_length = static_cast<int>(end_address - start_address);
1134 // short-circuiting during GC. That will not change start_address but
H A Dsimulator-arm.cc1530 intptr_t* start_address,
1540 *start_address = rn_val;
1546 *start_address = rn_val - (num_regs * reg_size);
1548 rn_val = *start_address;
1552 *start_address = rn_val + reg_size;
1571 intptr_t start_address = 0; local
1574 ProcessPU(instr, num_regs, kPointerSize, &start_address, &end_address);
1576 intptr_t* address = reinterpret_cast<intptr_t*>(start_address);
1578 DCHECK(start_address > 8191 || start_address <
1527 ProcessPU(Instruction* instr, int num_regs, int reg_size, intptr_t* start_address, intptr_t* end_address) argument
1616 intptr_t start_address = 0; local
[all...]
/external/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp335 uint64_t start_address = 0; local
342 start_address = value_sp->GetUInt64Value ();
350 uint32_t address = (uint32_t) start_address;
/external/chromium_org/tools/cygprofile/
H A Dcygprofile.cc115 uint64 start_address = 0; local
116 CHECK(ParseAddress(line, 0, address_length, &start_address));
124 if (current_func_addr >= start_address &&
/external/chromium_org/base/debug/
H A Dstack_trace_posix.cc531 // the specified pc. If found, sets |start_address| to the start address
540 static int OpenObjectFileContainingPc(uint64_t pc, uint64_t& start_address, argument
563 start_address = region.start;
564 // Don't subtract 'start_address' from the first entry:
575 base_address = (is_first ? 0U : start_address) - region.offset;
/external/chromium_org/base/third_party/symbolize/
H A Dsymbolize.cc305 uint64_t start_address = symbol.st_value; local
306 start_address += symbol_offset;
307 uint64_t end_address = start_address + symbol.st_size;
310 start_address <= pc && pc < end_address) {
499 // the specified pc. If found, sets |start_address| to the start address
508 uint64_t &start_address,
543 cursor = GetHex(cursor, eol, &start_address);
558 if (!(start_address <= pc && pc < end_address)) {
586 // Don't subtract 'start_address' from the first entry:
597 base_address = ((num_maps == 1) ? 0U : start_address)
507 OpenObjectFileContainingPcAndGetStartAddress(uint64_t pc, uint64_t &start_address, uint64_t &base_address, char *out_file_name, int out_file_name_size) argument
[all...]
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_elf_relocations.cpp376 const ELF::Addr start_address = decoder.Dequeue(); local
380 relocation.r_offset = start_address;
/external/chromium_org/v8/src/ia32/
H A Dregexp-macro-assembler-ia32.cc1148 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart); local
1156 if (start_address != new_address) {
1160 int byte_length = static_cast<int>(end_address - start_address);
1166 // short-circuiting during GC. That will not change start_address but
/external/chromium_org/v8/src/mips/
H A Dregexp-macro-assembler-mips.cc1175 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart); local
1183 if (start_address != new_address) {
1187 int byte_length = static_cast<int>(end_address - start_address);
1193 // short-circuiting during GC. That will not change start_address but
/external/chromium_org/v8/src/mips64/
H A Dregexp-macro-assembler-mips64.cc1221 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart); local
1229 if (start_address != new_address) {
1233 int byte_length = static_cast<int>(end_address - start_address);
1239 // short-circuiting during GC. That will not change start_address but
/external/chromium_org/v8/src/x87/
H A Dregexp-macro-assembler-x87.cc1147 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart); local
1155 if (start_address != new_address) {
1159 int byte_length = static_cast<int>(end_address - start_address);
1165 // short-circuiting during GC. That will not change start_address but
/external/lldb/source/Expression/
H A DIRDynamicChecks.cpp274 /// @param[in] start_address
280 llvm::Value *BuildPointerValidatorFunc(lldb::addr_t start_address) argument
293 Constant *fun_addr_int = ConstantInt::get(intptr_ty, start_address, false);
301 /// @param[in] start_address
307 llvm::Value *BuildObjectCheckerFunc(lldb::addr_t start_address) argument
321 Constant *fun_addr_int = ConstantInt::get(intptr_ty, start_address, false);
/external/lldb/source/Core/
H A DDisassembler.cpp345 const Address &start_address,
361 ResolveAddress (exe_ctx, start_address, addr);
338 Disassemble( Debugger &debugger, const ArchSpec &arch, const char *plugin_name, const char *flavor, const ExecutionContext &exe_ctx, const Address &start_address, uint32_t num_instructions, uint32_t num_mixed_context_lines, uint32_t options, Stream &strm ) argument
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-checker.cc408 uintptr_t start_address; // the start of the range member in struct:HeapLeakChecker::RangeValue
753 if (iter->second.start_address < addr &&
762 uintptr_t start_address = AsInt(ptr); local
763 uintptr_t end_address = start_address + info.object_size;
765 = stack_tops->lower_bound(start_address);
767 RAW_DCHECK(*iter >= start_address, "");
795 // start_address start address of a memory region.
803 static void RecordGlobalDataLocked(uintptr_t start_address, argument
814 filename, start_address, end_address);
816 push_back(AllocObject(AsPtr(start_address),
830 DisableLibraryAllocsLocked(const char* library, uintptr_t start_address, uintptr_t end_address) argument
907 uint64 start_address, end_address, file_offset; local
2326 DisableChecksFromToLocked(const void* start_address, const void* end_address, int max_depth) argument
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dheap-checker.cc408 uintptr_t start_address; // the start of the range member in struct:HeapLeakChecker::RangeValue
753 if (iter->second.start_address < addr &&
762 uintptr_t start_address = AsInt(ptr); local
763 uintptr_t end_address = start_address + info.object_size;
765 = stack_tops->lower_bound(start_address);
767 RAW_DCHECK(*iter >= start_address, "");
795 // start_address start address of a memory region.
803 static void RecordGlobalDataLocked(uintptr_t start_address, argument
814 filename, start_address, end_address);
816 push_back(AllocObject(AsPtr(start_address),
830 DisableLibraryAllocsLocked(const char* library, uintptr_t start_address, uintptr_t end_address) argument
907 uint64 start_address, end_address, file_offset; local
2325 DisableChecksFromToLocked(const void* start_address, const void* end_address, int max_depth) argument
[all...]
/external/chromium_org/v8/src/arm64/
H A Dregexp-macro-assembler-arm64.cc1364 const byte* start_address = *input_start; local
1371 if (start_address != new_address) {
1375 int byte_length = static_cast<int>(end_address - start_address);
1381 // short-circuiting during GC. That will not change start_address but
/external/chromium_org/v8/src/
H A Dserialize.cc675 Address start_address = code_space->top(); local
681 CHECK_EQ(start_address, code_space->top());

Completed in 1822 milliseconds