Home
last modified time | relevance | path

Searched refs:start_address (Results 1 – 25 of 55) sorted by relevance

123

/external/toolchain-utils/heatmaps/
Dheatmap_generator.py39 self.start_address = addr
44 return '(%x, %x, %x)' % (self.start_address, self.size, self.offset)
54 if self.start_address == mmap.start_address:
64 assert self.start_address < mmap.start_address, \
66 'process(%x).' % (self.start_address, mmap.start_address)
68 assert self.start_address + self.size >= mmap.start_address + mmap.size, \
177 start_address = int(address_raw[0][1:], base=16)
182 return pid, MMap(start_address, size, offset)
230 self.processes[pid_to] = MMap(self.processes[pid_from].start_address,
272 start_address = self.processes[pid].start_address
[all …]
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer_mac.cpp153 uptr *start_address) { in ParseCommandOutput() argument
194 if (start_address) *start_address = addr - offset; in ParseCommandOutput()
212 uptr start_address = AddressInfo::kUnknown; in SymbolizePC() local
214 &stack->info.file, &line, &start_address)) { in SymbolizePC()
220 if (start_address == AddressInfo::kUnknown) { in SymbolizePC()
226 start_address = reinterpret_cast<uptr>(info.dli_saddr); in SymbolizePC()
232 if (start_address != AddressInfo::kUnknown && addr >= start_address) { in SymbolizePC()
233 stack->info.function_offset = addr - start_address; in SymbolizePC()
/external/llvm-project/lldb/examples/python/
Dscripted_step.py105 self.start_address = thread_plan.GetThread().GetFrameAtIndex(0).GetPC()
118 if cur_pc < self.start_address or cur_pc >= self.start_address + 20:
132 self.start_address = thread_plan.GetThread().GetFrameAtIndex(0).GetPCAddress()
134 self.start_address, 20)
166 start_address = cur_line_entry.GetStartAddress()
168 line_range = end_address.GetFileAddress() - start_address.GetFileAddress()
170 start_address, line_range)
/external/llvm-project/lldb/include/lldb/API/
DSBThreadPlan.h86 SBThreadPlan QueueThreadPlanForStepOverRange(SBAddress &start_address,
88 SBThreadPlan QueueThreadPlanForStepOverRange(SBAddress &start_address,
92 SBThreadPlan QueueThreadPlanForStepInRange(SBAddress &start_address,
94 SBThreadPlan QueueThreadPlanForStepInRange(SBAddress &start_address,
/external/vixl/examples/aarch64/
Ddisasm.cc94 int64_t start_address = 0; in main() local
102 start_address = ParseInt64(arg); in main()
128 disasm.MapCodeAddress(start_address, start); in main()
/external/mesa3d/src/util/
Dset.c250 uint32_t start_address = util_fast_urem32(hash, size, ht->size_magic); in set_search() local
253 uint32_t hash_address = start_address; in set_search()
268 } while (hash_address != start_address); in set_search()
293 uint32_t start_address = util_fast_urem32(hash, size, ht->size_magic); in set_add_rehash() local
296 uint32_t hash_address = start_address; in set_add_rehash()
381 uint32_t start_address = util_fast_urem32(hash, size, ht->size_magic); in set_search_or_add() local
384 uint32_t hash_address = start_address; in set_search_or_add()
407 } while (hash_address != start_address); in set_search_or_add()
/external/llvm-project/lldb/source/API/
DSBThreadPlan.cpp243 Address *start_address = sb_start_address.get(); in QueueThreadPlanForStepOverRange() local
244 if (!start_address) { in QueueThreadPlanForStepOverRange()
248 AddressRange range(*start_address, size); in QueueThreadPlanForStepOverRange()
250 start_address->CalculateSymbolContext(&sc); in QueueThreadPlanForStepOverRange()
289 Address *start_address = sb_start_address.get(); in QueueThreadPlanForStepInRange() local
290 if (!start_address) { in QueueThreadPlanForStepInRange()
294 AddressRange range(*start_address, size); in QueueThreadPlanForStepInRange()
296 start_address->CalculateSymbolContext(&sc); in QueueThreadPlanForStepInRange()
/external/pigweed/pw_kvs/
Dfake_flash_memory.cc37 Status FlashError::Check(FlashMemory::Address start_address, size_t size) { in Check() argument
40 (start_address >= end_ || (start_address + size) <= begin_)) { in Check()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer_mac.cc84 uptr *start_address) { in ParseCommandOutput() argument
125 if (start_address) *start_address = addr - offset; in ParseCommandOutput()
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DLinuxProcMaps.cpp36 lldb::addr_t start_address = line_extractor.GetHexMaxU64(false, 0); in ParseMemoryRegionInfoFromProcMapsLine() local
45 lldb::addr_t end_address = line_extractor.GetHexMaxU64(false, start_address); in ParseMemoryRegionInfoFromProcMapsLine()
53 region.GetRange().SetRangeBase(start_address); in ParseMemoryRegionInfoFromProcMapsLine()
/external/pigweed/pw_kvs/public/pw_kvs/
Dflash_memory.h43 uint32_t start_address = 0,
49 start_address_(start_address), in sector_size_()
123 constexpr uint32_t start_address() const { return start_address_; } in start_address() function
273 return flash_.start_address() + in PartitionToFlashAddress()
/external/libchrome/base/trace_event/
Dprocess_memory_dump.cc77 size_t ProcessMemoryDump::CountResidentBytes(void* start_address, in CountResidentBytes() argument
80 const uintptr_t start_pointer = reinterpret_cast<uintptr_t>(start_address); in CountResidentBytes()
164 void* start_address, in CountResidentBytesInSharedMemory() argument
171 reinterpret_cast<mach_vm_address_t>(start_address); in CountResidentBytesInSharedMemory()
215 volatile char* base_address = static_cast<char*>(start_address); in CountResidentBytesInSharedMemory()
224 return CountResidentBytes(start_address, mapped_size); in CountResidentBytesInSharedMemory()
Dprocess_memory_dump.h72 static size_t CountResidentBytes(void* start_address, size_t mapped_size);
77 void* start_address,
/external/llvm-project/lldb/bindings/interface/
DSBThreadPlan.i104 QueueThreadPlanForStepOverRange (SBAddress &start_address,
108 QueueThreadPlanForStepInRange (SBAddress &start_address,
/external/llvm-project/lldb/source/Target/
DThreadPlanCallFunction.cpp67 llvm::Expected<Address> start_address = GetTarget().GetEntryPointAddress(); in ConstructorSetup() local
68 if (!start_address) { in ConstructorSetup()
70 "%s", llvm::toString(start_address.takeError()).c_str()); in ConstructorSetup()
76 m_start_addr = *start_address; in ConstructorSetup()
/external/google-breakpad/src/processor/
Dmap_serializers-inl.h76 char *start_address = dest; in Write() local
92 offsets[index] = static_cast<uint32_t>(dest - start_address); in Write()
144 char *start_address = dest; in Write() local
160 offsets[index] = static_cast<uint32_t>(dest - start_address); in Write()
/external/google-breakpad/src/tools/linux/md2core/
Dminidump-2-core.cc293 start_address(0), in Mapping()
299 uint64_t start_address, end_address, offset; member
737 mapping.start_address = start; in ParseMaps()
743 crashinfo->mappings[mapping.start_address] = mapping; in ParseMaps()
981 mapping.start_address = rawmodule->base_of_image; in ParseModuleStream()
984 if (crashinfo->mappings.find(mapping.start_address) == in ParseModuleStream()
988 crashinfo->mappings[mapping.start_address] = mapping; in ParseModuleStream()
1029 if (addr >= iter->second.start_address && in AddDataToMapping()
1032 if ((addr & ~4095) != iter->second.start_address) { in AddDataToMapping()
1046 iter->second.start_address; in AddDataToMapping()
[all …]
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DIRDynamicChecks.cpp238 llvm::FunctionCallee BuildPointerValidatorFunc(lldb::addr_t start_address) { in BuildPointerValidatorFunc() argument
249 ConstantInt::get(GetIntptrTy(), start_address, false); in BuildPointerValidatorFunc()
261 llvm::FunctionCallee BuildObjectCheckerFunc(lldb::addr_t start_address) { in BuildObjectCheckerFunc() argument
273 ConstantInt::get(GetIntptrTy(), start_address, false); in BuildObjectCheckerFunc()
/external/perfetto/test/trace_processor/chrome/
Dmemory_snapshot_smaps.sql26 start_address,
/external/mesa3d/bin/
Dperf-annotate-jit.py221 start_address = lookupMap(module, function_name)
222 address -= start_address
/external/llvm-project/lldb/source/Plugins/Instruction/ARM/
DEmulationStateARM.cpp290 uint64_t start_address = 0; in LoadStateFromDictionary() local
297 start_address = value_sp->GetUInt64Value(); in LoadStateFromDictionary()
305 uint32_t address = (uint32_t)start_address; in LoadStateFromDictionary()
/external/OpenCSD/decoder/source/
Docsd_dcd_tree.cpp290 …CreateFileAccessor(&p_accessor,filepath,region_array[curr_region_idx].start_address,region_array[c… in addBinFileRegionMemAcc()
300 pAcc->AddOffsetRange(region_array[curr_region_idx].start_address, in addBinFileRegionMemAcc()
335 if (!pAcc->addrStartOfRange(region_array[curr_region_idx].start_address)) in updateBinFileRegionMemAcc()
338 if (!pAcc->AddOffsetRange(region_array[curr_region_idx].start_address, in updateBinFileRegionMemAcc()
/external/arm-trusted-firmware/drivers/renesas/common/emmc/
Demmc_def.h49 EMMC_ERROR_CODE emmc_erase_sector(uint32_t *start_address,
/external/angle/third_party/abseil-cpp/absl/debugging/
Dsymbolize_elf.inc701 const char *start_address =
706 // lowest-order bit in start_address is ignored by the CPU and indicates
710 start_address = reinterpret_cast<const char *>(
711 reinterpret_cast<uintptr_t>(start_address) & ~1);
717 // start_address to get the first double word, which points to the
719 start_address = *reinterpret_cast<const char *const *>(start_address);
724 const void *const end_address = ComputeOffset(start_address, size);
730 ((start_address <= pc && pc < end_address) ||
731 (start_address == pc && pc == end_address))) {
991 const void *start_address;
[all …]
/external/google-breakpad/src/client/linux/handler/
Dexception_handler.h213 uintptr_t start_address,

123