/external/google-breakpad/src/client/linux/minidump_writer/ |
D | linux_dumper.cc | 109 linux_gate = reinterpret_cast<void*>(mapping.start_addr); in ElfFileIdentifierForMapping() 113 reinterpret_cast<const void*>(mapping.start_addr), in ElfFileIdentifierForMapping() 310 uintptr_t start_addr, end_addr, offset; in EnumerateMappings() local 312 const char* i1 = my_read_hex_ptr(&start_addr, line); in EnumerateMappings() 324 reinterpret_cast<void*>(start_addr) == linux_gate_loc) { in EnumerateMappings() 332 if ((start_addr == module->start_addr + module->size) && in EnumerateMappings() 335 module->size = end_addr - module->start_addr; in EnumerateMappings() 346 if ((start_addr == module->start_addr + module->size) && in EnumerateMappings() 352 module->size = end_addr - module->start_addr; in EnumerateMappings() 359 module->start_addr = start_addr; in EnumerateMappings() [all …]
|
D | minidump_writer.cc | 344 if (ip >= mapping.start_addr && in WriteThreadListStream() 345 ip < mapping.start_addr + mapping.size) { in WriteThreadListStream() 350 std::max(mapping.start_addr, in WriteThreadListStream() 354 uintptr_t(mapping.start_addr + mapping.size)); in WriteThreadListStream() 472 if (mapping.start_addr >= iter->first.start_addr && in HaveMappingInfo() 473 (mapping.start_addr + mapping.size) <= in HaveMappingInfo() 474 (iter->first.start_addr + iter->first.size)) { in HaveMappingInfo() 545 mod.base_of_image = mapping.start_addr; in FillRawModule()
|
D | linux_ptrace_dumper_unittest.cc | 237 mapping.start_addr); in TEST_F() 290 EXPECT_EQ(linux_gate_loc, reinterpret_cast<void*>(mapping->start_addr)); in TEST_F()
|
D | minidump_writer_unittest.cc | 185 info.start_addr = kMemoryAddress; in TEST() 305 info.start_addr = kMemoryAddress - memory_size; in TEST() 331 EXPECT_EQ(info.start_addr, module->base_address()); in TEST()
|
/external/elfutils/libdw/ |
D | dwarf_getfuncs.c | 47 void *start_addr; member 62 void *start_addr = v->start_addr; in tree_visitor() local 79 if (start_addr != NULL) in tree_visitor() 81 if (die_addr == start_addr) in tree_visitor() 82 v->start_addr = NULL; in tree_visitor()
|
/external/strace/ |
D | unwind.c | 57 unsigned long start_addr; member 157 unsigned long start_addr, end_addr, mmap_offset; in build_mmap_cache() local 162 &start_addr, &end_addr, &exec_bit, in build_mmap_cache() 170 if (end_addr < start_addr) { in build_mmap_cache() 181 if (entry->start_addr == start_addr && in build_mmap_cache() 186 if (start_addr <= entry->start_addr || in build_mmap_cache() 187 start_addr < entry->end_addr) { in build_mmap_cache() 201 entry->start_addr = start_addr; in build_mmap_cache() 314 if (ip >= cur_mmap_cache->start_addr && in print_stack_frame() 321 true_offset = ip - cur_mmap_cache->start_addr + in print_stack_frame() [all …]
|
/external/google-breakpad/src/client/mac/handler/ |
D | minidump_generator.cc | 258 size_t MinidumpGenerator::CalculateStackSize(mach_vm_address_t start_addr) { in CalculateStackSize() argument 259 mach_vm_address_t stack_region_base = start_addr; in CalculateStackSize() 268 if (start_addr == 0) { in CalculateStackSize() 277 if (result != KERN_SUCCESS || start_addr < stack_region_base) { in CalculateStackSize() 313 return stack_region_base + stack_region_size - start_addr; in CalculateStackSize() 317 mach_vm_address_t start_addr, in WriteStackFromStartAddress() argument 322 size_t size = CalculateStackSize(start_addr); in WriteStackFromStartAddress() 328 start_addr = 0xDEADBEEF; in WriteStackFromStartAddress() 347 start_addr, in WriteStackFromStartAddress() 355 result = memory.Copy(reinterpret_cast<const void *>(start_addr), size); in WriteStackFromStartAddress() [all …]
|
D | minidump_generator.h | 139 bool WriteStackFromStartAddress(mach_vm_address_t start_addr, 148 size_t CalculateStackSize(mach_vm_address_t start_addr);
|
/external/opencv3/modules/imgproc/src/opencl/ |
D | filterSepRow.cl | 165 int start_addr = mad24(start_y, src_step_in_pixel, start_x); 177 int current_addr = mad24(i, LSIZE0 << 2, start_addr); 251 temp[i] = *(__global uchar4*)&src[mad24(i, LSIZE0 << 2, start_addr)]; 273 start_addr = mad24(y, dst_step_in_pixel, x); 277 *(__global dstT4*)&dst[start_addr] = sum; 280 dst[start_addr] = sum.x; 281 dst[start_addr+1] = sum.y; 282 dst[start_addr+2] = sum.z; 286 dst[start_addr] = sum.x; 287 dst[start_addr+1] = sum.y; [all …]
|
D | morph.cl | 130 int start_addr = mad24(cur_y, src_step, cur_x * TSIZE); 137 start_addr = start_addr < end_addr && start_addr > 0 ? start_addr : 0; 140 T temp0 = loadpix(srcptr + start_addr);
|
D | filterSepCol.cl | 75 int start_addr = mad24(y, src_step, x * SRCSIZE); 84 int current_addr = mad24(i, LSIZE1 * src_step, start_addr); 118 start_addr = mad24(y, dst_step, mad24(DSTSIZE, x, dst_offset)); 119 storepix(convertToDstT(sum + (srcT)(delta)), dst + start_addr);
|
/external/google-breakpad/src/client/solaris/handler/ |
D | solaris_lwp.cc | 89 if (addr->is_mapped = ((module_info.start_addr > 0) && in AddressNotInModuleCallback() 90 (addr->address >= module_info.start_addr) && in AddressNotInModuleCallback() 91 (addr->address <= module_info.start_addr + in AddressNotInModuleCallback() 93 stack_base_address = module_info.start_addr + module_info.size; in AddressNotInModuleCallback() 351 module.start_addr = _maps->pr_vaddr; in ListModules()
|
D | solaris_lwp.h | 66 uintptr_t start_addr; member
|
/external/google-breakpad/src/client/linux/microdump_writer/ |
D | microdump_writer.cc | 284 if (mapping.start_addr >= iter->first.start_addr && in HaveMappingInfo() 285 (mapping.start_addr + mapping.size) <= in HaveMappingInfo() 286 (iter->first.start_addr + iter->first.size)) { in HaveMappingInfo() 317 LogAppend(static_cast<uintptr_t>(mapping.start_addr)); in DumpModule()
|
D | microdump_writer_unittest.cc | 85 info.start_addr = memory_size; in TEST()
|
/external/f2fs-tools/fsck/ |
D | f2fs.h | 243 block_t start_addr; in __start_cp_addr() local 247 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr); in __start_cp_addr() 254 start_addr += sbi->blocks_per_seg; in __start_cp_addr() 256 return start_addr; in __start_cp_addr()
|
/external/google-breakpad/src/processor/ |
D | microdump.cc | 247 uint64_t start_addr = HexStrToL<uint64_t>(start_addr_str); in Microdump() local 251 assert(start_addr == stack_start + stack_content.size()); in Microdump() 253 stack_start = start_addr; in Microdump()
|
/external/google-breakpad/src/client/linux/dump_writer_common/ |
D | mapping_info.h | 44 uintptr_t start_addr; member
|
/external/kernel-headers/original/uapi/linux/ |
D | vfio.h | 574 __u64 start_addr; member 588 __u64 start_addr; member
|
/external/google-breakpad/src/tools/linux/md2core/ |
D | minidump-2-core.cc | 913 static const uintptr_t start_addr = 4096; in AugmentMappings() local 921 (struct link_map*)(start_addr + sizeof(debug)) : 0; in AugmentMappings() 930 link_map.l_name = (char*)(start_addr + data.size() + sizeof(link_map)); in AugmentMappings() 933 prev = (struct link_map*)(start_addr + data.size()); in AugmentMappings() 947 link_map.l_next = (struct link_map*)(start_addr + data.size() + in AugmentMappings() 955 AddDataToMapping(crashinfo, data, start_addr); in AugmentMappings() 974 sizeof(start_addr), in AugmentMappings() 975 (char*)&start_addr, sizeof(start_addr)); in AugmentMappings()
|
/external/vboot_reference/futility/ |
D | kernel_blob.h | 31 uint64_t start_addr; member
|
D | vb1_helper.c | 196 params->e820_entries[0].start_addr = 0x00000000; in PickApartVmlinuz() 199 params->e820_entries[1].start_addr = 0xfffff000; in PickApartVmlinuz()
|
/external/jemalloc/bin/ |
D | jeprof.in | 1322 my $start_addr = $symbol_table->{$routine}->[0]; 1325 my $length = hex(AddressSub($end_addr, $start_addr)); 1326 my $addr = AddressAdd($start_addr, $offset); 1331 $start_addr, $end_addr, $total); 1347 my $start_addr = shift; 1352 "--start-address=0x$start_addr", 1449 my $start_addr = $symbol_table->{$routine}->[0]; 1451 my $length = hex(AddressSub($end_addr, $start_addr)); 1452 my $addr = AddressAdd($start_addr, $offset); 1458 $start_addr, $end_addr, [all …]
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_hostap.h | 110 u32 start_addr; member
|
/external/llvm/test/Transforms/InstCombine/ |
D | simplify-libcalls.ll | 49 define i1 @PR2341(i8** %start_addr) { 51 %tmp4 = load i8*, i8** %start_addr, align 4 ; <i8*> [#uses=1]
|