Symbol: _a
crypto/krb5/src/lib/gssapi/krb5/prf.c
31
#define MIN(_a,_b) ((_a)<(_b)?(_a):(_b))
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
262
#define MAX(_a,_b) ((_a)<(_b)?(_b):(_a))
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
265
#define MIN(_a,_b) ((_a)<(_b)?(_a):(_b))
crypto/openssh/ssh-keygen.c
1594
cert_ext_cmp(const void *_a, const void *_b)
crypto/openssh/ssh-keygen.c
1596
const struct cert_ext *a = (const struct cert_ext *)_a;
sbin/ifconfig/ifconfig_netlink.c
301
cmp_iface(const void *_a, const void *_b)
sbin/ifconfig/ifconfig_netlink.c
303
const struct iface *a = *((const void * const *)_a);
sbin/ifconfig/ifconfig_netlink.c
310
cmp_ifaddr(const void *_a, const void *_b)
sbin/ifconfig/ifconfig_netlink.c
312
const struct ifa *a = *((const void * const *)_a);
sbin/ipf/common/ipf.h
104
#define FORMAT_IF(_a) (_a != NULL ? _a : "(null)")
sbin/ipfw/ipfw2.c
5756
compare_ntlv(const void *_a, const void *_b)
sbin/ipfw/ipfw2.c
5760
a = (const ipfw_obj_ntlv *)_a;
sbin/ipfw/tables.c
2041
compare_values(const void *_a, const void *_b)
sbin/ipfw/tables.c
2045
a = (const ipfw_table_value *)_a;
sys/arm/ti/cpsw/if_cpswreg.h
103
#define ALE_VLAN(_a) ((_a[1] >> 16) & 0xfff)
sys/arm/ti/cpsw/if_cpswreg.h
104
#define ALE_VLAN_UNREGFLOOD(_a) ((_a[0] >> 8) & 7)
sys/arm/ti/cpsw/if_cpswreg.h
105
#define ALE_VLAN_REGFLOOD(_a) ((_a[0] >> 16) & 7)
sys/arm/ti/cpsw/if_cpswreg.h
106
#define ALE_VLAN_UNTAG(_a) ((_a[0] >> 24) & 7)
sys/arm/ti/cpsw/if_cpswreg.h
107
#define ALE_VLAN_MEMBERS(_a) (_a[0] & 7)
sys/arm/ti/cpsw/if_cpswreg.h
96
#define ALE_MCAST(_a) ((_a[1] >> 8) & 1)
sys/arm/ti/cpsw/if_cpswreg.h
98
#define ALE_PORTS(_a) ((_a[2] >> 2) & 7)
sys/arm/ti/cpsw/if_cpswreg.h
99
#define ALE_TYPE(_a) ((_a[1] >> 28) & 3)
sys/arm/ti/ti_spireg.h
92
#define MCSPI_XFERLEVEL_AFL(_a) (((_a) >> 8) & 0xff)
sys/arm/ti/ti_spireg.h
93
#define MCSPI_XFERLEVEL_AEL(_a) (((_a) >> 0) & 0xff)
sys/arm64/qoriq/qoriq_therm.c
176
#define _SOC(_n, _a) { _n, _a, nitems(_a) }
sys/compat/linuxkpi/common/include/linux/overflow.h
193
typeof(a) _a = a; \
sys/compat/linuxkpi/common/include/linux/overflow.h
196
unsigned long long _a_full = _a; \
sys/compat/linuxkpi/common/include/linux/overflow.h
200
(_to_shift != _s || *_d < 0 || _a < 0 || \
sys/compat/linuxkpi/common/include/linux/overflow.h
201
(*_d >> _to_shift) != _a); \
sys/dev/ath/ah_osdep.h
70
#define OS_MEMZERO(_a, _n) bzero((_a), (_n))
sys/dev/ath/ah_osdep.h
72
#define OS_MEMCMP(_a, _b, _l) memcmp((_a), (_b), (_l))
sys/dev/ath/ah_osdep.h
74
#define abs(_a) __builtin_abs(_a)
sys/dev/ath/ath_hal/ah_internal.h
492
#define ath_hal_eepromDiag(_ah, _request, _a, _asize, _r, _rsize) \
sys/dev/ath/ath_hal/ah_internal.h
493
AH_PRIVATE(_ah)->ah_eepromDiag(_ah, _request, _a, _asize, _r, _rsize)
sys/dev/ath/ath_hal/ah_internal.h
587
#define OS_REG_RMW(_a, _r, _set, _clr) \
sys/dev/ath/ath_hal/ah_internal.h
588
OS_REG_WRITE(_a, _r, (OS_REG_READ(_a, _r) & ~(_clr)) | (_set))
sys/dev/ath/ath_hal/ah_internal.h
589
#define OS_REG_RMW_FIELD(_a, _r, _f, _v) \
sys/dev/ath/ath_hal/ah_internal.h
590
OS_REG_WRITE(_a, _r, \
sys/dev/ath/ath_hal/ah_internal.h
591
(OS_REG_READ(_a, _r) &~ (_f)) | (((_v) << _f##_S) & (_f)))
sys/dev/ath/ath_hal/ah_internal.h
592
#define OS_REG_SET_BIT(_a, _r, _f) \
sys/dev/ath/ath_hal/ah_internal.h
593
OS_REG_WRITE(_a, _r, OS_REG_READ(_a, _r) | (_f))
sys/dev/ath/ath_hal/ah_internal.h
594
#define OS_REG_CLR_BIT(_a, _r, _f) \
sys/dev/ath/ath_hal/ah_internal.h
595
OS_REG_WRITE(_a, _r, OS_REG_READ(_a, _r) &~ (_f))
sys/dev/ath/ath_hal/ah_internal.h
596
#define OS_REG_IS_BIT_SET(_a, _r, _f) \
sys/dev/ath/ath_hal/ah_internal.h
597
((OS_REG_READ(_a, _r) & (_f)) != 0)
sys/dev/ath/ath_hal/ah_internal.h
598
#define OS_REG_RMW_FIELD_ALT(_a, _r, _f, _v) \
sys/dev/ath/ath_hal/ah_internal.h
599
OS_REG_WRITE(_a, _r, \
sys/dev/ath/ath_hal/ah_internal.h
600
(OS_REG_READ(_a, _r) &~(_f<<_f##_S)) | \
sys/dev/ath/ath_hal/ah_internal.h
602
#define OS_REG_READ_FIELD(_a, _r, _f) \
sys/dev/ath/ath_hal/ah_internal.h
603
(((OS_REG_READ(_a, _r) & _f) >> _f##_S))
sys/dev/ath/ath_hal/ah_internal.h
604
#define OS_REG_READ_FIELD_ALT(_a, _r, _f) \
sys/dev/ath/ath_hal/ah_internal.h
605
((OS_REG_READ(_a, _r) >> (_f##_S))&(_f))
sys/dev/ath/ath_hal/ah_internal.h
608
#define OS_A_REG_RMW_FIELD(_a, _r, _f, _v) \
sys/dev/ath/ath_hal/ah_internal.h
609
do { OS_REG_WRITE(_a, _r, (OS_REG_READ(_a, _r) &~ (_f)) | \
sys/dev/ath/ath_hal/ah_internal.h
611
#define OS_A_REG_WRITE(_a, _r, _v) \
sys/dev/ath/ath_hal/ah_internal.h
612
do { OS_REG_WRITE(_a, _r, _v); OS_DELAY(100); } while (0)
sys/dev/ath/ath_hal/ah_regdomain/ah_rd_domains.h
31
#define W0(_a) \
sys/dev/ath/ath_hal/ah_regdomain/ah_rd_domains.h
32
(((_a) >= 0 && (_a) < 64 ? (((uint64_t) 1)<<(_a)) : (uint64_t) 0))
sys/dev/ath/ath_hal/ah_regdomain/ah_rd_domains.h
33
#define W1(_a) \
sys/dev/ath/ath_hal/ah_regdomain/ah_rd_domains.h
34
(((_a) > 63 && (_a) < 128 ? (((uint64_t) 1)<<((_a)-64)) : (uint64_t) 0))
sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
2417
#define N(_a) (sizeof(_a) / sizeof(_a[0]))
sys/dev/ath/if_ath_tx.h
73
#define SEQNO(_a) ((_a) >> IEEE80211_SEQ_SEQ_SHIFT)
sys/dev/bxe/ecore_sp.h
140
#define ECORE_MEMCMP(_a, _b, _s) memcmp(_a, _b, _s)
sys/dev/bxe/ecore_sp.h
141
#define ECORE_MEMCPY(_a, _b, _s) memcpy(_a, _b, _s)
sys/dev/bxe/ecore_sp.h
142
#define ECORE_MEMSET(_a, _c, _s) memset(_a, _c, _s)
sys/dev/bxe/ecore_sp.h
220
#define ecore_sp_post(_sc, _a, _b, _c, _d) \
sys/dev/bxe/ecore_sp.h
221
bxe_sp_post(_sc, _a, _b, U64_HI(_c), U64_LO(_c), _d)
sys/dev/cxgbe/cudbg/cudbg_entity.h
104
#define ARRAY_SIZE(_a) (sizeof((_a)) / sizeof((_a)[0]))
sys/dev/cxgbe/cudbg/cudbg_lib.h
32
#define min_t(type, _a, _b) (((type)(_a) < (type)(_b)) ? (type)(_a) : (type)(_b))
sys/dev/dialog/da9063/da9063_iic.c
46
#define DA9063_IIC_PAGE(_a) ((_a) >> DA9063_IIC_PAGE_SHIFT)
sys/dev/dialog/da9063/da9063_iic.c
47
#define DA9063_IIC_PAGE_OFF(_a) ((_a) & (DA9063_IIC_PAGE_SIZE - 1))
sys/dev/ice/ice_defs.h
53
#define MIN_T(_t, _a, _b) min((_t)(_a), (_t)(_b))
sys/dev/ixgbe/ixgbe.h
135
#define IXGBE_TX_CLEANUP_THRESHOLD(_a) ((_a)->num_tx_desc / 8)
sys/dev/ixgbe/ixgbe.h
136
#define IXGBE_TX_OP_THRESHOLD(_a) ((_a)->num_tx_desc / 32)
sys/dev/ixgbe/ixgbe_fdir.h
50
#define ixgbe_init_fdir(_a)
sys/dev/ixgbe/ixgbe_rss.h
44
#define rss_getcpu(_a) 0
sys/dev/ixgbe/ixgbe_rss.h
46
#define rss_get_indirection_to_bucket(_a) 0
sys/dev/ixgbe/ixgbe_rss.h
47
#define rss_hash2bucket(_a,_b,_c) -1
sys/dev/ixgbe/ixgbe_sriov.h
86
#define ixgbe_add_vf(_a,_b,_c)
sys/dev/ixgbe/ixgbe_sriov.h
87
#define ixgbe_init_iov(_a,_b,_c)
sys/dev/ixgbe/ixgbe_sriov.h
88
#define ixgbe_uninit_iov(_a)
sys/dev/ixgbe/ixgbe_sriov.h
89
#define ixgbe_initialize_iov(_a)
sys/dev/ixgbe/ixgbe_sriov.h
90
#define ixgbe_recalculate_max_frame(_a)
sys/dev/ixgbe/ixgbe_sriov.h
91
#define ixgbe_ping_all_vfs(_a)
sys/dev/ixgbe/ixgbe_sriov.h
92
#define ixgbe_pci_iov_detach(_a) 0
sys/dev/ixgbe/ixgbe_sriov.h
93
#define ixgbe_define_iov_schemas(_a,_b)
sys/dev/ixgbe/ixgbe_sriov.h
94
#define ixgbe_align_all_queue_indices(_a)
sys/dev/ixgbe/ixgbe_sriov.h
95
#define ixgbe_vf_que_index(_a, _b, _c) (_c)
sys/dev/ixgbe/ixgbe_sriov.h
96
#define ixgbe_get_mtqc(_a) IXGBE_MTQC_64Q_1PB
sys/dev/ixgbe/ixgbe_sriov.h
97
#define ixgbe_get_mrqc(_a) IXGBE_MRQC_RSSEN
sys/dev/ixgbe/ixgbe_type_e610.h
91
#define MIN_T(_t, _a, _b) min((_t)(_a), (_t)(_b))
sys/dev/netmap/netmap_kern.h
1457
#define NM_CHECK_ADDR_LEN(_na, _a, _l) do { \
sys/dev/netmap/netmap_kern.h
1458
if (_a == NETMAP_BUF_BASE(_na) || _l > NETMAP_BUF_SIZE(_na)) { \
sys/dev/netmap/netmap_kern.h
1465
#define NM_CHECK_ADDR_LEN(_na, _a, _l) do { \
sys/dev/sfxge/common/efx_hash.c
102
_a ^= _c; \
sys/dev/sfxge/common/efx_hash.c
103
_a -= EFX_HASH_ROTATE(_c, 4); \
sys/dev/sfxge/common/efx_hash.c
104
_b ^= _a; \
sys/dev/sfxge/common/efx_hash.c
105
_b -= EFX_HASH_ROTATE(_a, 14); \
sys/dev/sfxge/common/efx_hash.c
68
#define EFX_HASH_MIX(_a, _b, _c) \
sys/dev/sfxge/common/efx_hash.c
70
_a -= _c; \
sys/dev/sfxge/common/efx_hash.c
71
_a ^= EFX_HASH_ROTATE(_c, 4); \
sys/dev/sfxge/common/efx_hash.c
73
_b -= _a; \
sys/dev/sfxge/common/efx_hash.c
74
_b ^= EFX_HASH_ROTATE(_a, 6); \
sys/dev/sfxge/common/efx_hash.c
75
_a += _c; \
sys/dev/sfxge/common/efx_hash.c
78
_b += _a; \
sys/dev/sfxge/common/efx_hash.c
79
_a -= _c; \
sys/dev/sfxge/common/efx_hash.c
80
_a ^= EFX_HASH_ROTATE(_c, 16); \
sys/dev/sfxge/common/efx_hash.c
82
_b -= _a; \
sys/dev/sfxge/common/efx_hash.c
83
_b ^= EFX_HASH_ROTATE(_a, 19); \
sys/dev/sfxge/common/efx_hash.c
84
_a += _c; \
sys/dev/sfxge/common/efx_hash.c
87
_b += _a; \
sys/dev/sfxge/common/efx_hash.c
92
#define EFX_HASH_FINALISE(_a, _b, _c) \
sys/dev/sfxge/common/efx_hash.c
96
_a ^= _c; \
sys/dev/sfxge/common/efx_hash.c
97
_a -= EFX_HASH_ROTATE(_c, 11); \
sys/dev/sfxge/common/efx_hash.c
98
_b ^= _a; \
sys/dev/sfxge/common/efx_hash.c
99
_b -= EFX_HASH_ROTATE(_a, 25); \
sys/net80211/ieee80211.h
47
#define IEEE80211_IS_MULTICAST(_a) (*(_a) & 0x01)
sys/net80211/ieee80211_crypto_ccmp.c
691
#define CCMP_DECRYPT(_i, _b, _b0, _pos, _a, _len) do { \
sys/net80211/ieee80211_crypto_ccmp.c
698
xor_block(_a, _pos, _len); \
sys/net80211/ieee80211_crypto_ccmp.c
699
rijndael_encrypt(&ctx->cc_aes, _a, _a); \
sys/net80211/ieee80211_regdomain.c
188
#define swap(_a, _b, _size) { \
sys/net80211/ieee80211_regdomain.c
192
uint8_t tmp = *_a; \
sys/net80211/ieee80211_regdomain.c
193
*_a++ = *s; \
sys/net80211/ieee80211_regdomain.c
196
_a -= _size; \
sys/net80211/ieee80211_scan_sta.c
871
#define PREFER(_a,_b,_what) do { \
sys/net80211/ieee80211_scan_sta.c
872
if (((_a) ^ (_b)) & (_what)) \
sys/net80211/ieee80211_scan_sta.c
873
return ((_a) & (_what)) ? 1 : -1; \
sys/netpfil/ipfilter/netinet/fil.c
4348
#define IPF_IFNAME_VALID(_a) (_a != -1)
sys/netpfil/ipfilter/netinet/fil.c
4349
#define IPF_IFNAME_INVALID(_a) (_a == -1)
sys/netpfil/ipfilter/netinet/fil.c
4350
#define IPF_IFNAMES_DIFFERENT(_a) \
sys/netpfil/ipfilter/netinet/fil.c
4351
!((IPF_IFNAME_INVALID(fr1->_a) && \
sys/netpfil/ipfilter/netinet/fil.c
4352
IPF_IFNAME_INVALID(fr2->_a)) || \
sys/netpfil/ipfilter/netinet/fil.c
4353
(IPF_IFNAME_VALID(fr1->_a) && \
sys/netpfil/ipfilter/netinet/fil.c
4354
IPF_IFNAME_VALID(fr2->_a) && \
sys/netpfil/ipfilter/netinet/fil.c
4355
!strcmp(FR_NAME(fr1, _a), FR_NAME(fr2, _a))))
sys/netpfil/ipfilter/netinet/fil.c
4356
#define IPF_FRDEST_DIFFERENT(_a) \
sys/netpfil/ipfilter/netinet/fil.c
4357
(memcmp(&fr1->_a.fd_addr, &fr2->_a.fd_addr, \
sys/netpfil/ipfilter/netinet/fil.c
4359
IPF_IFNAMES_DIFFERENT(_a.fd_name))
sys/netpfil/ipfilter/netinet/ip_compat.h
1210
# define DT1(_n,_a,_b) DTRACE_PROBE1(_n,_a,_b)
sys/netpfil/ipfilter/netinet/ip_compat.h
1211
# define DT2(_n,_a,_b,_c,_d) DTRACE_PROBE2(_n,_a,_b,_c,_d)
sys/netpfil/ipfilter/netinet/ip_compat.h
1212
# define DT3(_n,_a,_b,_c,_d,_e,_f) \
sys/netpfil/ipfilter/netinet/ip_compat.h
1213
DTRACE_PROBE3(_n,_a,_b,_c,_d,_e,_f)
sys/netpfil/ipfilter/netinet/ip_compat.h
1214
# define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) \
sys/netpfil/ipfilter/netinet/ip_compat.h
1215
DTRACE_PROBE4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
sys/netpfil/ipfilter/netinet/ip_compat.h
1216
# define DT5(_n,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j) \
sys/netpfil/ipfilter/netinet/ip_compat.h
1217
DTRACE_PROBE5(_n,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j)
sys/netpfil/ipfilter/netinet/ip_compat.h
1220
# define DT1(_n,_a,_b)
sys/netpfil/ipfilter/netinet/ip_compat.h
1221
# define DT2(_n,_a,_b,_c,_d)
sys/netpfil/ipfilter/netinet/ip_compat.h
1222
# define DT3(_n,_a,_b,_c,_d,_e,_f)
sys/netpfil/ipfilter/netinet/ip_compat.h
1223
# define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
sys/netpfil/ipfilter/netinet/ip_compat.h
1224
# define DT5(_n,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j)
sys/netpfil/ipfilter/netinet/ip_fil.h
791
#define FR_NUM(_a) (sizeof(_a) / sizeof(*_a))
sys/netpfil/ipfilter/netinet/ipf_rb.h
361
#define RBI_WALK(_n, _h, _w, _a) _n##_rb_walktree(_h, _w, _a)
sys/netpfil/ipfw/ip_fw_sockopt.c
2591
compare_opcodes(const void *_a, const void *_b)
sys/netpfil/ipfw/ip_fw_sockopt.c
2595
a = (const struct opcode_obj_rewrite *)_a;
sys/netpfil/ipfw/ip_fw_sockopt.c
2879
compare_sh(const void *_a, const void *_b)
sys/netpfil/ipfw/ip_fw_sockopt.c
2883
a = (const struct ipfw_sopt_handler *)_a;
sys/sys/pmc.h
1050
const struct pmc_op_pmcallocate *_a);
tests/sys/kern/ktrace_test.c
66
__typeof__(actual) _a = actual; \
tests/sys/kern/ktrace_test.c
67
if (_e != _a) \
tests/sys/kern/ktrace_test.c
70
(intmax_t)_a, (intmax_t)_e); \
tests/sys/kern/ptrace_test.c
118
__typeof__(actual) _a = actual; \
tests/sys/kern/ptrace_test.c
119
ATF_REQUIRE_MSG(_e == _a, #actual " (%jd) == " \
tests/sys/kern/ptrace_test.c
120
#expected " (%jd) not met", (intmax_t)_a, (intmax_t)_e); \
tests/sys/kern/ptrace_test.c
92
__typeof__(actual) _a = actual; \
tests/sys/kern/ptrace_test.c
93
if (_e != _a) \
tests/sys/kern/ptrace_test.c
96
(intmax_t)_a, (intmax_t)_e); \
tools/tools/ath/common/ah_osdep.h
48
#define OS_MEMZERO(_a, _size) bzero((_a), (_size))
tools/tools/ath/common/ah_osdep.h
50
#define OS_MACEQU(_a, _b) \
tools/tools/ath/common/ah_osdep.h
51
(bcmp((_a), (_b), IEEE80211_ADDR_LEN) == 0)
tools/tools/ath/common/ah_osdep.h
68
#define __printflike(_a,_b) \
tools/tools/ath/common/ah_osdep.h
69
__attribute__ ((__format__ (__printf__, _a, _b)))
tools/tools/netmap/nmreplay.c
915
nmreplay_main(void *_a)
tools/tools/netmap/nmreplay.c
917
struct pipe_args *a = _a;
tools/tools/netrate/netsend/netsend.c
137
timing_loop(struct _a *a)
tools/tools/netrate/netsend/netsend.c
284
struct _a a; /* arguments */
usr.bin/netstat/nhgrp.c
178
cmp_nhg_idx(const void *_a, const void *_b)
usr.bin/netstat/nhgrp.c
182
a = _a;
usr.bin/netstat/nhops.c
322
cmp_nh_idx(const void *_a, const void *_b)
usr.bin/netstat/nhops.c
326
a = _a;
usr.sbin/bhyve/snapshot.c
121
__typeof__ (a) _a = (a); \
usr.sbin/bhyve/snapshot.c
123
_a < _b ? _a : _b; \
usr.sbin/lpr/pac/pac.c
91
static int qucmp(const void *_a, const void *_b);
usr.sbin/makefs/walk.c
63
cmp(const void *_a, const void *_b)
usr.sbin/makefs/walk.c
65
const fsnode * const *a = _a;