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

123

/freebsd-10.0-release/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300phy.h41 #define AR_CHAN_OFFSET(_x) (AR_CHAN_BASE + offsetof(struct chn_reg_map, _x))
293 #define AR_MRC_OFFSET(_x) (AR_MRC_BASE + offsetof(struct mrc_reg_map, _x))
328 #define AR_BBB_OFFSET(_x) (AR_BBB_BASE + offsetof(struct bbb_reg_map, _x))
336 #define AR_AGC_OFFSET(_x) (AR_AGC_BASE + offsetof(struct agc_reg_map, _x))
523 #define AR_SM_OFFSET(_x) (AR_SM_BASE + offsetof(struct sm_reg_map, _x))
[all...]
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)
549 #define AR_MAC_DCU_OFFSET(_x) offsetof(struct mac_dcu_reg, _x)
727 #define AR9300_HOSTIF_OFFSET(_x) offsetof(struct host_intf_reg, _x)
728 #define AR9340_HOSTIF_OFFSET(_x) offsetof(struct host_intf_reg_ar9340, _x)
[all...]
H A Dar9300_freebsd_inc.h185 #define N2DBM(_x,_y) ((((_x) - NOISE_PWR_DATA_OFFSET) << 2) - (_y)/25)
H A Dar9300_paprd.c76 #define ABS(_x, _y) ((int)_x > (int)_y ? (int)_x - (int)_y : (int)_y - (int)_x)
H A Dar9300_eeprom.c2659 #define ABS(_x, _y) ((int)_x > (int)_y ? (int)_x - (int)_y : (int)_y - (int)_x)
/freebsd-10.0-release/contrib/gcc/config/soft-fp/
H A Dop-2.h334 _FP_W_TYPE _x[2], _y[2]; \
335 _x[0] = X##_f0; _x[1] = X##_f1; \
338 mpn_mul_n(_z_f, _x, _y, 2); \
518 _FP_W_TYPE _x[4], _y[2], _z[4]; \
520 _x[0] = _x[3] = 0; \
524 _x[1] = (X##_f0 << (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE) | \
527 _x[2] = X##_f1 << (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE); \
531 _x[
[all...]
/freebsd-10.0-release/sys/sys/
H A Dtime.h59 bintime_addx(struct bintime *_bt, uint64_t _x) argument
64 _bt->frac += _x;
94 bintime_mul(struct bintime *_bt, u_int _x) argument
98 _p1 = (_bt->frac & 0xffffffffull) * _x;
99 _p2 = (_bt->frac >> 32) * _x + (_p1 >> 32);
100 _bt->sec *= _x;
/freebsd-10.0-release/sys/netpfil/ipfw/test/
H A Dtest_dn_heap.c80 int doprint(void *_x, void *arg) argument
82 struct x *x = _x;
/freebsd-10.0-release/contrib/file/
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-10.0-release/tools/tools/ath/athratestats/
H A Dmain.c77 #define PRINTATTR_ON(_x) do { \
79 attron(_x); \
83 #define PRINTATTR_OFF(_x) do { \
85 attroff(_x); \
/freebsd-10.0-release/sys/arm/lpc/
H A Dlpcreg.h134 #define LPC_CLKPWR_USB_CTRL_POSTDIV(_x) ((_x & 0x3) << 11)
135 #define LPC_CLKPWR_USB_CTRL_PREDIV(_x) ((_x & 0x3) << 9)
136 #define LPC_CLKPWR_USB_CTRL_FDBKDIV(_x) (((_x-1) & 0xff) << 1)
507 #define LPC_SSP_CR0_SCR(_n) ((_x & & 0xff) << 8)
/freebsd-10.0-release/sys/boot/i386/libi386/
H A Dvidconsole.c61 void curs_move(int *_x, int *_y, int x, int y);
211 curs_move(int *_x, int *_y, int x, int y) argument
220 *_x = x;
/freebsd-10.0-release/sys/dev/sfxge/common/
H A Defsys.h818 #define EFSYS_ASSERT3(_x, _op, _y, _t) do { \
819 const _t __x = (_t)(_x); \
825 #define EFSYS_ASSERT3U(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, uint64_t)
826 #define EFSYS_ASSERT3S(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, int64_t)
827 #define EFSYS_ASSERT3P(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, uintptr_t)
H A Defx_regs_mcdi.h210 #define MC_CMD_SENSOR_INFO_OUT_OFFSET_OFST(_x) \
211 (MC_CMD_SENSOR_ENTRY_OFST + (_x))
/freebsd-10.0-release/sys/dev/ath/ath_hal/
H A Dah_eeprom_v3.h151 #define SCALE_OC_DELTA(_x) (((_x) * 2) / 10)
H A Dah_internal.h662 #define HALASSERT(_x) do { \
663 if (!(_x)) { \
664 ath_hal_assert_failed(__FILE__, __LINE__, #_x); \
668 #define HALASSERT(_x)
/freebsd-10.0-release/contrib/ofed/librdmacm/examples/
H A Drping.c103 #define _stringify( _x ) # _x
104 #define stringify( _x ) _stringify( _x )
/freebsd-10.0-release/contrib/libpcap/
H A Doptimize.c159 register bpf_u_int32 *_x = a, *_y = b;\
161 while (--_n >= 0) *_x++ &= *_y++;\
169 register bpf_u_int32 *_x = a, *_y = b;\
171 while (--_n >= 0) *_x++ &=~ *_y++;\
179 register bpf_u_int32 *_x = a, *_y = b;\
181 while (--_n >= 0) *_x++ |= *_y++;\
/freebsd-10.0-release/crypto/openssl/crypto/ec/
H A Dectest.c771 #define CHAR2_CURVE_TEST_INTERNAL(_name, _p, _a, _b, _x, _y, _y_bit, _order, _cof, _degree, _variable) \
772 if (!BN_hex2bn(&x, _x)) ABORT; \
788 #define CHAR2_CURVE_TEST_INTERNAL(_name, _p, _a, _b, _x, _y, _y_bit, _order, _cof, _degree, _variable) \
789 if (!BN_hex2bn(&x, _x)) ABORT; \
803 #define CHAR2_CURVE_TEST(_name, _p, _a, _b, _x, _y, _y_bit, _order, _cof, _degree, _variable) \
808 CHAR2_CURVE_TEST_INTERNAL(_name, _p, _a, _b, _x, _y, _y_bit, _order, _cof, _degree, _variable) \
/freebsd-10.0-release/tools/tools/ath/athrd/
H A Dathrd.c390 #define D(_x) { #_x, _x }
/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Droken.h.in736 #define flock(_x,_y) rk_flock(_x,_y)
/freebsd-10.0-release/sys/dev/safe/
H A Dsafe.c161 #define DPRINTF(_x) if (safe_debug) printf _x
163 #define DPRINTF(_x)
/freebsd-10.0-release/sys/net80211/
H A Dieee80211_ht.c2320 #define senderr(_x, _v) do { vap->iv_stats._v++; ret = _x; goto bad; } while (0)
H A Dieee80211_output.c2121 #define senderr(_x, _v) do { vap->iv_stats._v++; ret = _x; goto bad; } while (0)
/freebsd-10.0-release/sys/dev/bwn/
H A Dif_bwn.c12809 #define CALC_COEFF(_v, _x, _y, _z) do { \
12811 _t = _x - 20; \
12813 _v = ((_y << (30 - _x)) + (_z >> (1 + _t))) / (_z >> _t); \
12815 _v = ((_y << (30 - _x)) + (_z << (-1 - _t))) / (_z << -_t); \
12818 #define CALC_COEFF2(_v, _x, _y, _z) do { \
12820 _t = _x - 11; \
12822 _v = (_y << (31 - _x)) / (_z >> _t); \
12824 _v = (_y << (31 - _x)) / (_z << -_t); \

Completed in 638 milliseconds

123