/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/ |
H A D | sysmacros.h | 351 #define DECL_BITFIELD4(_a, _b, _c, _d) \ argument 352 uint8_t _a, _b, _c, _d 353 #define DECL_BITFIELD5(_a, _b, _c, _d, _e) \ argument 354 uint8_t _a, _b, _c, _d, _e 355 #define DECL_BITFIELD6(_a, _b, _c, _d, _e, _f) \ argument 356 uint8_t _a, _b, _c, _d, _e, _f 357 #define DECL_BITFIELD7(_a, _b, _c, _d, _e, _f, _g) \ argument 358 uint8_t _a, _b, _c, _d, _e, _f, _g 359 #define DECL_BITFIELD8(_a, _b, _c, _d, _e, _f, _g, _h) \ argument 360 uint8_t _a, _b, _c, _d, _e, _f, _g, _h [all …]
|
/freebsd/contrib/ofed/libibverbs/ |
H A D | alloca.h | 9 char *_d; \ 13 _d = alloca(_len); \ 14 if (_d) \ 15 memcpy(_d, _s, _len); \ 16 _d; \
|
/freebsd/contrib/bmake/mk/ |
H A D | mkopt.sh | 41 _d=$1 50 _v=${_v:-$_d} 56 *) _v=$_d;; # ignore bogus value 67 _d=no 72 eval "_d=\$${_MKOPT_PREFIX}${_o#*/}" 75 yes|no) _d=$_o; continue;; 77 _mk_opt $_d $_o
|
/freebsd/contrib/libdivsufsort/include/ |
H A D | divsufsort_private.h | 154 #define STACK_PUSH(_a, _b, _c, _d)\ argument 158 stack[ssize].c = (_c), stack[ssize++].d = (_d);\ 160 #define STACK_PUSH5(_a, _b, _c, _d, _e)\ argument 164 stack[ssize].c = (_c), stack[ssize].d = (_d), stack[ssize++].e = (_e);\ 166 #define STACK_POP(_a, _b, _c, _d)\ argument 171 (_c) = stack[ssize].c, (_d) = stack[ssize].d;\ 173 #define STACK_POP5(_a, _b, _c, _d, _e)\ argument 178 (_c) = stack[ssize].c, (_d) = stack[ssize].d, (_e) = stack[ssize].e;\
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | average.h | 55 #define DECLARE_EWMA(_name, _p, _d) \ argument 58 CTASSERT(_d > 0 && powerof2(_d)); \ 75 int d = ilog2(_d); \
|
H A D | overflow.h | 124 typeof(d) _d = d; \ 128 *_d = (_a_full << _to_shift); \ 129 (_to_shift != _s || is_negative(*_d) || is_negative(_a) || \ 130 (*_d >> _to_shift) != _a); \
|
H A D | device.h | 276 #define devres_add(_d, _p) lkpi_devres_add(_d, _p) argument 278 #define devres_find(_d, _rfn, _mfn, _mp) \ argument 279 lkpi_devres_find(_d, _rfn, _mfn, _mp) 280 #define devres_destroy(_d, _rfn, _mfn, _mp) \ argument 281 lkpi_devres_destroy(_d, _rfn, _mfn, _mp) 285 #define devm_kfree(_d, _p) lkpi_devm_kmalloc_release(_d, _p) argument
|
/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | ip_fil.h | 164 i6addr_t *_d = (i6addr_t *)(d); \ 165 _d->i6[0] = NLADD(_s->i6[0], x); \ 166 if (ntohl(_d->i6[0]) < ntohl(_s->i6[0])) { \ 167 _d->i6[1] = NLADD(_d->i6[1], 1); \ 168 if (ntohl(_d->i6[1]) < ntohl(_s->i6[1])) { \ 169 _d->i6[2] = NLADD(_d->i6[2], 1); \ 170 if (ntohl(_d->i6[2]) < ntohl(_s->i6[2])) { \ 171 _d [all...] |
H A D | ip_compat.h | 1211 # define DT2(_n,_a,_b,_c,_d) DTRACE_PROBE2(_n,_a,_b,_c,_d) argument 1212 # define DT3(_n,_a,_b,_c,_d,_e,_f) \ argument 1213 DTRACE_PROBE3(_n,_a,_b,_c,_d,_e,_f) 1214 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) \ argument 1215 DTRACE_PROBE4(_n,_a,_b,_c,_d,_e,_f,_g,_h) 1216 # define DT5(_n,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j) \ argument 1217 DTRACE_PROBE5(_n,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j) 1221 # define DT2(_n,_a,_b,_c,_d) argument 1222 # define DT3(_n,_a,_b,_c,_d,_e,_f) argument 1223 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) argument [all …]
|
/freebsd/sys/sys/ |
H A D | types.h | 331 __major(dev_t _d) in __major() argument 333 return (((_d >> 32) & 0xffffff00) | ((_d >> 8) & 0xff)); in __major() 337 __minor(dev_t _d) in __minor() argument 339 return (((_d >> 24) & 0xff00) | (_d & 0xffff00ff)); in __minor()
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_get/ |
H A D | zfs_get_list_d.kshlib | 69 log_must $ZFS create $fs/fs_"$j"_d"$i" 71 log_must $ZFS create -V 8M $fs/v_"$j"_d"$i" 73 log_must $ZFS snapshot $fs@s_"$j"_d"$i"
|
/freebsd/contrib/ofed/infiniband-diags/src/ |
H A D | smpdump.c | 210 char *_d; \ 214 _d = alloca(_len); \ 215 if (_d) \ 216 memcpy(_d, _s, _len); \ 217 _d; \
|
/freebsd/lib/msun/tests/ |
H A D | logarithm_test.c | 59 volatile long double _d = x; \ 61 CHECK_FPEQUAL((func)(_d), (result)); \ 67 volatile long double _d = z; \ 68 debug(" testing %6s(%15La) ~= % .36Le\n", #func, _d, result); \ 69 CHECK_FPEQUAL_TOL((func)(_d), (result), (tol), CS_BOTH); \
|
H A D | exponential_test.c | 59 volatile long double _d = x; \ 61 CHECK_FPEQUAL((func)(_d), (result)); \
|
H A D | invctrig_test.c | 57 volatile long double complex _d = z; \ 59 creall(_d), cimagl(_d), creall(result), cimagl(result)); \ 61 CHECK_CFPEQUAL_CS((func)(_d), (result), (checksign)); \
|
/freebsd/etc/ |
H A D | Makefile | 137 .for _m _d in ${MTREES} 139 d=${DESTDIR}${_d}; \ 148 .for _m _d in ${MTREES} 150 d=${_d}; \
|
/freebsd/sys/contrib/dev/rtw89/ |
H A D | sar.c | 144 typeof(_dev) _d = (_dev); \ 147 lockdep_assert_held(&_d->mutex); \ in rtw89_txpwr_sar_to_mac() 148 _d->sar._cfg_name = *(_cfg_data); \ in rtw89_txpwr_sar_to_mac() 149 _d->sar.src = _s; \ in rtw89_txpwr_sar_to_mac()
|
/freebsd/sys/dev/ath/ |
H A D | ah_osdep.h | 71 #define OS_MEMCPY(_d, _s, _n) memcpy(_d,_s,_n) argument
|
/freebsd/contrib/ntp/sntp/libopts/ |
H A D | autoopts.h | 394 #define INQUERY_CALL(_o, _d) ( \ argument 396 || ((_d) == NULL) \ 397 || (((_d)->fOptState & OPTST_RESET) != 0) )
|
/freebsd/sys/netpfil/ipfw/nptv6/ |
H A D | nptv6.c | 102 char _s[INET6_ADDRSTRLEN], _d[INET6_ADDRSTRLEN]; \ 176 inet_ntop(AF_INET6, &ip6->ip6_dst, _d, sizeof(_d)), in nptv6_translate_icmpv6() 238 inet_ntop(AF_INET6, &ip6->ip6_dst, _d, sizeof(_d)), in nptv6_rewrite_internal() 296 inet_ntop(AF_INET6, &ip6->ip6_dst, _d, sizeof(_d)), in nptv6_rewrite_external() 379 inet_ntop(AF_INET6, &ip6->ip6_dst, _d, sizeof(_d)), in ipfw_nptv6()
|
/freebsd/sys/netinet/ |
H A D | sctp_uio.h | 1135 #define SCTP_STAT_INCR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x += _d) argument 1136 #define SCTP_STAT_DECR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x -= _d) argument 1138 #define SCTP_STAT_INCR_BY(_x,_d) atomic_add_int(&SCTP_BASE_STAT(_x), _d) argument 1139 #define SCTP_STAT_DECR_BY(_x,_d) atomic_subtract_int(&SCTP_BASE_STAT(_x), _d) argument
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | z_Windows_NT-586_asm.asm | 50 _d$ = 8 117 _d$ = 8 122 mov eax, DWORD PTR _d$[esp] 251 _d$ = 8 256 mov al, BYTE PTR _d$[esp] 272 _d$ = 8 277 mov ax, WORD PTR _d$[esp] 293 _d$ = 8 298 mov eax, DWORD PTR _d$[esp] 315 _d$ = 12 [all …]
|
/freebsd/contrib/elftoolchain/libdwarf/ |
H A D | _libdwarf.h | 57 #define _DWARF_SET_ERROR(_d, _e, _err, _elf_err) \ argument 58 _dwarf_set_error(_d, _e, _err, _elf_err, __func__, __LINE__) 59 #define DWARF_SET_ERROR(_d, _e, _err) \ argument 60 _DWARF_SET_ERROR(_d, _e, _err, 0) 61 #define DWARF_SET_ELF_ERROR(_d, _e) \ argument 62 _DWARF_SET_ERROR(_d, _e, DW_DLE_ELF, elf_errno())
|
/freebsd/sys/compat/linuxkpi/common/src/ |
H A D | linux_netdev.c | 69 #define NAPI_TRACE2D(_n, _d) if (debug_napi & DNAPI_TRACE) \ argument 72 (int)(_n)->state, LKPI_NAPI_FLAGS, _d) 86 #define NAPI_TRACE2D(_n, _d) do { } while(0) argument
|
/freebsd/contrib/elftoolchain/libelf/ |
H A D | _libelf.h | 236 struct _Libelf_Data *_libelf_release_data(struct _Libelf_Data *_d); 243 Elf_Data *_libelf_xlate(Elf_Data *_d, const Elf_Data *_s,
|