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

/freebsd-13-stable/lib/msun/tests/
H A Dtest-utils.h153 long double _y = y; \
154 ATF_CHECK_MSG(fpequal_cs(_x, _y, checksign), \
155 "%s (%.25Lg) ~= %s (%.25Lg)", #x, _x, #y, _y); \
160 long double _y = y; \
161 bool eq = fpequal_tol(_x, _y, tol, flags); \
162 long double _diff = eq ? 0.0L : fabsl(_x - _y); \
164 #x, _x, #y, _y, _diff, fabsl(_y * tol)); \
177 long double _y = y; \
179 fpequal_cs(creal(_x), creal(_y), (checksig
[all...]
/freebsd-13-stable/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-13-stable/sys/net/route/
H A Dnhop_utils.h162 typeof(*(_head)->ptr) _x, _y; \
165 _y = _x; \
166 while (_y != NULL) { \
167 _y = _PX##_next(_x); \
171 _x = _y; \
/freebsd-13-stable/contrib/ntp/sntp/libopts/compat/
H A Dwindows-config.h89 #define fchmod( _x, _y )
/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/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-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/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/sfxge/common/
H A Defsys.h1141 #define EFSYS_ASSERT3(_x, _op, _y, _t) do { \
1143 const _t __y = (_t)(_y); \
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/stand/efi/libefi/
H A Defi_console.c61 void curs_move(int *_x, int *_y, int x, int y);
523 curs_move(int *_x, int *_y, int x, int y) argument
528 if (_y != NULL)
529 *_y = conout->Mode->CursorRow;
/freebsd-13-stable/contrib/libpcap/
H A Doptimize.c285 register bpf_u_int32 *_x = a, *_y = b;\
287 while (--_n >= 0) *_x++ &= *_y++;\
295 register bpf_u_int32 *_x = a, *_y = b;\
297 while (--_n >= 0) *_x++ &=~ *_y++;\
305 register bpf_u_int32 *_x = a, *_y = b;\
307 while (--_n >= 0) *_x++ |= *_y++;\
/freebsd-13-stable/sys/dev/bwn/
H A Dif_bwn_phy_lp.c2379 #define CALC_COEFF(_v, _x, _y, _z) do { \
2383 _v = ((_y << (30 - _x)) + (_z >> (1 + _t))) / (_z >> _t); \
2385 _v = ((_y << (30 - _x)) + (_z << (-1 - _t))) / (_z << -_t); \
2388 #define CALC_COEFF2(_v, _x, _y, _z) do { \
2392 _v = (_y << (31 - _x)) / (_z >> _t); \
2394 _v = (_y << (31 - _x)) / (_z << -_t); \
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp105 Point(int _x = 0, int _y = 0) : x(_x), y(_y) {}

Completed in 497 milliseconds