Searched refs:address (Results 326 - 350 of 753) sorted by relevance

<<11121314151617181920>>

/freebsd-current/contrib/libevent/sample/
H A Ddns-example.c46 debug_ntoa(u32 address) argument
49 u32 a = ntohl(address);
/freebsd-current/sys/i386/acpica/
H A Dacpi_machdep.c93 /* BIOS address 0xffff5 contains the date in the format mm/dd/yy. */
143 probe_table(vm_paddr_t address, const char *sig) argument
148 table = pmap_mapbios(address, sizeof(ACPI_TABLE_HEADER));
155 * Try to map a table at a given physical address previously returned
176 * Return the physical address of the requested table or zero if one
/freebsd-current/cddl/lib/libdtrace/
H A DMakefile146 CFLAGS+= -fsanitize=address -fsanitize=undefined
147 LDFLAGS+= -fsanitize=address -fsanitize=undefined
/freebsd-current/contrib/sendmail/contrib/
H A Dbuildvirtuser46 usernames on the left and the actual address for that username on the
50 Occurrences of $LHS in the right hand side are replaced by the address on
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.h9 // This file is a part of AddressSanitizer, an address sanity checker.
95 AsanChunkView FindHeapChunkByAddress(uptr address);
96 AsanChunkView FindHeapChunkByAllocBeg(uptr address);
124 // be placed at a fixed address. It will be anonymously mmap'd.
/freebsd-current/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeSynthetic.cpp129 llvm::StringRef name, uint64_t address, const ExecutionContext &exe_ctx,
132 ValueObject::CreateValueObjectFromAddress(name, address, exe_ctx, type));
128 CreateValueObjectFromAddress( llvm::StringRef name, uint64_t address, const ExecutionContext &exe_ctx, CompilerType type) argument
H A DTypeFormat.cpp83 Address address(valobj->GetPointerValue());
85 address, (char *)buffer_sp->GetBytes(), max_len, error);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
H A DReportRetriever.cpp42 void *address;
52 t.address = __asan_get_report_address();
112 addr_t address = return_value_sp->GetValueForExpressionPath(".address") local
136 dict->AddIntegerItem("address", address);
164 .Case("wild-jump", "Jump to non-executable address")
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DDecodedThread.cpp22 IntelPTError::IntelPTError(int libipt_error_code, lldb::addr_t address) argument
23 : m_libipt_error_code(libipt_error_code), m_address(address) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp76 Address address = range.GetBaseAddress(); local
79 if (target.ResolveLoadAddress(address.GetCallableLoadAddress(&target),
394 // We found the std::function wrapped callable and we have its address.
401 // We create a ThreadPlan to keep stepping through using the address range
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_libbacktrace.cpp102 CHECK_EQ(addr, first->info.address);
103 CHECK_EQ(addr, last->info.address);
H A Dsanitizer_mac.cpp101 mach_vm_address_t *address,
1160 // xnu cannot provide vm address limit
1167 "Max virtual address must be less than mmap range size.");
1181 "Max virtual address must be less than mmap range size.");
1206 // If the shadow doesn't fit, restrict the address space to make it fit.
1255 mach_vm_address_t address = start_address; local
1265 kr = mach_vm_region_recurse(mach_task_self(), &address, &vmsize, &depth,
1268 // No more regions beyond "address", consider the gap at the end of VM.
1269 address = max_vm_address;
1272 if (max_occupied_addr) *max_occupied_addr = address
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DRegisterContextUnwind.cpp397 // we may be at a bogus address because we jumped through a bogus function
460 UnwindLogMsg("could not find a valid cfa address");
483 UnwindLogMsg("same CFA address as next frame, assuming the unwind is "
535 // Signal dispatch may set the return address of the handler it calls to
689 UnwindLogMsg("same CFA address as next frame, assuming the unwind is "
866 // .ARM.exidx tables have unwind information for this address, else fall back
1346 // ReturnAddress register (e.g. lr on arm), look for the return address
1423 // If this architecture stores the return address in a register (it
1437 // arch_default_ra_regnum is the return address register # in the Full
1562 "return address re
1954 ReadFrameAddress( lldb::RegisterKind row_register_kind, UnwindPlan::Row::FAValue &fa, addr_t &address) argument
[all...]
/freebsd-current/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300eep.h701 extern HAL_BOOL ar9300_calibration_data_read_flash(struct ath_hal *ah, long address, u_int8_t *buffer, int many);
702 extern HAL_BOOL ar9300_calibration_data_read_eeprom(struct ath_hal *ah, long address, u_int8_t *buffer, int many);
703 extern HAL_BOOL ar9300_calibration_data_read_otp(struct ath_hal *ah, long address, u_int8_t *buffer, int many, HAL_BOOL is_wifi);
704 extern HAL_BOOL ar9300_calibration_data_read(struct ath_hal *ah, long address, u_int8_t *buffer, int many);
707 extern HAL_BOOL ar9300_calibration_data_read_array(struct ath_hal *ah, int address, u_int8_t *buffer, int many);
/freebsd-current/contrib/opencsd/decoder/source/ptm/
H A Dtrc_pkt_proc_ptm.cpp515 // extract address value, cycle count and ctxt id.
520 // address is always full fixed 32 bit value
521 uint32_t address = ((uint32_t)m_currPacketData[1]) & 0xFE; local
522 address |= ((uint32_t)m_currPacketData[2]) << 8;
523 address |= ((uint32_t)m_currPacketData[3]) << 16;
524 address |= ((uint32_t)m_currPacketData[4]) << 24;
525 m_curr_packet.UpdateAddress(address,32);
557 m_gotAddrBytes = false; // flag to indicate got all needed address bytes
558 m_numAddrBytes = 0; // number of address bytes so far - in this case header is not part of the address
[all...]
/freebsd-current/sys/dev/iavf/
H A Diavf_type.h61 /* Check whether address is multicast. */
62 #define IAVF_IS_MULTICAST(address) (bool)(((u8 *)(address))[0] & ((u8)0x01))
64 /* Check whether an address is broadcast. */
65 #define IAVF_IS_BROADCAST(address) \
66 ((((u8 *)(address))[0] == ((u8)0xff)) && \
67 (((u8 *)(address))[1] == ((u8)0xff)))
395 __le64 pkt_addr; /* Packet buffer address */
396 __le64 hdr_addr; /* Header buffer address */
422 __le64 pkt_addr; /* Packet buffer address */
[all...]
/freebsd-current/usr.sbin/iscsid/
H A Discsid.c148 resolve_addr(const struct connection *conn, const char *address, argument
156 tofree = arg = checked_strdup(address);
159 fail(conn, "empty address");
160 log_errx(1, "empty address");
164 * IPv6 address in square brackets, perhaps with port.
169 fail(conn, "malformed address");
170 log_errx(1, "malformed address %s", address);
177 fail(conn, "malformed address");
178 log_errx(1, "malformed address
[all...]
/freebsd-current/sys/netinet/
H A Dsctp_output.c1875 switch (ifa->address.sa.sa_family) {
1881 sin = &ifa->address.sin;
1888 /* private address not in scope */
1912 sin6 = &ifa->address.sin6;
1945 switch (ifa->address.sa.sa_family) {
1979 switch (ifa->address.sa.sa_family) {
1986 sin = &ifa->address.sin;
2001 sin6 = &ifa->address.sin6;
2007 /* clear embedded scope in the address */
2061 if ((sctp_ifap->address
[all...]
H A Dsctp_sysctl.c151 switch (sctp_ifa->address.sa.sa_family) {
167 switch (laddr->ifa->address.sa.sa_family) {
269 switch (sctp_ifa->address.sa.sa_family) {
275 sin = &sctp_ifa->address.sin;
296 sin6 = &sctp_ifa->address.sin6;
321 memcpy((void *)&xladdr.address, (const void *)&sctp_ifa->address, sizeof(union sctp_sockstore));
339 memcpy((void *)&xladdr.address, (const void *)&laddr->ifa->address, sizeof(union sctp_sockstore));
523 xraddr.address
[all...]
/freebsd-current/sys/i386/i386/
H A Ddb_disasm.c54 #define E 1 /* general effective address */
55 #define Eind 2 /* indirect address (jump, call) */
56 #define Ew 3 /* address, word size */
57 #define Eb 4 /* address, byte size */
77 #define O 25 /* direct address */
87 #define El 35 /* address, long size */
936 * Read address at location and return updated location.
1060 struct i_addr address; local
1072 * Normal address modes.
1074 loc = db_read_address(loc, short_addr, regmodrm, &address);
1164 struct i_addr address; local
[all...]
/freebsd-current/sys/dev/ciss/
H A Dciss.c835 * Note that "simple" adapters can only address within a 32-bit
1095 cc->header.address = sc->ciss_controllers[i];
1324 * Get a request, allocate storage for the address list.
1343 cc->header.address.physical.mode = CISS_HDR_ADDRESS_MODE_PERIPHERAL;
1344 cc->header.address.physical.bus = 0;
1345 cc->header.address.physical.target = 0;
1616 * The mode field of the physical address is likely set to have
1666 cc->header.address = ld->cl_address;
1726 cc->header.address = *ld->cl_controller; /* target controller */
1822 cc->header.address
[all...]
/freebsd-current/sys/dev/drm2/
H A Ddrm_bufs.c45 * address for accessing them. Cleaned up at unload.
180 * address for the mmap() region such that it will not
185 * kernel virtual address.
352 * address if the map's offset isn't already within the
397 * As we're limiting the address to 2^32-1 (or less),
783 buf->address = (void *)(agp_offset + offset);
801 DRM_DEBUG("buffer %d @ %p\n", entry->buf_count, buf->address);
982 buf->address = (void *)((char *)dmah->vaddr + offset);
1004 entry->buf_count, buf->address);
1146 buf->address
1600 vm_offset_t address; local
[all...]
/freebsd-current/usr.sbin/bluetooth/hccontrol/
H A Dle.c849 if (!bt_aton(optarg, &cp.address)) {
855 memcpy(&cp.address, he->h_addr,
856 sizeof(cp.address));
908 if (!bt_aton(optarg, &cp.address)) {
914 memcpy(&cp.address, he->h_addr,
915 sizeof(cp.address));
963 /* Default to public peer address */
966 /* Own address type public */
1073 hci_bdaddr2str(&conn_event->address));
1331 "[-t public|random] -a address\
[all...]
/freebsd-current/contrib/llvm-project/libunwind/src/
H A DUnwindRegistersSave.S35 # + return address +
56 movl %edx, 40(%eax) # store return address as eip
104 movq TMP,128(PTR) # store return address as rip
175 # Store return address to pc
258 # Store return address to pc
314 lwz 4, 0(4) // Get the first instruction at the return address.
573 lwz 4, 0(4) // Get the instruction at the return address.
747 str x30, [x0, #0x100] // store return address as pc
805 str r3, [r0, #16] @ store return address as pc
817 str lr, [r0, #60] @ store return address a
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp68 address.emplace();
69 if (option_arg.getAsInteger(0, *address)) {
70 address.reset();
71 error.SetErrorStringWithFormat("invalid address argument '%s'",
93 address.reset();
103 std::optional<lldb::addr_t> address; member in class:CommandObjectFrameDiagnose::CommandOptions
111 "location used to get to a register or address",
142 if (m_options.address) {
145 "`frame diagnose --address` is incompatible with other arguments.");
148 valobj_sp = frame_sp->GuessValueForAddress(*m_options.address);
[all...]

Completed in 491 milliseconds

<<11121314151617181920>>