Home
last modified time | relevance | path

Searched refs:_d (Results 1 – 18 of 18) sorted by relevance

/f-stack/dpdk/drivers/raw/octeontx2_ep/
H A Dotx2_ep_enqdeq.h18 sdp_endian_swap_8B(uint64_t _d) in sdp_endian_swap_8B() argument
20 return ((((((uint64_t)(_d)) >> 0) & (uint64_t)0xff) << 56) | in sdp_endian_swap_8B()
21 (((((uint64_t)(_d)) >> 8) & (uint64_t)0xff) << 48) | in sdp_endian_swap_8B()
22 (((((uint64_t)(_d)) >> 16) & (uint64_t)0xff) << 40) | in sdp_endian_swap_8B()
23 (((((uint64_t)(_d)) >> 24) & (uint64_t)0xff) << 32) | in sdp_endian_swap_8B()
24 (((((uint64_t)(_d)) >> 32) & (uint64_t)0xff) << 24) | in sdp_endian_swap_8B()
25 (((((uint64_t)(_d)) >> 40) & (uint64_t)0xff) << 16) | in sdp_endian_swap_8B()
26 (((((uint64_t)(_d)) >> 48) & (uint64_t)0xff) << 8) | in sdp_endian_swap_8B()
27 (((((uint64_t)(_d)) >> 56) & (uint64_t)0xff) << 0)); in sdp_endian_swap_8B()
/f-stack/freebsd/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dsysmacros.h295 #define DECL_BITFIELD4(_a, _b, _c, _d) \ argument
296 uint8_t _a, _b, _c, _d
298 uint8_t _a, _b, _c, _d, _e
300 uint8_t _a, _b, _c, _d, _e, _f
302 uint8_t _a, _b, _c, _d, _e, _f, _g
304 uint8_t _a, _b, _c, _d, _e, _f, _g, _h
311 uint8_t _d, _c, _b, _a
313 uint8_t _e, _d, _c, _b, _a
315 uint8_t _f, _e, _d, _c, _b, _a
317 uint8_t _g, _f, _e, _d, _c, _b, _a
[all …]
/f-stack/freebsd/contrib/ipfilter/netinet/
H A Dip_fil.h170 _d->i6[1] = NLADD(_d->i6[1], 1); \
172 _d->i6[2] = NLADD(_d->i6[2], 1); \
174 _d->i6[3] = NLADD(_d->i6[3], 1); \
190 _d->i6[0] &= _m->i6[0]; \
191 _d->i6[1] &= _m->i6[1]; \
192 _d->i6[2] &= _m->i6[2]; \
193 _d->i6[3] &= _m->i6[3]; \
207 _d = (i6addr_t *)(a); \
217 _d = (i6addr_t *)(a); \
227 _d->i6[0] = 0xffffffff; \
[all …]
H A Dip_compat.h1232 # define DT2(_n,_a,_b,_c,_d) DTRACE_PROBE2(_n,_a,_b,_c,_d) argument
1233 # define DT3(_n,_a,_b,_c,_d,_e,_f) \ argument
1234 DTRACE_PROBE3(_n,_a,_b,_c,_d,_e,_f)
1235 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) \ argument
1236 DTRACE_PROBE4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
1240 # define DT2(_n,_a,_b,_c,_d) argument
1241 # define DT3(_n,_a,_b,_c,_d,_e,_f) argument
1242 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) argument
1247 # define DT2(_n,_a,_b,_c,_d) argument
1248 # define DT3(_n,_a,_b,_c,_d,_e,_f) argument
[all …]
/f-stack/freebsd/sys/
H A Dtypes.h391 __major(dev_t _d) in __major() argument
393 return (((_d >> 32) & 0xffffff00) | ((_d >> 8) & 0xff)); in __major()
397 __minor(dev_t _d) in __minor() argument
399 return (((_d >> 24) & 0xff00) | (_d & 0xffff00ff)); in __minor()
/f-stack/dpdk/drivers/bus/dpaa/base/qbman/
H A Dqman_priv.h68 u32 *_d = dest->q.state; in qman_cgrs_and() local
73 *(_d++) = *(_a++) & *(_b++); in qman_cgrs_and()
81 u32 *_d = dest->q.state; in qman_cgrs_xor() local
86 *(_d++) = *(_a++) ^ *(_b++); in qman_cgrs_xor()
/f-stack/freebsd/netpfil/ipfw/nptv6/
H A Dnptv6.c104 char _s[INET6_ADDRSTRLEN], _d[INET6_ADDRSTRLEN]; \
178 inet_ntop(AF_INET6, &ip6->ip6_dst, _d, sizeof(_d)), in nptv6_translate_icmpv6()
240 inet_ntop(AF_INET6, &ip6->ip6_dst, _d, sizeof(_d)), in nptv6_rewrite_internal()
298 inet_ntop(AF_INET6, &ip6->ip6_dst, _d, sizeof(_d)), in nptv6_rewrite_external()
381 inet_ntop(AF_INET6, &ip6->ip6_dst, _d, sizeof(_d)), in ipfw_nptv6()
/f-stack/freebsd/netinet/
H A Dsctp_uio.h1130 #define SCTP_STAT_INCR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x += _d) argument
1131 #define SCTP_STAT_DECR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x -= _d) argument
1133 #define SCTP_STAT_INCR_BY(_x,_d) atomic_add_int(&SCTP_BASE_STAT(_x), _d) argument
1134 #define SCTP_STAT_DECR_BY(_x,_d) atomic_subtract_int(&SCTP_BASE_STAT(_x), _d) argument
/f-stack/tools/compat/include/netinet/
H A Dsctp_uio.h1130 #define SCTP_STAT_INCR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x += _d) argument
1131 #define SCTP_STAT_DECR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x -= _d) argument
1133 #define SCTP_STAT_INCR_BY(_x,_d) atomic_add_int(&SCTP_BASE_STAT(_x), _d) argument
1134 #define SCTP_STAT_DECR_BY(_x,_d) atomic_subtract_int(&SCTP_BASE_STAT(_x), _d) argument
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dzfs_context.h425 #define kmem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i) \
426 umem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i)
744 #define ddi_log_sysevent(_a, _b, _c, _d, _e, _f, _g) \
745 sysevent_post_event(_c, _d, _b, "libzpool", _e, _f)
/f-stack/freebsd/arm/freescale/imx/
H A Dimx51_ipuv3_fbd.c105 #define CPMEM_DP_OFFSET(_d) ((_d) * 0x10000) argument
H A Dimx51_ipuv3.c167 #define CPMEM_DP_OFFSET(_d) ((_d) * 0x10000) argument
/f-stack/freebsd/contrib/zstd/lib/dictBuilder/
H A Ddivsufsort.c102 #define STACK_PUSH(_a, _b, _c, _d)\ argument
106 stack[ssize].c = (_c), stack[ssize++].d = (_d);\
108 #define STACK_PUSH5(_a, _b, _c, _d, _e)\ argument
112 stack[ssize].c = (_c), stack[ssize].d = (_d), stack[ssize++].e = (_e);\
114 #define STACK_POP(_a, _b, _c, _d)\ argument
119 (_c) = stack[ssize].c, (_d) = stack[ssize].d;\
121 #define STACK_POP5(_a, _b, _c, _d, _e)\ argument
126 (_c) = stack[ssize].c, (_d) = stack[ssize].d, (_e) = stack[ssize].e;\
/f-stack/dpdk/drivers/common/sfc_efx/base/
H A Defx_impl.h1042 uint16_t *_d = (uint16_t *)(_dst); \
1043 _d[0] = 0xffff; \
1044 _d[1] = 0xffff; \
1045 _d[2] = 0xffff; \
H A Defx.h30 #define EFX_DIV_ROUND_UP(_n, _d) (((_n) + (_d) - 1) / (_d)) argument
/f-stack/freebsd/netpfil/ipfw/
H A Dip_dummynet.c201 #define OR_MASK(_d, _s) \ in flow_id_or() argument
202 (_d)->__u6_addr.__u6_addr32[0] |= (_s)->__u6_addr.__u6_addr32[0]; \ in flow_id_or()
203 (_d)->__u6_addr.__u6_addr32[1] |= (_s)->__u6_addr.__u6_addr32[1]; \ in flow_id_or()
204 (_d)->__u6_addr.__u6_addr32[2] |= (_s)->__u6_addr.__u6_addr32[2]; \ in flow_id_or()
205 (_d)->__u6_addr.__u6_addr32[3] |= (_s)->__u6_addr.__u6_addr32[3]; in flow_id_or()
/f-stack/dpdk/drivers/net/bnx2x/
H A Decore_sp.h198 #define ecore_sp_post(_sc, _a, _b, _c, _d) \ argument
199 bnx2x_sp_post(_sc, _a, _b, U64_HI(_c), U64_LO(_c), _d)
/f-stack/tools/libxo/doc/
H A Dapi.rst947 Each open and close function has a version with the suffix "_d", which