| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectMemoryTag.cpp | 54 addr_t start_addr = OptionArgParser::ToRawAddress( in DoExecute() local 56 if (start_addr == LLDB_INVALID_ADDRESS) { in DoExecute() 63 addr_t end_addr = start_addr + 1; in DoExecute() 91 lldb::addr_t logical_tag = tag_manager->GetLogicalTag(start_addr); in DoExecute() 97 start_addr = abi->FixDataAddress(start_addr); in DoExecute() 102 tag_manager->MakeTaggedRange(start_addr, end_addr, memory_regions); in DoExecute() 205 addr_t start_addr = OptionArgParser::ToRawAddress( in DoExecute() local 207 if (start_addr == LLDB_INVALID_ADDRESS) { in DoExecute() 248 start_addr = abi->FixDataAddress(start_addr); in DoExecute() 258 tag_manager->ExpandToGranule(MemoryTagManager::TagRange(start_addr, 1)) in DoExecute()
|
| H A D | CommandObjectDisassemble.cpp | 75 start_addr = OptionArgParser::ToAddress(execution_context, option_arg, in SetOptionValue() 77 if (start_addr != LLDB_INVALID_ADDRESS) in SetOptionValue() 179 start_addr = LLDB_INVALID_ADDRESS; in OptionParsingStarting() 437 if (m_options.end_addr <= m_options.start_addr) { in GetStartEndAddressRanges() 441 size = m_options.end_addr - m_options.start_addr; in GetStartEndAddressRanges() 443 return std::vector<AddressRange>{{Address(m_options.start_addr), size}}; in GetStartEndAddressRanges() 457 if (m_options.start_addr != LLDB_INVALID_ADDRESS) in GetRangesForSelectedMode()
|
| H A D | CommandObjectDisassemble.h | 67 lldb::addr_t start_addr = 0; variable
|
| H A D | CommandObjectSource.cpp | 422 lldb::addr_t start_addr = base_address.GetLoadAddress(&target); in DumpLinesInFunctions() local 423 if (start_addr == LLDB_INVALID_ADDRESS) in DumpLinesInFunctions() 424 start_addr = base_address.GetFileAddress(); in DumpLinesInFunctions() 425 lldb::addr_t end_addr = start_addr + size; in DumpLinesInFunctions() 426 for (lldb::addr_t addr = start_addr; addr < end_addr; in DumpLinesInFunctions()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | VMRange.h | 31 VMRange(lldb::addr_t start_addr, lldb::addr_t end_addr) in VMRange() argument 32 : m_base_addr(start_addr), in VMRange() 33 m_byte_size(end_addr > start_addr ? end_addr - start_addr : 0) {} in VMRange() 43 void Reset(lldb::addr_t start_addr, lldb::addr_t end_addr) { in Reset() argument 44 SetBaseAddress(start_addr); in Reset()
|
| /freebsd/sys/dev/aic7xxx/ |
| H A D | aic7xxx_93cx6.c | 150 u_int start_addr, u_int count) 161 for (k = start_addr; k < count + start_addr; k++) { in ahc_read_seeprom() 198 buf[k - start_addr] = v; in ahc_read_seeprom() 222 u_int start_addr, u_int count) 247 for (k = start_addr; k < count + start_addr; k++) { in ahc_write_seeprom() 264 v = buf[k - start_addr]; in ahc_write_seeprom() 157 ahc_read_seeprom(struct seeprom_descriptor * sd,uint16_t * buf,u_int start_addr,u_int count) ahc_read_seeprom() argument 229 ahc_write_seeprom(struct seeprom_descriptor * sd,uint16_t * buf,u_int start_addr,u_int count) ahc_write_seeprom() argument
|
| H A D | aic7xxx_93cx6.h | 97 u_int start_addr, u_int count); 99 u_int start_addr, u_int count);
|
| H A D | aic79xx_pci.c | 557 u_int start_addr; in ahd_check_extport() 567 start_addr = ((2 * sizeof(*sc)) in ahd_check_extport() 571 start_addr, sizeof(vpd)/2, in ahd_check_extport() 584 start_addr = (sizeof(*sc) / 2) * (ahd->channel - 'A'); in ahd_check_extport() 587 start_addr, sizeof(*sc)/2, in ahd_check_extport() 563 u_int start_addr; ahd_check_extport() local
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | AddressRange.cpp | 216 addr_t start_addr = m_base_addr.GetLoadAddress(target); in GetDescription() local 217 if (start_addr != LLDB_INVALID_ADDRESS) { in GetDescription() 221 s->Printf("[0x%" PRIx64 "-0x%" PRIx64 ")", start_addr, in GetDescription() 222 start_addr + GetByteSize()); in GetDescription() 234 start_addr = m_base_addr.GetFileAddress(); in GetDescription() 235 const addr_t end_addr = (start_addr == LLDB_INVALID_ADDRESS) in GetDescription() 237 : start_addr + GetByteSize(); in GetDescription() 238 s->Printf("%s[0x%" PRIx64 "-0x%" PRIx64 ")", file_name, start_addr, end_addr); in GetDescription()
|
| /freebsd/sys/dev/iser/ |
| H A D | iser_memory.c | 63 u64 start_addr, end_addr; in iser_data_buf_aligned_len() local 70 start_addr = ib_sg_dma_address(ibdev, sgl); in iser_data_buf_aligned_len() 73 if (start_check && !IS_4K_ALIGNED(start_addr)) in iser_data_buf_aligned_len() 80 end_addr = start_addr + ib_sg_dma_len(ibdev, sg); in iser_data_buf_aligned_len() 81 start_addr = ib_sg_dma_address(ibdev, next_sg); in iser_data_buf_aligned_len() 83 if (end_addr == start_addr) { in iser_data_buf_aligned_len()
|
| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | UnwindTable.cpp | 148 Address start_addr = GetFunctionOrSymbolAddress(addr, sc); in GetFuncUnwindersContainingAddress() local 154 std::make_shared<FuncUnwinders>(*this, start_addr, ranges); in GetFuncUnwindersContainingAddress() 169 Address start_addr = GetFunctionOrSymbolAddress(addr, sc); in GetUncachedFuncUnwindersContainingAddress() local 174 return std::make_shared<FuncUnwinders>(*this, start_addr, std::move(ranges)); in GetUncachedFuncUnwindersContainingAddress()
|
| H A D | CompileUnit.cpp | 338 Address start_addr = line_entry.range.GetBaseAddress(); in ResolveSymbolContext() local 339 Function *function = start_addr.CalculateSymbolContextFunction(); in ResolveSymbolContext()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_linux_libcdep.cpp | 554 void *start_addr; in GetTls() local 556 __libc_get_static_tls_bounds(&start_addr, &end_addr); in GetTls() 557 *addr = reinterpret_cast<uptr>(start_addr); in GetTls() 559 reinterpret_cast<uptr>(end_addr) - reinterpret_cast<uptr>(start_addr); in GetTls() 1045 static void CreateAliases(uptr start_addr, uptr alias_size, uptr num_aliases) { in CreateAliases() argument 1047 uptr mapped = MmapSharedNoReserve(start_addr, total_size); in CreateAliases() 1048 CHECK_EQ(mapped, start_addr); in CreateAliases() 1051 uptr alias_addr = start_addr + i * alias_size; in CreateAliases() 1052 CHECK_EQ(MremapCreateAlias(start_addr, alias_addr, alias_size), alias_addr); in CreateAliases()
|
| /freebsd/sys/riscv/riscv/ |
| H A D | mp_machdep.c | 330 vm_paddr_t start_addr; in cpu_init_fdt() local 378 start_addr = pmap_kextract((vm_offset_t)mpentry); in cpu_init_fdt() 379 error = sbi_hsm_hart_start(hart, start_addr, 0); in cpu_init_fdt()
|
| H A D | sbi.c | 263 sbi_hsm_hart_start(u_long hart, u_long start_addr, u_long priv) in sbi_hsm_hart_start() argument 267 ret = SBI_CALL3(SBI_EXT_ID_HSM, SBI_HSM_HART_START, hart, start_addr, in sbi_hsm_hart_start()
|
| /freebsd/sys/contrib/dev/rtw89/ |
| H A D | ser.c | 578 u8 sel, u32 start_addr, u32 len) in ser_mac_mem_dump() argument 589 start_page = start_addr / mem_page_size; in ser_mac_mem_dump() 590 residue = start_addr % mem_page_size; in ser_mac_mem_dump() 613 u32 start_addr = rtwdev->chip->rsvd_ple_ofst; in rtw89_ser_fw_rsvd_ple_dump() local 617 start_addr); in rtw89_ser_fw_rsvd_ple_dump() 618 ser_mac_mem_dump(rtwdev, buf, RTW89_MAC_MEM_SHARED_BUF, start_addr, in rtw89_ser_fw_rsvd_ple_dump()
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | StackFrameRecognizer.cpp | 152 Address start_addr = symbol->GetAddress(); in GetRecognizerForFrame() local 178 if (start_addr != current_addr) in GetRecognizerForFrame()
|
| /freebsd/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ |
| H A D | ittnotify_static.h | 779 (void *start_addr, void *end_addr, const char *path), 780 (ITT_FORMAT start_addr, end_addr, path), module_loadA, 783 (void *start_addr, void *end_addr, const wchar_t *path), 784 (ITT_FORMAT start_addr, end_addr, path), module_loadW, 788 (void *start_addr, void *end_addr, const char *path), 789 (ITT_FORMAT start_addr, end_addr, path), module_load, 792 ITT_STUBV(ITTAPI, void, module_unload, (void *start_addr), 793 (ITT_FORMAT start_addr), module_unload, __itt_group_module, "%p")
|
| /freebsd/sys/compat/linuxkpi/common/src/ |
| H A D | linux_page.c | 575 lkpi_remap_pfn_range(struct vm_area_struct *vma, unsigned long start_addr, in lkpi_remap_pfn_range() argument 585 for (addr = start_addr, pfn = start_pfn; in lkpi_remap_pfn_range() 586 addr < start_addr + size; in lkpi_remap_pfn_range() 609 zap_vma_ptes(vma, start_addr, in lkpi_remap_pfn_range()
|
| /freebsd/sys/dev/cfe/ |
| H A D | cfe_api_int.h | 118 cfe_xuint_t start_addr; /* CPU start address */ member
|
| /freebsd/sys/dev/qat/include/common/ |
| H A D | icp_qat_uclo.h | 168 unsigned int start_addr; member 233 unsigned int start_addr; member
|
| /freebsd/contrib/ofed/libmlx5/ |
| H A D | wqe.h | 129 uint64_t start_addr; member
|
| /freebsd/contrib/jemalloc/bin/ |
| H A D | jeprof.in | 1338 my $start_addr = $symbol_table->{$routine}->[0]; 1341 my $length = hex(AddressSub($end_addr, $start_addr)); 1342 my $addr = AddressAdd($start_addr, $offset); 1347 $start_addr, $end_addr, $total); 1363 my $start_addr = shift; 1368 "--start-address=0x$start_addr", 1465 my $start_addr = $symbol_table->{$routine}->[0]; 1467 my $length = hex(AddressSub($end_addr, $start_addr)); 1468 my $addr = AddressAdd($start_addr, $offset); 1474 $start_addr, $end_addr, [all …]
|
| /freebsd/contrib/wpa/src/drivers/ |
| H A D | driver_hostap.h | 108 u32 start_addr; member
|
| /freebsd/sys/riscv/include/ |
| H A D | sbi.h | 196 int sbi_hsm_hart_start(u_long hart, u_long start_addr, u_long priv);
|