| /freebsd-12-stable/contrib/ntp/libntp/lib/isc/include/isc/ |
| D | buffer.h | 682 #define ISC__BUFFER_INIT(_b, _base, _length) \ argument 689 (_b)->base = _u.var; \ 690 (_b)->length = (_length); \ 691 (_b)->used = 0; \ 692 (_b)->current = 0; \ 693 (_b)->active = 0; \ 694 (_b)->mctx = NULL; \ 695 ISC_LINK_INIT(_b, link); \ 696 (_b)->magic = ISC_BUFFER_MAGIC; \ 699 #define ISC__BUFFER_INITNULL(_b) ISC__BUFFER_INIT(_b, NULL, 0) argument [all …]
|
| /freebsd-12-stable/sys/dev/sfxge/common/ |
| D | efx_hash.c | 70 #define EFX_HASH_MIX(_a, _b, _c) \ argument 74 _c += _b; \ 75 _b -= _a; \ 76 _b ^= EFX_HASH_ROTATE(_a, 6); \ 78 _c -= _b; \ 79 _c ^= EFX_HASH_ROTATE(_b, 8); \ 80 _b += _a; \ 83 _c += _b; \ 84 _b -= _a; \ 85 _b ^= EFX_HASH_ROTATE(_a, 19); \ [all …]
|
| /freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/sys/ |
| D | sysmacros.h | 340 #define DECL_BITFIELD2(_a, _b) \ argument 341 uint8_t _a, _b 342 #define DECL_BITFIELD3(_a, _b, _c) \ argument 343 uint8_t _a, _b, _c 344 #define DECL_BITFIELD4(_a, _b, _c, _d) \ argument 345 uint8_t _a, _b, _c, _d 346 #define DECL_BITFIELD5(_a, _b, _c, _d, _e) \ argument 347 uint8_t _a, _b, _c, _d, _e 348 #define DECL_BITFIELD6(_a, _b, _c, _d, _e, _f) \ argument 349 uint8_t _a, _b, _c, _d, _e, _f [all …]
|
| /freebsd-12-stable/contrib/libdivsufsort/include/ |
| D | divsufsort_private.h | 146 # define SWAP(_a, _b) do { t = (_a); (_a) = (_b); (_b) = t; } while(0) argument 149 # define MIN(_a, _b) (((_a) < (_b)) ? (_a) : (_b)) argument 152 # define MAX(_a, _b) (((_a) > (_b)) ? (_a) : (_b)) argument 154 #define STACK_PUSH(_a, _b, _c, _d)\ argument 157 stack[ssize].a = (_a), stack[ssize].b = (_b),\ 160 #define STACK_PUSH5(_a, _b, _c, _d, _e)\ argument 163 stack[ssize].a = (_a), stack[ssize].b = (_b),\ 166 #define STACK_POP(_a, _b, _c, _d)\ argument 170 (_a) = stack[--ssize].a, (_b) = stack[ssize].b,\ 173 #define STACK_POP5(_a, _b, _c, _d, _e)\ argument [all …]
|
| /freebsd-12-stable/contrib/libstdc++/include/bits/ |
| D | concept_check.h | 53 #define __glibcxx_class_requires(_a,_b) argument 54 #define __glibcxx_class_requires2(_a,_b,_c) argument 55 #define __glibcxx_class_requires3(_a,_b,_c,_d) argument 56 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e) argument 76 #define __glibcxx_class_requires2(_a,_b,_C) \ argument 77 _GLIBCXX_CLASS_REQUIRES2(_a, _b, __gnu_cxx, _C); 78 #define __glibcxx_class_requires3(_a,_b,_c,_C) \ argument 79 _GLIBCXX_CLASS_REQUIRES3(_a, _b, _c, __gnu_cxx, _C); 80 #define __glibcxx_class_requires4(_a,_b,_c,_d,_C) \ argument 81 _GLIBCXX_CLASS_REQUIRES4(_a, _b, _c, _d, __gnu_cxx, _C);
|
| /freebsd-12-stable/sys/dev/usb/ |
| D | usb_core.h | 45 #define USB_BUS_LOCK(_b) USB_MTX_LOCK(&(_b)->bus_mtx) argument 46 #define USB_BUS_UNLOCK(_b) USB_MTX_UNLOCK(&(_b)->bus_mtx) argument 47 #define USB_BUS_LOCK_ASSERT(_b, _t) USB_MTX_ASSERT(&(_b)->bus_mtx, _t) argument 50 #define USB_BUS_SPIN_LOCK(_b) USB_MTX_LOCK_SPIN(&(_b)->bus_spin_lock) argument 51 #define USB_BUS_SPIN_UNLOCK(_b) USB_MTX_UNLOCK_SPIN(&(_b)->bus_spin_lock) argument 52 #define USB_BUS_SPIN_LOCK_ASSERT(_b, _t) USB_MTX_ASSERT(&(_b)->bus_spin_lock, _t) argument
|
| /freebsd-12-stable/sys/dev/uart/ |
| D | uart_dev_imx.h | 209 #define CLR(_bas, _r, _b) \ argument 210 SETREG((_bas), (_r), GETREG((_bas), (_r)) & ~(_b)) 211 #define SET(_bas, _r, _b) \ argument 212 SETREG((_bas), (_r), GETREG((_bas), (_r)) | (_b)) 213 #define IS_SET(_bas, _r, _b) \ argument 214 ((GETREG((_bas), (_r)) & (_b)) ? 1 : 0) 216 #define ENA(_bas, _r, _b) SET((_bas), REG(_r), FLD(_r, _b)) argument 217 #define DIS(_bas, _r, _b) CLR((_bas), REG(_r), FLD(_r, _b)) argument 218 #define IS(_bas, _r, _b) IS_SET((_bas), REG(_r), FLD(_r, _b)) argument
|
| /freebsd-12-stable/sys/arm/allwinner/a10/ |
| D | a10_intc.c | 89 #define SW_INT_IRQ_PENDING_REG(_b) (0x10 + ((_b) * 4)) argument 90 #define SW_INT_FIQ_PENDING_REG(_b) (0x20 + ((_b) * 4)) argument 91 #define SW_INT_SELECT_REG(_b) (0x30 + ((_b) * 4)) argument 92 #define SW_INT_ENABLE_REG(_b) (0x40 + ((_b) * 4)) argument 93 #define SW_INT_MASK_REG(_b) (0x50 + ((_b) * 4)) argument
|
| /freebsd-12-stable/contrib/nvi/common/ |
| D | util.h | 59 #define MIN(_a,_b) ((_a)<(_b)?(_a):(_b)) argument 60 #define MAX(_a,_b) ((_a)<(_b)?(_b):(_a)) argument
|
| /freebsd-12-stable/tools/tools/ath/common/ |
| D | ah_osdep.h | 52 #define OS_MACEQU(_a, _b) \ argument 53 (bcmp((_a), (_b), IEEE80211_ADDR_LEN) == 0) 70 #define __printflike(_a,_b) \ argument 71 __attribute__ ((__format__ (__printf__, _a, _b)))
|
| /freebsd-12-stable/sys/dev/ixgbe/ |
| D | ixgbe_sriov.h | 87 #define ixgbe_add_vf(_a,_b,_c) argument 88 #define ixgbe_init_iov(_a,_b,_c) argument 94 #define ixgbe_define_iov_schemas(_a,_b) argument 96 #define ixgbe_vf_que_index(_a, _b, _c) (_c) argument
|
| D | ixgbe_rss.h | 60 #define rss_hash2bucket(_a,_b,_c) -1 argument
|
| /freebsd-12-stable/sys/sys/ |
| D | bitstring.h | 285 int _value, _offset, _logsize, _b; in bit_ffs_area_at() local 305 _b = _logsize; in bit_ffs_area_at() 306 while ((_test & (_test + 1)) != 0 && _b-- > 0) in bit_ffs_area_at() 307 _test |= _test >> (((_size - 1) >> _b) + 1) / 2; in bit_ffs_area_at() 332 int _value, _offset, _logsize, _b; in bit_ffc_area_at() local 352 _b = _logsize; in bit_ffc_area_at() 353 while ((_test & (_test + 1)) != 0 && _b-- > 0) in bit_ffc_area_at() 354 _test |= _test >> (((_size - 1) >> _b) + 1) / 2; in bit_ffc_area_at()
|
| /freebsd-12-stable/sys/netpfil/ipfilter/netinet/ |
| D | ip_compat.h | 1218 # define DT1(_n,_a,_b) DTRACE_PROBE1(_n,_a,_b) argument 1219 # define DT2(_n,_a,_b,_c,_d) DTRACE_PROBE2(_n,_a,_b,_c,_d) argument 1220 # define DT3(_n,_a,_b,_c,_d,_e,_f) \ argument 1221 DTRACE_PROBE3(_n,_a,_b,_c,_d,_e,_f) 1222 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) \ argument 1223 DTRACE_PROBE4(_n,_a,_b,_c,_d,_e,_f,_g,_h) 1224 # define DT5(_n,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j) \ argument 1225 DTRACE_PROBE5(_n,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j) 1228 # define DT1(_n,_a,_b) argument 1229 # define DT2(_n,_a,_b,_c,_d) argument [all …]
|
| /freebsd-12-stable/gnu/usr.bin/cc/include/ |
| D | __wmmintrin_pclmul.h | 45 __m128i _b = (b); \ 47 __asm__("pclmulqdq %3, %2, %0": "=x" (_a): "0" (_a), "xm" (_b), \
|
| /freebsd-12-stable/sys/cddl/compat/opensolaris/sys/ |
| D | mman.h | 35 #define mmap64(_a,_b,_c,_d,_e,_f) mmap(_a,_b,_c,_d,_e,_f) argument
|
| /freebsd-12-stable/sys/netinet6/ |
| D | frag6.c | 139 #define IP6QB_LOCK(_b) mtx_lock(&V_ip6qb[(_b)].lock) argument 140 #define IP6QB_TRYLOCK(_b) mtx_trylock(&V_ip6qb[(_b)].lock) argument 141 #define IP6QB_LOCK_ASSERT(_b) mtx_assert(&V_ip6qb[(_b)].lock, MA_OWNED) argument 142 #define IP6QB_UNLOCK(_b) mtx_unlock(&V_ip6qb[(_b)].lock) argument 143 #define IP6QB_HEAD(_b) (&V_ip6qb[(_b)].packets) argument
|
| /freebsd-12-stable/sys/arm/nvidia/ |
| D | tegra_lic.c | 67 #define WR4(_sc, _b, _r, _v) bus_write_4((_sc)->mem_res[_b], (_r), (_v)) argument 68 #define RD4(_sc, _b, _r) bus_read_4((_sc)->mem_res[_b], (_r)) argument
|
| /freebsd-12-stable/sys/net80211/ |
| D | ieee80211_crypto_ccmp.c | 438 #define CCMP_ENCRYPT(_i, _b, _b0, _pos, _e, _len) do { \ argument 440 xor_block(_b, _pos, _len); \ 441 rijndael_encrypt(&ctx->cc_aes, _b, _b); \ 583 #define CCMP_DECRYPT(_i, _b, _b0, _pos, _a, _len) do { \ argument 587 rijndael_encrypt(&ctx->cc_aes, _b0, _b); \ 588 xor_block(_pos, _b, _len); \
|
| /freebsd-12-stable/cddl/contrib/opensolaris/lib/libzpool/common/sys/ |
| D | zfs_context.h | 363 #define kmem_free(_b, _s) umem_free(_b, _s) argument 365 #define kmem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i) \ argument 366 umem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i) 369 #define kmem_cache_free(_c, _b) umem_cache_free(_c, _b) argument 700 #define ddi_log_sysevent(_a, _b, _c, _d, _e, _f, _g) (0) argument
|
| /freebsd-12-stable/sys/dev/cxgbe/cudbg/ |
| D | cudbg_lib.h | 34 #define min_t(type, _a, _b) (((type)(_a) < (type)(_b)) ? (type)(_a) : (type)(_b)) argument
|
| /freebsd-12-stable/sys/dev/ath/ |
| D | ah_osdep.h | 74 #define OS_MEMCMP(_a, _b, _l) memcmp((_a), (_b), (_l)) argument
|
| /freebsd-12-stable/sys/contrib/zstd/lib/dictBuilder/ |
| D | divsufsort.c | 94 # define SWAP(_a, _b) do { t = (_a); (_a) = (_b); (_b) = t; } while(0) argument 97 # define MIN(_a, _b) (((_a) < (_b)) ? (_a) : (_b)) argument 100 # define MAX(_a, _b) (((_a) > (_b)) ? (_a) : (_b)) argument 102 #define STACK_PUSH(_a, _b, _c, _d)\ argument 105 stack[ssize].a = (_a), stack[ssize].b = (_b),\ 108 #define STACK_PUSH5(_a, _b, _c, _d, _e)\ argument 111 stack[ssize].a = (_a), stack[ssize].b = (_b),\ 114 #define STACK_POP(_a, _b, _c, _d)\ argument 118 (_a) = stack[--ssize].a, (_b) = stack[ssize].b,\ 121 #define STACK_POP5(_a, _b, _c, _d, _e)\ argument [all …]
|
| /freebsd-12-stable/contrib/ntp/sntp/libevent/test/ |
| D | tinytest_macros.h | 164 int _b = (int)(b); \ 165 tt_assert_test_type(_a,_b,#a" "#op" "#b,long,(val1_ op val2_), \
|
| /freebsd-12-stable/contrib/libevent/test/ |
| D | tinytest_macros.h | 164 int _b = (int)(b); \ 165 tt_assert_test_type(_a,_b,#a" "#op" "#b,long,(val1_ op val2_), \
|