/freebsd/sys/powerpc/fpu/ |
H A D | fpu_arith.h | 78 #define FPU_ADDC(r, x, y) \ argument 80 #define FPU_ADDS(r, x, y) \ argument 86 #define FPU_ADDCS(r, x, y) \ argument 92 #define FPU_SUBC(r, x, y) \ argument 94 #define FPU_SUBS(r, x, y) \ argument 100 #define FPU_SUBCS(r, x, y) \ argument 130 #define FPU_ADDC(r, x, y) \ argument 132 #define FPU_ADDS(r, x, y) \ argument 134 #define FPU_ADDCS(r, x, y) \ argument 136 #define FPU_SUBC(r, x, y) \ argument [all …]
|
/freebsd/sys/arm/include/ |
H A D | asm.h | 95 #define ENTRY(y) _ENTRY(_C_LABEL(y)); argument 96 #define EENTRY(y) _EENTRY(_C_LABEL(y)); argument 97 #define ENTRY_NP(y) _ENTRY(_C_LABEL(y)) argument 98 #define EENTRY_NP(y) _EENTRY(_C_LABEL(y)) argument 99 #define END(y) _END(_C_LABEL(y)) argument 100 #define EEND(y) _EEND(_C_LABEL(y)) argument 101 #define ASENTRY(y) _ENTRY(_ASM_LABEL(y)); argument 102 #define ASLENTRY(y) _LENTRY(_ASM_LABEL(y)); argument 103 #define ASEENTRY(y) _EENTRY(_ASM_LABEL(y)); argument 104 #define ASLEENTRY(y) _LEENTRY(_ASM_LABEL(y)); argument [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
H A D | int_math.h | 61 #define crt_copysign(x, y) copysign((x), (y)) argument 62 #define crt_copysignf(x, y) copysignf((x), (y)) argument 63 #define crt_copysignl(x, y) copysignl((x), (y)) argument 65 #define crt_copysign(x, y) __builtin_copysign((x), (y)) argument 66 #define crt_copysignf(x, y) __builtin_copysignf((x), (y)) argument 67 #define crt_copysignl(x, y) __builtin_copysignl((x), (y)) argument 72 #define crt_copysignf128(x, y) __builtin_copysignf128((x), (y)) argument 74 #define crt_copysignf128(x, y) __builtin_copysignq((x), (y)) argument 96 #define crt_fmaxl(x, y) __max((x), (y)) argument 98 #define crt_fmaxl(x, y) __builtin_fmaxl((x), (y)) argument [all …]
|
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/ |
H A D | debug.h | 110 #define VERIFY3B(x, y, z) VERIFY3_IMPL(x, y, z, boolean_t) argument 111 #define VERIFY3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) argument 112 #define VERIFY3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) argument 113 #define VERIFY3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t) argument 117 #define ASSERT3B(x, y, z) VERIFY3_IMPL(x, y, z, boolean_t) argument 118 #define ASSERT3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) argument 119 #define ASSERT3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) argument 120 #define ASSERT3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t) argument 123 #define ASSERT3B(x, y, z) ((void)0) argument 124 #define ASSERT3S(x, y, z) ((void)0) argument [all …]
|
/freebsd/include/ |
H A D | complex.h | 51 #define CMPLX(x, y) ((double complex){ x, y }) argument 52 #define CMPLXF(x, y) ((float complex){ x, y }) argument 53 #define CMPLXL(x, y) ((long double complex){ x, y }) argument 55 #define CMPLX(x, y) __builtin_complex((double)(x), (double)(y)) argument 56 #define CMPLXF(x, y) __builtin_complex((float)(x), (float)(y)) argument 57 #define CMPLXL(x, y) __builtin_complex((long double)(x), (long double)(y)) argument
|
H A D | tgmath.h | 77 #define __tg_impl_simple(x, y, z, fnl, fn, fnf, ...) \ argument 81 #define __tg_impl_full(x, y, cfnl, cfn, cfnf, fnl, fn, fnf, ...) \ argument 92 #define __tg_impl_simple(x, y, z, fnl, fn, fnf, ...) \ argument 112 #define __tg_impl_full(x, y, cfnl, cfn, cfnf, fnl, fn, fnf, ...) \ argument 128 #define __tg_simple2(x, y, fn) \ argument 130 #define __tg_simple3(x, y, z, fn) \ argument 136 #define __tg_full2(x, y, fn) \ argument 155 #define pow(x, y) __tg_full2(x, y, pow) argument 163 #define atan2(x, y) __tg_simple2(x, y, atan2) argument 166 #define copysign(x, y) __tg_simple2(x, y, copysign) argument [all …]
|
/freebsd/contrib/diff/lib/ |
H A D | unlocked-io.h | 69 # define fgets(x,y,z) fgets_unlocked (x,y,z) argument 71 # define fgets_unlocked(x,y,z) fgets (x,y,z) argument 75 # define fputc(x,y) fputc_unlocked (x,y) argument 77 # define fputc_unlocked(x,y) fputc (x,y) argument 81 # define fputs(x,y) fputs_unlocked (x,y) argument 83 # define fputs_unlocked(x,y) fputs (x,y) argument 87 # define fread(w,x,y,z) fread_unlocked (w,x,y,z) argument 89 # define fread_unlocked(w,x,y,z) fread (w,x,y,z) argument 93 # define fwrite(w,x,y,z) fwrite_unlocked (w,x,y,z) argument 95 # define fwrite_unlocked(w,x,y,z) fwrite (w,x,y,z) argument [all …]
|
/freebsd/contrib/arm-optimized-routines/math/ |
H A D | math_err.c | 15 with_errno (double y, int e) in with_errno() 26 xflow (uint32_t sign, double y) in xflow() 57 double y = opt_barrier_double (sign ? -1.0 : 1.0) / 0.0; in __math_divzero() local 64 double y = (x - x) / (x - x); in __math_invalid() local 71 __math_check_uflow (double y) in __math_check_uflow() 77 __math_check_oflow (double y) in __math_check_oflow()
|
H A D | math_errf.c | 15 with_errnof (float y, int e) in with_errnof() 26 xflowf (uint32_t sign, float y) in xflowf() 57 float y = opt_barrier_float (sign ? -1.0f : 1.0f) / 0.0f; in __math_divzerof() local 64 float y = (x - x) / (x - x); in __math_invalidf() local 71 __math_check_uflowf (float y) in __math_check_uflowf() 77 __math_check_oflowf (float y) in __math_check_oflowf()
|
/freebsd/contrib/netbsd-tests/lib/libm/ |
H A D | t_ceil.c | 57 const double y = 0.000000000000001; in ATF_TC_BODY() local 85 double y = ceil(x); in ATF_TC_BODY() local 100 double y = ceil(x); in ATF_TC_BODY() local 115 double y = ceil(x); in ATF_TC_BODY() local 130 double y = ceil(x); in ATF_TC_BODY() local 148 const float y = 0.0000001; in ATF_TC_BODY() local 176 float y = ceilf(x); in ATF_TC_BODY() local 191 float y = ceilf(x); in ATF_TC_BODY() local 206 float y = ceilf(x); in ATF_TC_BODY() local 221 float y = ceilf(x); in ATF_TC_BODY() local [all …]
|
H A D | t_sinh.c | 41 double y; member 103 double y = sinh(x); in ATF_TC_BODY() local 118 double y = sinh(x); in ATF_TC_BODY() local 133 double y = sinh(x); in ATF_TC_BODY() local 148 double y = sinh(x); in ATF_TC_BODY() local 202 float y = sinhf(x); in ATF_TC_BODY() local 217 float y = sinhf(x); in ATF_TC_BODY() local 232 float y = sinhf(x); in ATF_TC_BODY() local 247 float y = sinhf(x); in ATF_TC_BODY() local
|
H A D | t_cbrt.c | 97 double y = cbrt(x); in ATF_TC_BODY() local 112 double y = cbrt(x); in ATF_TC_BODY() local 127 double y = cbrt(x); in ATF_TC_BODY() local 142 double y = cbrt(x); in ATF_TC_BODY() local 207 float y = cbrtf(x); in ATF_TC_BODY() local 222 float y = cbrtf(x); in ATF_TC_BODY() local 237 float y = cbrtf(x); in ATF_TC_BODY() local 252 float y = cbrtf(x); in ATF_TC_BODY() local 333 long double y = cbrtl(x); in ATF_TC_BODY() local 348 long double y = cbrtl(x); in ATF_TC_BODY() local [all …]
|
/freebsd/lib/msun/tests/ |
H A D | test-utils.h | 82 CMPLXL(long double x, long double y) in CMPLXL() 106 fpequal_cs(long double x, long double y, bool checksign) in fpequal_cs() 117 fpequal_tol(long double x, long double y, long double tol, in fpequal_tol() 147 #define CHECK_FPEQUAL(x, y) CHECK_FPEQUAL_CS(x, y, true) argument 149 #define CHECK_FPEQUAL_CS(x, y, checksign) do { \ argument 156 #define CHECK_FPEQUAL_TOL(x, y, tol, flags) do { \ argument 173 #define CHECK_CFPEQUAL_CS(x, y, checksign) do { \ argument 183 #define CHECK_CFPEQUAL_TOL(x, y, tol, flags) do { \ argument
|
H A D | rem_test.c | 46 #define test(x, y, e_r, e_q) do { \ argument 106 test_invalid(long double x, long double y) in test_invalid() 139 testl(long double x, long double y, long double expected_rem, int expected_quo) in testl() 161 testd(double x, double y, double expected_rem, int expected_quo) in testd() 183 testf(float x, float y, float expected_rem, int expected_quo) in testf()
|
/freebsd/contrib/dialog/ |
H A D | mouse.c | 48 dlg_mouse_setbase(int x, int y) in dlg_mouse_setbase() 62 dlg_mouse_mkbigregion(int y, int x, in dlg_mouse_mkbigregion() 85 dlg_mouse_mkregion(int y, int x, int height, int width, int code) in dlg_mouse_mkregion() 123 any_mouse_region(int y, int x, int small) in any_mouse_region() 144 dlg_mouse_region(int y, int x) in dlg_mouse_region() 151 dlg_mouse_bigregion(int y, int x) in dlg_mouse_bigregion()
|
/freebsd/crypto/heimdal/kuser/ |
H A D | kuser_locl.h | 95 #define N_(x,y) gettext(x) argument 96 #define NP_(x,y) (x) argument 99 #define N_(x,y) (x) argument 100 #define NP_(x,y) (x) argument
|
/freebsd/lib/msun/src/ |
H A D | math.h | 100 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument 101 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument 102 #define isless(x, y) __builtin_isless((x), (y)) argument 103 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument 104 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument 105 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument 107 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument 108 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument 109 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument 110 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_verify/sodium/ |
H A D | verify.c | 45 const volatile __m128i *volatile y = in crypto_verify_n() local 69 const volatile unsigned char *volatile y = in crypto_verify_n() local 83 crypto_verify_16(const unsigned char *x, const unsigned char *y) in crypto_verify_16() 89 crypto_verify_32(const unsigned char *x, const unsigned char *y) in crypto_verify_32() 95 crypto_verify_64(const unsigned char *x, const unsigned char *y) in crypto_verify_64()
|
/freebsd/lib/libcalendar/ |
H A D | easter.c | 38 easterg(int y, date *dt) in easterg() 57 easterog(int y, date *dt) in easterog() 65 easteroj(int y, date * dt) in easteroj() 73 easterodn(int y) in easterodn()
|
/freebsd/contrib/sendmail/include/sm/ |
H A D | cdefs.h | 49 # define __CONCAT(x,y) x ## y argument 53 # define __CONCAT(x,y) x/**/y argument 133 # define PRINTFLIKE(x,y) __attribute__ ((__format__ (__printf__, x, y))) argument 135 # define PRINTFLIKE(x,y) argument 141 # define SCANFLIKE(x,y) __attribute__ ((__format__ (__scanf__, x, y))) argument 143 # define SCANFLIKE(x,y) argument
|
/freebsd/tools/build/cross-build/include/common/sys/ |
H A D | param.h | 75 #define rounddown(x, y) (((x) / (y)) * (y)) argument 78 #define rounddown2(x, y) ((x) & (~((y)-1))) /* if y is power of two */ argument 81 #define roundup(x, y) ((((x) + ((y)-1)) / (y)) * (y)) /* to any y */ argument 84 #define roundup2(x, y) \ argument
|
/freebsd/contrib/tcpdump/ |
H A D | funcattrs.h | 120 #define PRINTFLIKE(x,y) __attribute__((__format__(__printf__,x,y))) argument 140 #define PRINTFLIKE_FUNCPTR(x,y) __attribute__((__format__(__printf__,x,y))) argument 145 #define PRINTFLIKE(x,y) argument 148 #define PRINTFLIKE_FUNCPTR(x,y) argument
|
/freebsd/crypto/libecc/include/libecc/hash/ |
H A D | keccak.h | 21 #define _KECCAK_ROTL_(x, y) (((x) << (y)) | ((x) >> ((sizeof(u64) * 8) - (y)))) argument 27 #define KECCAK_ROTL(x, y) ((((y) < (sizeof(u64) * 8)) && ((y) > 0)) ? (_KECCAK_ROTL_(x, y)) : (x)) argument 67 #define Idx_slices(x, y) ((x) + (KECCAK_SLICES * (y))) argument 68 #define Idx(A, x, y) ((A)[Idx_slices(x, y)]) argument
|
/freebsd/contrib/arm-optimized-routines/math/test/rtest/ |
H A D | semi.c | 274 uint32 y[2]; in test_ldexp() local 352 uint32 y; in test_ldexpf() local 557 char *test_copysign(uint32 *x, uint32 *y, uint32 *out) in test_copysign() 569 char *test_copysignf(uint32 *x, uint32 *y, uint32 *out) in test_copysignf() 701 static int fpcmp4(uint32 *x, uint32 *y) in fpcmp4() 761 static int fpcmp4f(uint32 *x, uint32 *y) in fpcmp4f() 811 char *test_isgreater(uint32 *x, uint32 *y, uint32 *out) in test_isgreater() 818 char *test_isgreaterequal(uint32 *x, uint32 *y, uint32 *out) in test_isgreaterequal() 825 char *test_isless(uint32 *x, uint32 *y, uint32 *out) in test_isless() 832 char *test_islessequal(uint32 *x, uint32 *y, uint32 *out) in test_islessequal() [all …]
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | minmax.h | 41 #define min(x, y) ((x) < (y) ? (x) : (y)) argument 42 #define max(x, y) ((x) > (y) ? (x) : (y)) argument 47 #define min_not_zero(x, y) ({ \ argument 53 #define min_t(type, x, y) ({ \ argument 58 #define max_t(type, x, y) ({ \ argument
|