Searched refs:_x (Results 1 - 25 of 51) sorted by path

123

/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/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/contrib/gcclibs/libgomp/
H A Domp.h.in39 unsigned char _x[@OMP_LOCK_SIZE@]
45 unsigned char _x[@OMP_NEST_LOCK_SIZE@]
/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/contrib/llvm/include/llvm/Support/
H A Dsystem_error.h719 inline bool operator<(const error_condition& _x, const error_condition& _y) { argument
720 return _x.category() < _y.category()
721 || (_x.category() == _y.category() && _x.value() < _y.value());
786 inline bool operator<(const error_code& _x, const error_code& _y) { argument
787 return _x.category() < _y.category()
788 || (_x.category() == _y.category() && _x.value() < _y.value());
791 inline bool operator==(const error_code& _x, const error_code& _y) { argument
792 return _x
795 operator ==(const error_code& _x, const error_condition& _y) argument
800 operator ==(const error_condition& _x, const error_code& _y) argument
804 operator ==(const error_condition& _x, const error_condition& _y) argument
808 operator !=(const error_code& _x, const error_code& _y) argument
812 operator !=(const error_code& _x, const error_condition& _y) argument
816 operator !=(const error_condition& _x, const error_code& _y) argument
820 operator !=(const error_condition& _x, const error_condition& _y) argument
[all...]
/freebsd-10.0-release/contrib/ntp/libopts/compat/
H A Dwindows-config.h104 #define fchmod( _x, _y );
/freebsd-10.0-release/contrib/ntp/scripts/monitoring/
H A Dlr.pl58 my($_x, $_y) = @_;
61 $self->{sx} += $_x;
63 $self->{sxy} += $_x * $_y;
64 $self->{sx2} += $_x**2;
/freebsd-10.0-release/contrib/ntp/sntp/libopts/compat/
H A Dwindows-config.h104 #define fchmod( _x, _y );
/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/crypto/heimdal/lib/roken/
H A Droken.h.in736 #define flock(_x,_y) rk_flock(_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/etc/rc.d/
H A Djail171 eval _x=\"\$jail_${_j}_ip_multi${alias}\"
172 [ -z "$_x" ] && break
174 jail_handle_ips_option $_x $_interface
334 local _x _type _i _defif
335 _x=$1
338 if [ -z "${_x}" ]; then
346 while [ ${#_x} -gt 0 ]; do
347 case "${_x}" in
349 _i=`expr "${_x}" : '^\([^,]*\)'`
350 _x
[all...]
H A Drfcomm_pppd_server23 local _bdaddr _channel _x
52 eval _x=\$rfcomm_pppd_server_${_profile_cleaned}_register_sp
53 if [ -n "${_x}" ]; then
61 eval _x=\$rfcomm_pppd_server_${_profile_cleaned}_register_dun
62 if [ -n "${_x}" ]; then
/freebsd-10.0-release/include/
H A D_ctype.h160 unsigned int _x; local
164 _x = (unsigned int)__maskrune(_c, _CTYPE_SWM|_CTYPE_R);
165 if ((_x & _CTYPE_SWM) != 0)
166 return ((_x & _CTYPE_SWM) >> _CTYPE_SWS);
167 return ((_x & _CTYPE_R) != 0 ? 1 : -1);
/freebsd-10.0-release/include/xlocale/
H A D_ctype.h164 unsigned int _x; local
168 _x = (unsigned int)__maskrune_l(_c, _CTYPE_SWM|_CTYPE_R, __l);
169 if ((_x & _CTYPE_SWM) != 0)
170 return ((_x & _CTYPE_SWM) >> _CTYPE_SWS);
171 return ((_x & _CTYPE_R) != 0 ? 1 : -1);
/freebsd-10.0-release/lib/libelf/
H A Dlibelf_convert.m448 uint16_t _x = (uint16_t) (X); \
49 uint16_t _t = _x & 0xFF; \
50 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
54 uint32_t _x = (uint32_t) (X); \
55 uint32_t _t = _x & 0xFF; \
56 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
57 _t <<= 8; _x >>= 8; _t |= _x
[all...]
/freebsd-10.0-release/sys/arm/include/
H A Dendian.h76 __bswap64(__uint64_t _x) argument
79 return ((_x >> 56) | ((_x >> 40) & 0xff00) | ((_x >> 24) & 0xff0000) |
80 ((_x >> 8) & 0xff000000) | ((_x << 8) & ((__uint64_t)0xff << 32)) |
81 ((_x << 24) & ((__uint64_t)0xff << 40)) |
82 ((_x << 40) & ((__uint64_t)0xff << 48)) | ((_x << 56)));
/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 Dspinconsole.c45 extern void curs_move(int *_x, int *_y, int x, int y);
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/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_eeprom.c2659 #define ABS(_x, _y) ((int)_x > (int)_y ? (int)_x - (int)_y : (int)_y - (int)_x)
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 Dar9300eep.h413 #define SWAP16(_x) ( (u_int16_t)( (((const u_int8_t *)(&_x))[0] ) |\
414 ( ( (const u_int8_t *)( &_x ) )[1]<< 8) ) )
416 #define SWAP32(_x) ((u_int32_t)( \
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))[
[all...]
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...]

Completed in 296 milliseconds

123