Home
last modified time | relevance | path

Searched refs:addr_type (Results 1 – 16 of 16) sorted by relevance

/openbsd-src/sys/dev/
H A Dipmi.h105 int addr_type; member
111 int addr_type; member
117 int addr_type; member
/openbsd-src/sys/sys/
H A Dcdio.h27 u_int addr_type:4; member
30 u_int addr_type:4; member
54 u_int addr_type:4; member
57 u_int addr_type:4; member
88 u_int addr_type:4; member
91 u_int addr_type:4; member
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcpp.cpp235 AddressType addr_type; in LibStdcppStringSummaryProvider() local
237 valobj.GetAddressOf(scalar_is_load_addr, &addr_type); in LibStdcppStringSummaryProvider()
239 switch (addr_type) { in LibStdcppStringSummaryProvider()
284 AddressType addr_type; in LibStdcppWStringSummaryProvider() local
286 valobj.GetAddressOf(scalar_is_load_addr, &addr_type); in LibStdcppWStringSummaryProvider()
288 switch (addr_type) { in LibStdcppWStringSummaryProvider()
H A DCoroutines.cpp33 AddressType addr_type; in GetCoroFramePtrFromHandle() local
34 lldb::addr_t frame_ptr_addr = ptr_sp->GetPointerValue(&addr_type); in GetCoroFramePtrFromHandle()
37 lldbassert(addr_type == AddressType::eAddressTypeLoad); in GetCoroFramePtrFromHandle()
38 if (addr_type != AddressType::eAddressTypeLoad) in GetCoroFramePtrFromHandle()
/openbsd-src/usr.sbin/pppd/
H A Dcbcp.c260 u_char type, opt_len, delay, addr_type; in cbcp_recvreq() local
289 GETCHAR(addr_type, pckt); in cbcp_recvreq()
385 u_char type, delay, addr_type; in cbcp_recvack() local
400 GETCHAR(addr_type, pckt); in cbcp_recvack()
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBValue.cpp1271 AddressType addr_type; in GetLoadAddress() local
1272 value = value_sp->GetAddressOf(scalar_is_load_address, &addr_type); in GetLoadAddress()
1273 if (addr_type == eAddressTypeFile) { in GetLoadAddress()
1282 } else if (addr_type == eAddressTypeHost || in GetLoadAddress()
1283 addr_type == eAddressTypeInvalid) in GetLoadAddress()
1302 AddressType addr_type; in GetAddress() local
1303 value = value_sp->GetAddressOf(scalar_is_load_address, &addr_type); in GetAddress()
1304 if (addr_type == eAddressTypeFile) { in GetAddress()
1308 } else if (addr_type == eAddressTypeLoad) { in GetAddress()
/openbsd-src/gnu/gcc/gcc/
H A Dtree-ssa-address.c572 tree addr_type = build_pointer_type (type), atype; in create_mem_ref() local
600 tmp = fold_convert (addr_type, in create_mem_ref()
608 fold_build2 (PLUS_EXPR, addr_type, in create_mem_ref()
609 fold_convert (addr_type, parts.base), in create_mem_ref()
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/
H A Delf32-cr16c.c189 unsigned long format, addr_type, code_factor; in cr16c_elf_final_link_relocate() local
209 addr_type = r_type & R_ADDRTYPE; in cr16c_elf_final_link_relocate()
210 code_factor = ((addr_type == R_CODE_ADDR) ? 1 : 0); in cr16c_elf_final_link_relocate()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp927 AddressType addr_type; in DoExecute() local
928 addr = valobj_sp->GetAddressOf(false, &addr_type); in DoExecute()
929 if (addr_type == eAddressTypeLoad) { in DoExecute()
/openbsd-src/gnu/llvm/lldb/examples/summaries/cocoa/
H A Dobjc_runtime.py693 self.types_cache.addr_type = valobj.GetType(
695 self.types_cache.addr_ptr_type = self.types_cache.addr_type.GetPointerType()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp60 typedef typename ELFT::uint addr_type; typedef in __anone025c0e80111::DyldELFObject
113 shdr->sh_addr = static_cast<addr_type>(Addr); in updateSectionAddress()
125 sym->st_value = static_cast<addr_type>(Addr); in updateSymbolAddress()
144 typedef typename ELFT::uint addr_type; in createRTDyldELFObject() typedef
170 shdr->sh_addr = static_cast<addr_type>(SecLoadAddr); in createRTDyldELFObject()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DValueObject.cpp717 AddressType addr_type; in GetPointeeData() local
718 lldb::addr_t addr = is_pointer_type ? GetPointerValue(&addr_type) in GetPointeeData()
719 : GetAddressOf(true, &addr_type); in GetPointeeData()
721 switch (addr_type) { in GetPointeeData()
/openbsd-src/usr.sbin/bgpd/
H A Dparse.y144 uint8_t addr_type; member
1267 curflow->addr_type = FLOWSPEC_TYPE_SOURCE;
1273 curflow->addr_type = FLOWSPEC_TYPE_DEST;
5701 if (curflow->components[curflow->addr_type] != NULL) { in push_prefix()
5737 curflow->complen[curflow->addr_type] = complen; in push_binop()
5738 curflow->components[curflow->addr_type] = comp; in push_binop()
/openbsd-src/sys/arch/sparc64/dev/
H A Dvnet.c66 uint8_t addr_type; member
1006 ai.addr_type = VNET_ADDR_ETHERMAC; in vnet_send_attr_info()
/openbsd-src/sys/scsi/
H A Dcd.c917 cte->addr_type = CD_LBA_FORMAT; in cdioctl()
/openbsd-src/gnu/gcc/gcc/config/i386/
H A Di386.c4449 tree addr_type = build_pointer_type (piece_type); in ix86_gimplify_va_arg() local
4464 src_addr = fold_convert (addr_type, src_addr); in ix86_gimplify_va_arg()
4465 src_addr = fold (build2 (PLUS_EXPR, addr_type, src_addr, in ix86_gimplify_va_arg()
4469 dest_addr = fold_convert (addr_type, addr); in ix86_gimplify_va_arg()
4470 dest_addr = fold (build2 (PLUS_EXPR, addr_type, dest_addr, in ix86_gimplify_va_arg()