/freebsd/lib/msun/tests/ |
H A D | test-utils.h | 151 long double _y = y; \ 152 ATF_CHECK_MSG(fpequal_cs(_x, _y, checksign), \ 153 "%s (%.25Lg) ~= %s (%.25Lg)", #x, _x, #y, _y); \ 158 long double _y = y; \ 159 bool eq = fpequal_tol(_x, _y, tol, flags); \ 160 long double _diff = eq ? 0.0L : fabsl(_x - _y); \ 162 #x, _x, #y, _y, _diff, fabsl(_y * tol)); \ 175 long double _y = y; \ 177 fpequal_cs(creal(_x), creal(_y), (checksign & CS_REAL) != 0) && \ 178 fpequal_cs(cimag(_x), cimag(_y), (checksign & CS_IMAG) != 0); \ [all …]
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | math.h | 62 __typeof(y) _y = (y); \ 63 _x > _y ? _x - _y : _y - _x; \
|
/freebsd/contrib/ntp/scripts/monitoring/ |
H A D | lr.pl | 58 my($_x, $_y) = @_; 62 $self->{sy} += $_y; 63 $self->{sxy} += $_x * $_y; 65 $self->{sy2} += $_y**2;
|
/freebsd/sys/net/route/ |
H A D | nhop_utils.h | 148 typeof(*(_head)->ptr) _x, _y; \ 151 _y = _x; \ 152 while (_y != NULL) { \ 153 _y = _PX##_next(_x); \ 157 _x = _y; \
|
/freebsd/sys/contrib/ena-com/ |
H A D | ena_plat.h | 227 #define min_t(type, _x, _y) ((type)(_x) < (type)(_y) ? (type)(_x) : (type)(_y)) argument 228 #define max_t(type, _x, _y) ((type)(_x) > (type)(_y) ? (type)(_x) : (type)(_y)) argument
|
/freebsd/sys/dev/mana/ |
H A D | gdma_util.h | 89 #define min_t(type, _x, _y) \ argument 90 ((type)(_x) < (type)(_y) ? (type)(_x) : (type)(_y))
|
/freebsd/contrib/file/src/ |
H A D | getopt_long.c | 365 #define IDENTICAL_INTERPRETATION(_x, _y) \ argument 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/contrib/googletest/googlemock/test/ |
H A D | gmock-pp_test.cc | 64 #define GMOCK_PP_INTERNAL_VAR_TEST_2(_x, _y) 2 argument 65 #define GMOCK_PP_INTERNAL_VAR_TEST_3(_x, _y, _z) 3 argument
|
/freebsd/contrib/libxo/libxo/ |
H A D | xo.h | 45 #define __printflike(_x, _y) __attribute__((__format__ (__printf__, _x, _y))) argument 47 #define PRINTFLIKE(_x, _y) __printflike(_x, _y) argument 49 #define PRINTFLIKE(_x, _y) argument
|
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/ |
H A D | ar9300_freebsd_inc.h | 161 #define N2DBM(_x,_y) ((((_x) - NOISE_PWR_DATA_OFFSET) << 2) - (_y)/25) argument
|
H A D | ar9300_paprd.c | 76 #define ABS(_x, _y) ((int)_x > (int)_y ? (int)_x - (int)_y : (int)_y - (int)_x) in ar9300_paprd_setup_single_table() argument
|
H A D | ar9300_eeprom.c | 2900 #define ABS(_x, _y) ((int)_x > (int)_y ? (int)_x - (int)_y : (int)_y - (int)_x) in ar9300_eeprom_set_transmit_power() argument
|
/freebsd/sys/dev/sfxge/common/ |
H A D | efsys.h | 1140 #define EFSYS_ASSERT3(_x, _op, _y, _t) do { \ argument 1142 const _t __y = (_t)(_y); \ 1147 #define EFSYS_ASSERT3U(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, uint64_t) argument 1148 #define EFSYS_ASSERT3S(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, int64_t) argument 1149 #define EFSYS_ASSERT3P(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, uintptr_t) argument
|
/freebsd/stand/i386/libi386/ |
H A D | textvidc.c | 59 void curs_move(int *_x, int *_y, int x, int y); 213 curs_move(int *_x, int *_y, int x, int y) in curs_move() argument 223 *_y = y; in curs_move()
|
/freebsd/usr.bin/indent/tests/ |
H A D | float.0 | 6 x._y = 5;
|
H A D | float.0.stdout | 8 x._y = 5;
|
/freebsd/contrib/ntp/sntp/libopts/compat/ |
H A D | windows-config.h | 89 #define fchmod( _x, _y ) argument
|
/freebsd/contrib/llvm-project/openmp/runtime/src/include/ |
H A D | ompx.h.var | 130 static inline int ompx_##NAME##_y() { return ompx_##NAME(ompx_dim_y); } \ 183 static inline int NAME##_y() noexcept { return NAME(ompx_dim_y); } \
|
/freebsd/stand/efi/libefi/ |
H A D | efi_console.c | 60 void curs_move(int *_x, int *_y, int x, int y); 547 curs_move(int *_x, int *_y, int x, int y) in curs_move() argument 552 if (_y != NULL) in curs_move() 553 *_y = conout->Mode->CursorRow; in curs_move()
|
/freebsd/contrib/libpcap/ |
H A D | optimize.c | 298 register bpf_u_int32 *_x = a, *_y = b;\ 300 do *_x++ &= *_y++; while (--_n != 0);\ 309 register bpf_u_int32 *_x = a, *_y = b;\ 311 do *_x++ &=~ *_y++; while (--_n != 0);\ 320 register bpf_u_int32 *_x = a, *_y = b;\ 322 do *_x++ |= *_y++; while (--_n != 0);\
|
/freebsd/sys/dev/bwn/ |
H A D | if_bwn_phy_lp.c | 2377 #define CALC_COEFF(_v, _x, _y, _z) do { \ in bwn_phy_lp_calc_rx_iq_comp() argument 2381 _v = ((_y << (30 - _x)) + (_z >> (1 + _t))) / (_z >> _t); \ in bwn_phy_lp_calc_rx_iq_comp() 2383 _v = ((_y << (30 - _x)) + (_z << (-1 - _t))) / (_z << -_t); \ in bwn_phy_lp_calc_rx_iq_comp() 2386 #define CALC_COEFF2(_v, _x, _y, _z) do { \ in bwn_phy_lp_calc_rx_iq_comp() argument 2390 _v = (_y << (31 - _x)) / (_z >> _t); \ in bwn_phy_lp_calc_rx_iq_comp() 2392 _v = (_y << (31 - _x)) / (_z << -_t); \ in bwn_phy_lp_calc_rx_iq_comp()
|
/freebsd/crypto/heimdal/lib/roken/ |
H A D | roken.h.in | 736 #define flock(_x,_y) rk_flock(_x,_y) argument
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | IntrinsicsAMDGPU.td | 39 def _y : AMDGPUReadPreloadRegisterIntrinsic; 45 def _y : AMDGPUReadPreloadRegisterIntrinsicNamed<!strconcat(prefix, "_y")>;
|
H A D | IntrinsicsNVVM.td | 4470 foreach suffix = ["_x", "_y", "_z", "_w"] in 4477 foreach suffix = ["_x", "_y", "_z", "_w"] in
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | IOHandlerCursesGUI.cpp | 120 Point(int _x = 0, int _y = 0) : x(_x), y(_y) {} in Point()
|