Home
last modified time | relevance | path

Searched refs:_x (Results 1 – 25 of 48) sorted by relevance

12

/dragonfly/sys/dev/misc/evdev/
H A Dfreebsd-bitstring.h80 _x = (_x & 0x5555) + ((_x & 0xaaaa) >> 1); in __bitcount16()
81 _x = (_x & 0x3333) + ((_x & 0xcccc) >> 2); in __bitcount16()
82 _x = (_x + (_x >> 4)) & 0x0f0f; in __bitcount16()
83 _x = (_x + (_x >> 8)) & 0x00ff; in __bitcount16()
93 _x = (_x + (_x >> 4)) & 0x0f0f0f0f; in __bitcount32()
94 _x = (_x + (_x >> 8)); in __bitcount32()
95 _x = (_x + (_x >> 16)) & 0x000000ff; in __bitcount32()
106 _x = (_x + (_x >> 4)) & 0x0f0f0f0f0f0f0f0f; in __bitcount64()
107 _x = (_x + (_x >> 8)); in __bitcount64()
108 _x = (_x + (_x >> 16)); in __bitcount64()
[all …]
/dragonfly/sys/cpu/x86_64/include/
H A Dendian.h153 __bswap64(__uint64_t _x) in __bswap64() argument
156 return (__builtin_bswap64(_x)); in __bswap64()
158 return (__byte_swap_long(_x)); in __bswap64()
163 __bswap32(__uint32_t _x) in __bswap32() argument
166 return (__builtin_bswap32(_x)); in __bswap32()
168 return (__byte_swap_int(_x)); in __bswap32()
173 __bswap16(__uint16_t _x) in __bswap16() argument
176 return (__builtin_bswap16(_x)); in __bswap16()
178 return (__byte_swap_word(_x)); in __bswap16()
/dragonfly/sys/bus/u4b/
H A Dusb_core.h48 #define USB_XFER_LOCK(_x) lockmgr((_x)->xroot->xfer_lock, LK_EXCLUSIVE) argument
49 #define USB_XFER_UNLOCK(_x) lockmgr((_x)->xroot->xfer_lock, LK_RELEASE) argument
50 #define USB_XFER_LOCK_ASSERT(_x) KKASSERT(lockowned((_x)->xroot->xfer_lock)) argument
51 #define USB_XFER_LOCK_ASSERT_NOTOWNED(_x) KKASSERT(!lockowned((_x)->xroot->xfer_lock)) argument
/dragonfly/contrib/bmake/mk/
H A Dmkopt.sh93 for _x in $_cmdline
95 case "$_x" in
99 case "$_x" in
100 -DWITH_$_o|-DWITHOUT_$_o) eval ${_x#-D}=1;;
101 -DWITH_$_o=*|-DWITHOUT_$_o=*) eval ${_x#-D};;
102 ${_MKOPT_PREFIX:-MK_}$_o=*) eval "$_x";;
/dragonfly/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300eep.h413 #define SWAP16(_x) ( (u_int16_t)( (((const u_int8_t *)(&_x))[0] ) |\ argument
416 #define SWAP32(_x) ((u_int32_t)( \ argument
417 (((const u_int8_t *)(&_x))[0]) | \
418 (((const u_int8_t *)(&_x))[1]<< 8) | \
419 (((const u_int8_t *)(&_x))[2]<<16) | \
420 (((const u_int8_t *)(&_x))[3]<<24)))
425 #define SWAP16(_x) ( (u_int16_t)( (((const u_int8_t *)(&_x))[1] ) |\ argument
428 #define SWAP32(_x) ((u_int32_t)( \ argument
429 (((const u_int8_t *)(&_x))[3]) | \
430 (((const u_int8_t *)(&_x))[2]<< 8) | \
[all …]
H A Dar9300phy.h41 #define AR_CHAN_OFFSET(_x) (AR_CHAN_BASE + offsetof(struct chn_reg_map, _x)) argument
293 #define AR_MRC_OFFSET(_x) (AR_MRC_BASE + offsetof(struct mrc_reg_map, _x)) argument
328 #define AR_BBB_OFFSET(_x) (AR_BBB_BASE + offsetof(struct bbb_reg_map, _x)) argument
336 #define AR_AGC_OFFSET(_x) (AR_AGC_BASE + offsetof(struct agc_reg_map, _x)) argument
523 #define AR_SM_OFFSET(_x) (AR_SM_BASE + offsetof(struct sm_reg_map, _x)) argument
1208 #define AR_CHAN1_OFFSET(_x) (AR_CHAN1_BASE + offsetof(struct chn1_reg_map, _x)) argument
1236 #define AR_AGC1_OFFSET(_x) (AR_AGC1_BASE + offsetof(struct agc1_reg_map, _x)) argument
1271 #define AR_SM1_OFFSET(_x) (AR_SM1_BASE + offsetof(struct sm1_reg_map, _x)) argument
1353 #define AR_AGC2_OFFSET(_x) (AR_AGC2_BASE + offsetof(struct agc2_reg_map, _x)) argument
1374 #define AR_SM2_OFFSET(_x) (AR_SM2_BASE + offsetof(struct sm2_reg_map, _x)) argument
[all …]
H A Dar9300reg.h26 #define AR_MAC_DMA_OFFSET(_x) offsetof(struct mac_dma_reg, _x) argument
447 #define AR_MAC_QCU_OFFSET(_x) offsetof(struct mac_qcu_reg, _x) argument
549 #define AR_MAC_DCU_OFFSET(_x) offsetof(struct mac_dcu_reg, _x) argument
727 #define AR9300_HOSTIF_OFFSET(_x) offsetof(struct host_intf_reg, _x) argument
1089 #define AR_OTP_EFUSE_OFFSET(_x) offsetof(struct efuse_reg_WLAN, _x) argument
1099 #define AR_RTC_OFFSET(_x) offsetof(struct rtc_reg, _x) argument
1170 #define AR_RTC_SYNC_OFFSET(_x) offsetof(struct rtc_sync_reg, _x) argument
1210 #define AR_AN_OFFSET(_x) offsetof(struct analog_intf_reg_csr, _x) argument
1309 #define AR_MAC_PCU_OFFSET(_x) offsetof(struct mac_pcu_reg, _x) argument
2471 #define AR_SVD_OFFSET(_x) offsetof(struct svd_reg, _x) argument
[all …]
H A Dar9300_freebsd_inc.h191 #define N2DBM(_x,_y) ((((_x) - NOISE_PWR_DATA_OFFSET) << 2) - (_y)/25) argument
/dragonfly/sys/dev/drm/include/linux/
H A Dkernel.h81 #define min_t(type, _x, _y) ((type)(_x) < (type)(_y) ? (type)(_x) : (type)(_y)) argument
82 #define max_t(type, _x, _y) ((type)(_x) > (type)(_y) ? (type)(_x) : (type)(_y)) argument
84 #define clamp_t(type, _x, min, max) min_t(type, max_t(type, _x, min), max) argument
/dragonfly/contrib/mpfr/src/
H A Dmpfr-impl.h950 #define MPFR_TMP_DECL(_x) unsigned char *(_x) argument
951 #define MPFR_TMP_MARK(_x) ((_x) = mpfr_stack) argument
953 #define MPFR_TMP_FREE(_x) (mpfr_stack = (_x)) argument
1478 #define MPFR_ZIV_DECL(_x) mpfr_prec_t _x argument
1479 #define MPFR_ZIV_INIT(_x, _p) (_x) = GMP_NUMB_BITS argument
1480 #define MPFR_ZIV_NEXT(_x, _p) ((_p) += (_x), (_x) = (_p)/2) argument
1499 #define MPFR_ZIV_DECL(_x) \ argument
1502 static unsigned long _x ## _loop = 0, _x ## _bad = 0; \
1509 _x ## _fname, (double) 100.0 * _x ## _bad / _x ## _loop, \
1510 _x ## _bad, _x ## _loop ); }
[all …]
H A Dmpfr.h743 MPFR_EXTENSION mpfr_t _x = {{(_p),1,__MPFR_EXP_NAN,__gmpfr_local_tab_##_x}}
751 #define mpfr_nan_p(_x) ((_x)->_mpfr_exp == __MPFR_EXP_NAN) argument
752 #define mpfr_inf_p(_x) ((_x)->_mpfr_exp == __MPFR_EXP_INF) argument
753 #define mpfr_zero_p(_x) ((_x)->_mpfr_exp == __MPFR_EXP_ZERO) argument
754 #define mpfr_regular_p(_x) ((_x)->_mpfr_exp > __MPFR_EXP_INF) argument
758 MPFR_SIGN (_x))
762 #define mpfr_get_prec(_x) MPFR_VALUE_OF((_x)->_mpfr_prec) argument
763 #define mpfr_get_exp(_x) MPFR_VALUE_OF((_x)->_mpfr_exp) argument
855 mpfr_ptr _x = (x); \
870 _x->_mpfr_prec = (p); \
[all …]
/dragonfly/sys/dev/drm/include/asm/
H A Duaccess.h32 #define get_user(_x, _p) -copyin((_p), &(_x), sizeof(*(_p))) argument
102 #define put_user(_x, _p) __put_user(_x, _p) argument
/dragonfly/contrib/gcc-4.7/libgcc/soft-fp/
H A Dop-2.h333 _FP_W_TYPE _x[2], _y[2]; \
334 _x[0] = X##_f0; _x[1] = X##_f1; \
337 mpn_mul_n(_z_f, _x, _y, 2); \
517 _FP_W_TYPE _x[4], _y[2], _z[4]; \
519 _x[0] = _x[3] = 0; \
523 _x[1] = (X##_f0 << (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE) | \
526 _x[2] = X##_f1 << (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE); \
530 _x[1] = (X##_f0 << (_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE) | \
533 _x[2] = X##_f1 << (_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE); \
536 (void) mpn_divrem (_z, 0, _x, 4, _y, 2); \
[all …]
/dragonfly/include/
H A Dctype.h179 unsigned int _x; in __wcwidth() local
183 _x = (unsigned int)__maskrune(_c, _CTYPE_SWM|_CTYPE_R); in __wcwidth()
184 if ((_x & _CTYPE_SWM) != 0) in __wcwidth()
185 return ((_x & _CTYPE_SWM) >> _CTYPE_SWS); in __wcwidth()
186 return ((_x & _CTYPE_R) != 0 ? 1 : -1); in __wcwidth()
/dragonfly/contrib/elftoolchain/libelf/
H A Dlibelf_convert.m4538 _t <<= 8U; _x >>= 8U; _t |= _x & 0xFFU; \
544 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
545 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
546 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
556 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
557 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
558 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
559 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
560 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
561 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
[all …]
/dragonfly/include/xlocale/
H A D_ctype.h164 unsigned int _x; in __wcwidth_l() local
168 _x = (unsigned int)__maskrune_l(_c, _CTYPE_SWM|_CTYPE_R, __l); in __wcwidth_l()
169 if ((_x & _CTYPE_SWM) != 0) in __wcwidth_l()
170 return ((_x & _CTYPE_SWM) >> _CTYPE_SWS); in __wcwidth_l()
171 return ((_x & _CTYPE_R) != 0 ? 1 : -1); in __wcwidth_l()
/dragonfly/sys/dev/virtual/amazon/ena/ena-com/
H A Dena_plat.h193 #define min_t(type, _x, _y) ((type)(_x) < (type)(_y) ? (type)(_x) : (type)(_y)) argument
194 #define max_t(type, _x, _y) ((type)(_x) > (type)(_y) ? (type)(_x) : (type)(_y)) argument
/dragonfly/tools/regression/bin/sh/expansion/
H A Darith12.03 _x=4 y_=5 z_z=6
4 [ "$((_x*100+y_*10+z_z))" = 456 ]
/dragonfly/sys/sys/
H A Dbitops.h90 #define _ilog2_helper(_n, _x) ((_n) & (1ULL << (_x))) ? _x : argument
/dragonfly/stand/boot/efi/libefi/
H A Defi_console.c48 void curs_move(int *_x, int *_y, int x, int y);
84 curs_move(int *_x, int *_y, int x, int y) in curs_move() argument
87 if (_x != NULL) in curs_move()
88 *_x = conout->Mode->CursorColumn; in curs_move()
/dragonfly/lib/libexecinfo/
H A Dprivate_libelf.h1291 _t <<= 8U; _x >>= 8U; _t |= _x & 0xFFU; \
1297 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
1298 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
1299 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
1307 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
1308 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
1309 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
1310 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
1311 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
1312 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
[all …]
/dragonfly/contrib/gcc-4.7/libgomp/
H A Domp.h.in36 unsigned char _x[@OMP_LOCK_SIZE@] member
42 unsigned char _x[@OMP_NEST_LOCK_SIZE@] member
/dragonfly/contrib/gcc-4.7/libgcc/
H A Dlonglong.h506 UWtype _x = (x), _y, _a, _c; \
507 __asm__ ("mux1 %0 = %1, @rev" : "=r" (_y) : "r" (_x)); \
510 _x >>= _c; \
511 if (_x >= 1 << 4) \
512 _x >>= 4, _c += 4; \
513 if (_x >= 1 << 2) \
514 _x >>= 2, _c += 2; \
515 _c += _x >> 1; \
/dragonfly/contrib/binutils-2.27/include/
H A Dlonglong.h570 UWtype _x = (x), _y, _a, _c; \
571 __asm__ ("mux1 %0 = %1, @rev" : "=r" (_y) : "r" (_x)); \
574 _x >>= _c; \
575 if (_x >= 1 << 4) \
576 _x >>= 4, _c += 4; \
577 if (_x >= 1 << 2) \
578 _x >>= 2, _c += 2; \
579 _c += _x >> 1; \
/dragonfly/contrib/gcc-8.0/include/
H A Dlonglong.h572 UWtype _x = (x), _y, _a, _c; \
573 __asm__ ("mux1 %0 = %1, @rev" : "=r" (_y) : "r" (_x)); \
576 _x >>= _c; \
577 if (_x >= 1 << 4) \
578 _x >>= 4, _c += 4; \
579 if (_x >= 1 << 2) \
580 _x >>= 2, _c += 2; \
581 _c += _x >> 1; \

12