/freebsd/tools/tools/ath/common/ |
H A D | dumpregs.h | 63 #define _DEFREG(_addr, _name, _type) \ argument 64 { .addr = _addr, .name = _name, .type = _type } 65 #define _DEFREGx(_addr, _name, _type, _srevmin, _srevmax) \ argument 66 { .addr = _addr, .name = _name, .type = _type, \ 68 #define _DEFREGfmt(_addr, _name, _type, _fmt) \ argument 69 { .addr = _addr, .name = _name, .type = _type, .bits = _fmt } 70 #define DEFVOID(_addr, _name) _DEFREG(_addr, _name, 0) argument 71 #define DEFVOIDx(_addr, _name, _smin, _smax) \ argument 72 __DEFREGx(_addr, _name, _smin, _smax, 0) 73 #define DEFVOIDfmt(_addr, _name, _fmt) \ argument [all …]
|
/freebsd/contrib/wpa/src/crypto/ |
H A D | sha1.c | 31 const u8 *_addr[6]; in hmac_sha1_vector() local 68 _addr[0] = k_pad; in hmac_sha1_vector() 71 _addr[i + 1] = addr[i]; in hmac_sha1_vector() 74 if (sha1_vector(1 + num_elem, _addr, _len, mac)) in hmac_sha1_vector() 84 _addr[0] = k_pad; in hmac_sha1_vector() 86 _addr[1] = mac; in hmac_sha1_vector() 88 ret = sha1_vector(2, _addr, _len, mac); in hmac_sha1_vector()
|
H A D | sha512.c | 31 const u8 *_addr[HMAC_VECTOR_MAX_ELEM + 1]; in hmac_sha512_vector() local 67 _addr[0] = k_pad; in hmac_sha512_vector() 70 _addr[i + 1] = addr[i]; in hmac_sha512_vector() 73 if (sha512_vector(1 + num_elem, _addr, _len, mac) < 0) in hmac_sha512_vector() 83 _addr[0] = k_pad; in hmac_sha512_vector() 85 _addr[1] = mac; in hmac_sha512_vector() 87 return sha512_vector(2, _addr, _len, mac); in hmac_sha512_vector()
|
H A D | sha384.c | 31 const u8 *_addr[HMAC_VECTOR_MAX_ELEM + 1]; in hmac_sha384_vector() local 67 _addr[0] = k_pad; in hmac_sha384_vector() 70 _addr[i + 1] = addr[i]; in hmac_sha384_vector() 73 if (sha384_vector(1 + num_elem, _addr, _len, mac) < 0) in hmac_sha384_vector() 83 _addr[0] = k_pad; in hmac_sha384_vector() 85 _addr[1] = mac; in hmac_sha384_vector() 87 return sha384_vector(2, _addr, _len, mac); in hmac_sha384_vector()
|
H A D | md5.c | 31 const u8 *_addr[6]; in hmac_md5_vector() local 69 _addr[0] = k_pad; in hmac_md5_vector() 72 _addr[i + 1] = addr[i]; in hmac_md5_vector() 75 if (md5_vector(1 + num_elem, _addr, _len, mac)) in hmac_md5_vector() 85 _addr[0] = k_pad; in hmac_md5_vector() 87 _addr[1] = mac; in hmac_md5_vector() 89 res = md5_vector(2, _addr, _len, mac); in hmac_md5_vector()
|
H A D | sha256.c | 31 const u8 *_addr[HMAC_VECTOR_MAX_ELEM + 1]; in hmac_sha256_vector() local 68 _addr[0] = k_pad; in hmac_sha256_vector() 71 _addr[i + 1] = addr[i]; in hmac_sha256_vector() 74 ret = sha256_vector(1 + num_elem, _addr, _len, mac); in hmac_sha256_vector() 85 _addr[0] = k_pad; in hmac_sha256_vector() 87 _addr[1] = mac; in hmac_sha256_vector() 90 ret = sha256_vector(2, _addr, _len, mac); in hmac_sha256_vector()
|
H A D | aes-siv.c | 124 const u8 *_addr[6]; in aes_siv_encrypt() local 131 if (num_elem > ARRAY_SIZE(_addr) - 1 || in aes_siv_encrypt() 140 _addr[i] = addr[i]; in aes_siv_encrypt() 143 _addr[num_elem] = pw; in aes_siv_encrypt() 146 if (aes_s2v(k1, key_len, num_elem + 1, _addr, _len, v)) in aes_siv_encrypt() 167 const u8 *_addr[6]; in aes_siv_decrypt() local 176 if (iv_c_len < AES_BLOCK_SIZE || num_elem > ARRAY_SIZE(_addr) - 1 || in aes_siv_decrypt() 185 _addr[i] = addr[i]; in aes_siv_decrypt() 188 _addr[num_elem] = out; in aes_siv_decrypt() 201 ret = aes_s2v(k1, key_len, num_elem + 1, _addr, _len, check); in aes_siv_decrypt()
|
/freebsd/tools/test/netfibs/ |
H A D | forwarding.sh | 208 local _addr _rc 209 _addr="$1" 211 ping6 -n -c1 ${_addr} > /dev/null 2>&1 215 *) print_debug "cannot ping6 ${_addr}, rc=${_rc}" 268 local _case _addr i rc _msg _keyword _fibs 270 _addr="$2" 276 print_debug "Sending control msg #${i} to peer ${_addr}" 278 nc -6 -w 1 ${_addr} ${CTRLPORT}` 294 *) die "Got invalid keyword from ${_addr} in control message:" \ 300 "control message from ${_addr}: ${_msg}" [all …]
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | iosys-map.h | 112 #define _iosys_map_readq(_addr) readq(_addr) argument 113 #define _iosys_map_writeq(_val, _addr) writeq(_val, _addr) argument 115 #define _iosys_map_readq(_addr) ({ \ argument 117 memcpy_fromio(&val, _addr, sizeof(uint64_t)); \ 120 #define _iosys_map_writeq(_val, _addr) \ argument 121 memcpy_toio(_addr, &(_val), sizeof(uint64_t))
|
H A D | iopoll.h | 62 #define readx_poll_timeout(_pollfp, _addr, _var, _cond, _us, _to) \ argument 63 read_poll_timeout(_pollfp, _var, _cond, _us, _to, false, _addr)
|
H A D | netdevice.h | 319 #define netdev_hw_addr_list_for_each(_addr, _list) \ argument 320 list_for_each_entry((_addr), &(_list)->addr_list, addr_list)
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | UnwindCursor.hpp | 240 : _addressSpace(addressSpace), _addr(addr) {} in UnwindSectionHeader() 243 return _addressSpace.get32(_addr + in version() 247 return _addressSpace.get32(_addr + in commonEncodingsArraySectionOffset() 252 return _addressSpace.get32(_addr + offsetof(unwind_info_section_header, in commonEncodingsArrayCount() 256 return _addressSpace.get32(_addr + offsetof(unwind_info_section_header, in personalityArraySectionOffset() 261 _addr + offsetof(unwind_info_section_header, personalityArrayCount)); in personalityArrayCount() 265 _addr + offsetof(unwind_info_section_header, indexSectionOffset)); in indexSectionOffset() 269 _addr + offsetof(unwind_info_section_header, indexCount)); in indexCount() 274 typename A::pint_t _addr; member in libunwind::UnwindSectionHeader 280 : _addressSpace(addressSpace), _addr(addr) {} in UnwindSectionIndexArray() [all …]
|
/freebsd/sys/contrib/dev/rtw89/ |
H A D | phy.h | 751 #define RTW89_DECL_RFK_WRF(_path, _addr, _mask, _data) \ 754 .addr = _addr, \ 758 #define RTW89_DECL_RFK_WM(_addr, _mask, _data) \ 760 .addr = _addr, \ 764 #define RTW89_DECL_RFK_WS(_addr, _mask) \ 766 .addr = _addr, \ 769 #define RTW89_DECL_RFK_WC(_addr, _mask) \ 771 .addr = _addr, \ 461 RTW89_DECL_RFK_WRF(_path,_addr,_mask,_data) global() argument 468 RTW89_DECL_RFK_WM(_addr,_mask,_data) global() argument 474 RTW89_DECL_RFK_WS(_addr,_mask) global() argument 479 RTW89_DECL_RFK_WC(_addr,_mask) global() argument
|
/freebsd/sys/contrib/ncsw/Peripherals/FM/MAC/ |
H A D | fman_crc32.c | 103 uint32_t get_mac_addr_crc(uint64_t _addr) in get_mac_addr_crc() argument 112 data = (uint8_t)(_addr >> ((5-i)*8)); in get_mac_addr_crc()
|
H A D | fman_crc32.h | 40 uint32_t get_mac_addr_crc(uint64_t _addr);
|
/freebsd/sys/sys/ |
H A D | ptrace.h | 217 int ptrace_set_pc(struct thread *_td, unsigned long _addr); 222 int cpu_ptrace(struct thread *_td, int _req, void *_addr, int _data); 268 int ptrace(int _request, pid_t _pid, caddr_t _addr, int _data);
|
/freebsd/sys/netinet/libalias/ |
H A D | alias.h | 86 void LibAliasSetAddress(struct libalias *, struct in_addr _addr); 102 struct in_addr _addr, unsigned short _port);
|
/freebsd/sys/dev/rtwn/pci/ |
H A D | rtwn_pci_var.h | 132 #define rtwn_pci_setup_tx_desc(_pc, _desc, _addr) \ argument 133 (((_pc)->pc_setup_tx_desc)((_pc), (_desc), (_addr)))
|
/freebsd/sys/compat/linux/ |
H A D | linux_siginfo.h | 195 l_uintptr_t _addr; /* Faulting insn/memory ref. */ member 229 #define lsi_addr _sifields._sigfault._addr
|
/freebsd/sys/dev/ice/ |
H A D | ice_bitops.h | 386 #define ice_for_each_set_bit(_bitpos, _addr, _maxlen) \ argument 387 for ((_bitpos) = ice_find_first_bit((_addr), (_maxlen)); \ 389 (_bitpos) = ice_find_next_bit((_addr), (_maxlen), (_bitpos) + 1))
|
/freebsd/sys/dev/ofw/ |
H A D | ofw_if.m | 316 * @param _addr Requested memory location (NULL for first available) 322 void *_addr; 330 * @param _addr Memory location 335 void *_addr;
|
/freebsd/sys/contrib/ncsw/inc/flib/common/ |
H A D | general.h | 42 extern uint32_t get_mac_addr_crc(uint64_t _addr);
|
/freebsd/tests/atf_python/sys/net/ |
H A D | vnet.py | 107 def setup_addr(self, _addr: str): 108 addr = ipaddress.ip_interface(_addr) 121 def delete_addr(self, _addr: str): 122 addr = ipaddress.ip_address(_addr)
|
/freebsd/sys/dev/iscsi/ |
H A D | icl_conn_if.m | 65 const void *_addr; 83 void *_addr;
|
/freebsd/sys/dev/sfxge/common/ |
H A D | efx_tx.c | 745 #define EFX_TX_DESC(_etp, _addr, _size, _eop, _added) \ argument 755 unsigned int, id, efsys_dma_addr_t, (_addr), \ 762 (uint32_t)((_addr) & 0xffffffff), \ 764 (uint32_t)((_addr) >> 32)); \
|