Searched refs:_y (Results 1 - 18 of 18) sorted by relevance

/freebsd-11.0-release/contrib/ntp/scripts/monitoring/
H A Dlr.pl58 my($_x, $_y) = @_;
62 $self->{sy} += $_y;
63 $self->{sxy} += $_x * $_y;
65 $self->{sy2} += $_y**2;
/freebsd-11.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
221 *_y = y;
/freebsd-11.0-release/contrib/ntp/sntp/libopts/compat/
H A Dwindows-config.h89 #define fchmod( _x, _y )
/freebsd-11.0-release/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_freebsd_inc.h174 #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.c2900 #define ABS(_x, _y) ((int)_x > (int)_y ? (int)_x - (int)_y : (int)_y - (int)_x)
/freebsd-11.0-release/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-11.0-release/sys/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) argument
89 if (_y != NULL)
90 *_y = conout->Mode->CursorRow;
/freebsd-11.0-release/contrib/gcc/config/soft-fp/
H A Dop-1.h220 _FP_W_TYPE _nh, _nl, _q, _r, _y; \
223 _y = Y##_f << _FP_WFRACXBITS_##fs; \
238 udiv_qrnnd(_q, _r, _nh, _nl, _y); \
H A Dop-2.h334 _FP_W_TYPE _x[2], _y[2]; \
336 _y[0] = Y##_f0; _y[1] = Y##_f1; \
338 mpn_mul_n(_z_f, _x, _y, 2); \
518 _FP_W_TYPE _x[4], _y[2], _z[4]; \
519 _y[0] = Y##_f0; _y[1] = Y##_f1; \
537 (void) mpn_divrem (_z, 0, _x, 4, _y, 2); \
/freebsd-11.0-release/sys/dev/sfxge/common/
H A Defsys.h1181 #define EFSYS_ASSERT3(_x, _op, _y, _t) do { \
1183 const _t __y = (_t)(_y); \
1188 #define EFSYS_ASSERT3U(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, uint64_t)
1189 #define EFSYS_ASSERT3S(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, int64_t)
1190 #define EFSYS_ASSERT3P(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, uintptr_t)
/freebsd-11.0-release/contrib/libxo/libxo/
H A Dxo.h43 #define PRINTFLIKE(_x, _y) __printflike(_x, _y)
45 #define PRINTFLIKE(_x, _y)
/freebsd-11.0-release/contrib/libpcap/
H A Doptimize.c155 register bpf_u_int32 *_x = a, *_y = b;\
157 while (--_n >= 0) *_x++ &= *_y++;\
165 register bpf_u_int32 *_x = a, *_y = b;\
167 while (--_n >= 0) *_x++ &=~ *_y++;\
175 register bpf_u_int32 *_x = a, *_y = b;\
177 while (--_n >= 0) *_x++ |= *_y++;\
/freebsd-11.0-release/crypto/openssl/crypto/ec/
H A Dectest.c1008 # define CHAR2_CURVE_TEST_INTERNAL(_name, _p, _a, _b, _x, _y, _y_bit, _order, _cof, _degree, _variable) \
1022 if (!BN_hex2bn(&z, _y)) ABORT; \
1025 # define CHAR2_CURVE_TEST_INTERNAL(_name, _p, _a, _b, _x, _y, _y_bit, _order, _cof, _degree, _variable) \
1027 if (!BN_hex2bn(&y, _y)) ABORT; \
1040 # define CHAR2_CURVE_TEST(_name, _p, _a, _b, _x, _y, _y_bit, _order, _cof, _degree, _variable) \
1045 CHAR2_CURVE_TEST_INTERNAL(_name, _p, _a, _b, _x, _y, _y_bit, _order, _cof, _degree, _variable) \
/freebsd-11.0-release/sys/dev/bwn/
H A Dif_bwn_phy_lp.c2282 #define CALC_COEFF(_v, _x, _y, _z) do { \
2286 _v = ((_y << (30 - _x)) + (_z >> (1 + _t))) / (_z >> _t); \
2288 _v = ((_y << (30 - _x)) + (_z << (-1 - _t))) / (_z << -_t); \
2291 #define CALC_COEFF2(_v, _x, _y, _z) do { \
2295 _v = (_y << (31 - _x)) / (_z >> _t); \
2297 _v = (_y << (31 - _x)) / (_z << -_t); \
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DIOHandler.cpp828 Point (int _x = 0, int _y = 0) :
830 y(_y)
/freebsd-11.0-release/sys/dev/isp/
H A Disp.c3481 uint8_t _y[SNS_GID_FT_REQ_SIZE]; member in union:__anon10384

Completed in 424 milliseconds