Searched refs:_x (Results 26 - 50 of 70) sorted by relevance

123

/freebsd-13-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300eep.h419 #define SWAP16(_x) ( (u_int16_t)( (((const u_int8_t *)(&_x))[0] ) |\
420 ( ( (const u_int8_t *)( &_x ) )[1]<< 8) ) )
422 #define SWAP32(_x) ((u_int32_t)( \
423 (((const u_int8_t *)(&_x))[0]) | \
424 (((const u_int8_t *)(&_x))[1]<< 8) | \
425 (((const u_int8_t *)(&_x))[2]<<16) | \
426 (((const u_int8_t *)(&_x))[3]<<24)))
431 #define SWAP16(_x) ( (u_int16_t)( (((const u_int8_t *)(&_x))[
[all...]
H A Dar9300phy.h41 #define AR_CHAN_OFFSET(_x) (AR_CHAN_BASE + offsetof(struct chn_reg_map, _x))
294 #define AR_MRC_OFFSET(_x) (AR_MRC_BASE + offsetof(struct mrc_reg_map, _x))
329 #define AR_BBB_OFFSET(_x) (AR_BBB_BASE + offsetof(struct bbb_reg_map, _x))
337 #define AR_AGC_OFFSET(_x) (AR_AGC_BASE + offsetof(struct agc_reg_map, _x))
524 #define AR_SM_OFFSET(_x) (AR_SM_BASE + offsetof(struct sm_reg_map, _x))
[all...]
H A Dar9300_freebsd_inc.h174 #define N2DBM(_x,_y) ((((_x) - NOISE_PWR_DATA_OFFSET) << 2) - (_y)/25)
H A Dar9300reg.h26 #define AR_MAC_DMA_OFFSET(_x) offsetof(struct mac_dma_reg, _x)
447 #define AR_MAC_QCU_OFFSET(_x) offsetof(struct mac_qcu_reg, _x)
550 #define AR_MAC_DCU_OFFSET(_x) offsetof(struct mac_dcu_reg, _x)
728 #define AR9300_HOSTIF_OFFSET(_x) offsetof(struct host_intf_reg, _x)
729 #define AR9340_HOSTIF_OFFSET(_x) offsetof(struct host_intf_reg_ar9340, _x)
[all...]
/freebsd-13-stable/contrib/libxo/tests/core/
H A Dtest_05.c22 #define xo_wcwidth(_x) wcwidth(_x)
/freebsd-13-stable/sys/netinet/
H A Dsctp_uio.h1127 #define SCTP_STAT_INCR(_x) SCTP_STAT_INCR_BY(_x,1)
1128 #define SCTP_STAT_DECR(_x) SCTP_STAT_DECR_BY(_x,1)
1130 #define SCTP_STAT_INCR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x += _d)
1131 #define SCTP_STAT_DECR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x -= _d)
1133 #define SCTP_STAT_INCR_BY(_x,_d) atomic_add_int(&SCTP_BASE_STAT(_x), _
[all...]
/freebsd-13-stable/include/xlocale/
H A D_ctype.h166 unsigned int _x; local
170 _x = (unsigned int)__maskrune_l(_c, _CTYPE_SWM|_CTYPE_R, __l);
171 if ((_x & _CTYPE_SWM) != 0)
172 return ((_x & _CTYPE_SWM) >> _CTYPE_SWS);
173 return ((_x & _CTYPE_R) != 0 ? 1 : -1);
/freebsd-13-stable/contrib/cortex-strings/benchmarks/multi/
H A Dharness.c44 #define NUM_ELEMS(_x) (sizeof(_x) / sizeof((_x)[0]))
51 #define SPOIL(_x) volatile long x = (long)(_x); (void)x
/freebsd-13-stable/contrib/libxo/encoder/cbor/
H A Denc_cbor.c95 #define CBOR_MAJOR(_x) ((_x) & CBOR_MAJOR_MASK)
96 #define CBOR_MAJOR_VAL(_x) ((_x) << CBOR_MAJOR_SHIFT)
97 #define CBOR_MINOR_VAL(_x) ((_x) & CBOR_MINOR_MASK)
/freebsd-13-stable/lib/csu/powerpc/
H A Dcrtsavres.S141 #define RESTFPR_X(r) _CRTENTRY(__CONCAT(__CONCAT(_restfpr_,r),_x)) \
167 #define RESTGPR_X(r) _CRTENTRY(__CONCAT(__CONCAT(_restgpr_,r),_x)) \
/freebsd-13-stable/contrib/ntp/sntp/libopts/compat/
H A Dwindows-config.h89 #define fchmod( _x, _y )
/freebsd-13-stable/sys/dev/sfxge/common/
H A Defx_annote.h84 #define __success(_x)
H A Defsys.h1141 #define EFSYS_ASSERT3(_x, _op, _y, _t) do { \
1142 const _t __x = (_t)(_x); \
1148 #define EFSYS_ASSERT3U(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, uint64_t)
1149 #define EFSYS_ASSERT3S(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, int64_t)
1150 #define EFSYS_ASSERT3P(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, uintptr_t)
/freebsd-13-stable/sys/compat/linuxkpi/common/include/linux/
H A Dlockdep.h45 #define lockdep_init_map(_map, _name, _key, _x) do { } while(0)
/freebsd-13-stable/sys/contrib/ena-com/
H A Dena_plat.h202 #define min_t(type, _x, _y) ((type)(_x) < (type)(_y) ? (type)(_x) : (type)(_y))
203 #define max_t(type, _x, _y) ((type)(_x) > (type)(_y) ? (type)(_x) : (type)(_y))
/freebsd-13-stable/sys/netpfil/ipfw/test/
H A Dtest_dn_heap.c82 int doprint(void *_x, void *arg) argument
84 struct x *x = _x;
/freebsd-13-stable/contrib/file/src/
H A Dgetopt_long.c365 #define IDENTICAL_INTERPRETATION(_x, _y) \
366 (long_options[(_x)].has_arg == long_options[(_y)].has_arg && \
367 long_options[(_x)].flag == long_options[(_y)].flag && \
368 long_options[(_x)].val == long_options[(_y)].val)
/freebsd-13-stable/tools/tools/ath/athratestats/
H A Dmain.c76 #define PRINTATTR_ON(_x) do { \
78 attron(_x); \
82 #define PRINTATTR_OFF(_x) do { \
84 attroff(_x); \
/freebsd-13-stable/contrib/libxo/libxo/
H A Dxo.h45 #define __printflike(_x, _y) __attribute__((__format__ (__printf__, _x, _y)))
47 #define PRINTFLIKE(_x, _y) __printflike(_x, _y)
49 #define PRINTFLIKE(_x, _y)
/freebsd-13-stable/sys/dev/axgbe/
H A Dxgbe.h252 #define XGMAC_FIFO_ALIGN(_x) \
253 (((_x) + XGMAC_FIFO_UNIT - 1) & ~(XGMAC_FIFO_UNIT - 1))
283 #define XGMAC_FLOW_CONTROL_ALIGN(_x) \
284 (((_x) + XGMAC_FLOW_CONTROL_UNIT - 1) & ~(XGMAC_FLOW_CONTROL_UNIT - 1))
285 #define XGMAC_FLOW_CONTROL_VALUE(_x) \
286 (((_x) < 1024) ? 0 : ((_x) / XGMAC_FLOW_CONTROL_UNIT) - 2)
/freebsd-13-stable/sys/sys/
H A Dtime.h61 bintime_addx(struct bintime *_bt, uint64_t _x) argument
66 _bt->frac += _x;
96 bintime_mul(struct bintime *_bt, u_int _x) argument
100 _p1 = (_bt->frac & 0xffffffffull) * _x;
101 _p2 = (_bt->frac >> 32) * _x + (_p1 >> 32);
102 _bt->sec *= _x;
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp.h260 // Generic string manipulation macros. Assume that _x is of type char *
261 #define SKIP_WS(_x) \
263 while (*(_x) == ' ' || *(_x) == '\t') \
264 (_x)++; \
266 #define SKIP_DIGITS(_x) \
268 while (*(_x) >= '0' && *(_x) <= '9') \
269 (_x)++; \
271 #define SKIP_TOKEN(_x) \
[all...]
/freebsd-13-stable/sys/contrib/ncsw/inc/
H A Dncsw_ext.h99 #define UNUSED(_x) ((void)(_x))
/freebsd-13-stable/sys/dev/ena/
H A Dena.h489 #define clamp_t(type, _x, min, max) min_t(type, max_t(type, _x, min), max)
/freebsd-13-stable/sys/dev/ath/ath_hal/
H A Dah_eeprom_v3.h153 #define SCALE_OC_DELTA(_x) (((_x) * 2) / 10)

Completed in 685 milliseconds

123