Home
last modified time | relevance | path

Searched defs:y (Results 1 – 25 of 1032) sorted by relevance

12345678910>>...42

/NextBSD/sys/powerpc/fpu/
HDfpu_arith.h80 #define FPU_ADDC(r, x, y) \ argument
82 #define FPU_ADDS(r, x, y) \ argument
88 #define FPU_ADDCS(r, x, y) \ argument
94 #define FPU_SUBC(r, x, y) \ argument
96 #define FPU_SUBS(r, x, y) \ argument
102 #define FPU_SUBCS(r, x, y) \ argument
132 #define FPU_ADDC(r, x, y) \ argument
134 #define FPU_ADDS(r, x, y) \ argument
136 #define FPU_ADDCS(r, x, y) \ argument
138 #define FPU_SUBC(r, x, y) \ argument
[all …]
/NextBSD/sys/arm/include/
HDasm.h108 #define ENTRY(y) _ENTRY(_C_LABEL(y)); _PROF_PROLOGUE argument
109 #define EENTRY(y) _EENTRY(_C_LABEL(y)); argument
110 #define ENTRY_NP(y) _ENTRY(_C_LABEL(y)) argument
111 #define EENTRY_NP(y) _EENTRY(_C_LABEL(y)) argument
112 #define END(y) _END(_C_LABEL(y)) argument
113 #define EEND(y) _EEND(_C_LABEL(y)) argument
114 #define ASENTRY(y) _ENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE argument
115 #define ASLENTRY(y) _LENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE argument
116 #define ASEENTRY(y) _EENTRY(_ASM_LABEL(y)); argument
117 #define ASLEENTRY(y) _LEENTRY(_ASM_LABEL(y)); argument
[all …]
/NextBSD/include/
HDcomplex.h51 #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
HDtgmath.h77 #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 …]
/NextBSD/contrib/compiler-rt/lib/builtins/
HDint_math.h47 #define crt_copysign(x, y) __builtin_copysign((x), (y)) argument
48 #define crt_copysignf(x, y) __builtin_copysignf((x), (y)) argument
49 #define crt_copysignl(x, y) __builtin_copysignl((x), (y)) argument
55 #define crt_fmax(x, y) __builtin_fmax((x), (y)) argument
56 #define crt_fmaxf(x, y) __builtin_fmaxf((x), (y)) argument
57 #define crt_fmaxl(x, y) __builtin_fmaxl((x), (y)) argument
63 #define crt_scalbn(x, y) __builtin_scalbn((x), (y)) argument
64 #define crt_scalbnf(x, y) __builtin_scalbnf((x), (y)) argument
65 #define crt_scalbnl(x, y) __builtin_scalbnl((x), (y)) argument
/NextBSD/contrib/diff/lib/
HDunlocked-io.h69 # 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 …]
/NextBSD/contrib/netbsd-tests/lib/libm/
HDt_ceil.c57 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 …]
HDt_sqrt.c70 double y, z; in ATF_TC_BODY() local
93 double y = sqrt(x); in ATF_TC_BODY() local
107 double y = sqrt(x); in ATF_TC_BODY() local
122 double y = sqrt(x); in ATF_TC_BODY() local
137 double y = sqrt(x); in ATF_TC_BODY() local
170 volatile float y, z; in ATF_TC_BODY() local
193 float y = sqrtf(x); in ATF_TC_BODY() local
207 float y = sqrtf(x); in ATF_TC_BODY() local
222 float y = sqrtf(x); in ATF_TC_BODY() local
237 float y = sqrtf(x); in ATF_TC_BODY() local
[all …]
HDt_cbrt.c65 double y, z; in ATF_TC_BODY() local
88 double y = cbrt(x); in ATF_TC_BODY() local
103 double y = cbrt(x); in ATF_TC_BODY() local
118 double y = cbrt(x); in ATF_TC_BODY() local
133 double y = cbrt(x); in ATF_TC_BODY() local
166 float y, z; in ATF_TC_BODY() local
189 float y = cbrtf(x); in ATF_TC_BODY() local
204 float y = cbrtf(x); in ATF_TC_BODY() local
219 float y = cbrtf(x); in ATF_TC_BODY() local
234 float y = cbrtf(x); in ATF_TC_BODY() local
[all …]
HDt_sinh.c40 double y; member
68 double y; in ATF_TC_BODY() local
104 double y = sinh(x); in ATF_TC_BODY() local
119 double y = sinh(x); in ATF_TC_BODY() local
134 double y = sinh(x); in ATF_TC_BODY() local
149 double y = sinh(x); in ATF_TC_BODY() local
168 float y; in ATF_TC_BODY() local
204 float y = sinhf(x); in ATF_TC_BODY() local
219 float y = sinhf(x); in ATF_TC_BODY() local
234 float y = sinhf(x); in ATF_TC_BODY() local
[all …]
HDt_exp.c39 double y; member
148 double y; member
219 double y = exp(x); in ATF_TC_BODY() local
234 double y = exp(x); in ATF_TC_BODY() local
250 double y; in ATF_TC_BODY() local
317 float y = expf(x); in ATF_TC_BODY() local
332 float y = expf(x); in ATF_TC_BODY() local
348 float y; in ATF_TC_BODY() local
429 double y = expm1(x); in ATF_TC_BODY() local
444 double y = expm1(x); in ATF_TC_BODY() local
[all …]
/NextBSD/contrib/gcc/config/
HDdarwin-64.c63 word_type __cmpdi2 (DI x, DI y) { return x < y ? 0 : x == y ? 1 : 2; } in __cmpdi2()
65 DI __divdi3 (DI x, DI y) { return x / y; } in __divdi3()
67 DI __moddi3 (DI x, DI y) { return x % y; } in __moddi3()
68 DI __muldi3 (DI x, DI y) { return x * y; } in __muldi3()
72 word_type __ucmpdi2 (uDI x, uDI y) { return x < y ? 0 : x == y ? 1 : 2; } in __ucmpdi2()
73 uDI __udivdi3 (uDI x, uDI y) { return x / y; } in __udivdi3()
74 uDI __udivmoddi4 (uDI x, uDI y, uDI *r) { *r = x % y; return x / y; } in __udivmoddi4()
75 uDI __umoddi3 (uDI x, uDI y) { return x % y; } in __umoddi3()
/NextBSD/lib/libc/sparc64/fpu/
HDfpu_arith.h71 #define FPU_ADDC(r, x, y) \ argument
73 #define FPU_ADDS(r, x, y) \ argument
75 #define FPU_ADDCS(r, x, y) \ argument
77 #define FPU_SUBC(r, x, y) \ argument
79 #define FPU_SUBS(r, x, y) \ argument
81 #define FPU_SUBCS(r, x, y) \ argument
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/sys/
HDdebug.h110 #define VERIFY3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) argument
111 #define VERIFY3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) argument
112 #define VERIFY3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t) argument
116 #define ASSERT3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) argument
117 #define ASSERT3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) argument
118 #define ASSERT3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t) argument
121 #define ASSERT3S(x, y, z) ((void)0) argument
122 #define ASSERT3U(x, y, z) ((void)0) argument
123 #define ASSERT3P(x, y, z) ((void)0) argument
132 #define _CTASSERT(x, y) __CTASSERT(x, y) argument
[all …]
/NextBSD/lib/msun/src/
HDmath.h118 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
119 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
120 #define isless(x, y) __builtin_isless((x), (y)) argument
121 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
122 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
123 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
125 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
126 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
127 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
128 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
/NextBSD/contrib/dialog/
HDmouse.c48 dlg_mouse_setbase(int x, int y) in dlg_mouse_setbase()
61 dlg_mouse_mkbigregion(int y, int x, in dlg_mouse_mkbigregion()
84 dlg_mouse_mkregion(int y, int x, int height, int width, int code) in dlg_mouse_mkregion()
109 any_mouse_region(int y, int x, int small) in any_mouse_region()
130 dlg_mouse_region(int y, int x) in dlg_mouse_region()
137 dlg_mouse_bigregion(int y, int x) in dlg_mouse_bigregion()
/NextBSD/crypto/heimdal/kuser/
HDkuser_locl.h95 #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
/NextBSD/lib/msun/tests/
HDrem_test.c48 #define test(x, y, e_r, e_q) do { \ argument
111 test_invalid(long double x, long double y) in test_invalid()
144 testl(long double x, long double y, long double expected_rem, int expected_quo) in testl()
166 testd(double x, double y, double expected_rem, int expected_quo) in testd()
188 testf(float x, float y, float expected_rem, int expected_quo) in testf()
HDtest-utils.h81 CMPLXL(long double x, long double y) in CMPLXL()
111 fpequal_cs(long double x, long double y, int checksign) in fpequal_cs()
122 fpequal_tol(long double x, long double y, long double tol, unsigned int flags) in fpequal_tol()
160 cfpequal_cs(long double complex x, long double complex y, int checksign) in cfpequal_cs()
167 cfpequal_tol(long double complex x, long double complex y, long double tol, in cfpequal_tol()
/NextBSD/lib/libcalendar/
HDeaster.c38 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()
/NextBSD/usr.bin/calendar/
HDdates.c85 createdate(int y, int m, int d) in createdate()
173 int y, m, d; in generatedates() local
236 struct cal_year *y; in dumpdates() local
262 struct cal_year *y; in remember_ymd() local
298 struct cal_year *y; in remember_yd() local
332 struct cal_year *y; in first_dayofweek_of_year() local
348 struct cal_year *y; in first_dayofweek_of_month() local
374 static struct cal_year *y = NULL; in walkthrough_dates() local
410 struct cal_year *y; in find_day() local
/NextBSD/contrib/libstdc++/libmath/
Dstubs.c107 atan2f(float x, float y) in atan2f()
115 atan2l(long double x, long double y) in atan2l()
209 fmodf(float x, float y) in fmodf()
217 fmodl(long double x, long double y) in fmodl()
261 hypotf(float x, float y) in hypotf()
273 hypot(double x, double y) in hypot()
285 hypotl(long double x, long double y) in hypotl()
375 powf(float x, float y) in powf()
383 powl(long double x, long double y) in powl()
/NextBSD/contrib/ncurses/include/
HDcurses.h.in1089 #define getyx(win,y,x) (y = getcury(win), x = getcurx(win)) argument
1090 #define getbegyx(win,y,x) (y = getbegy(win), x = getbegx(win)) argument
1091 #define getmaxyx(win,y,x) (y = getmaxy(win), x = getmaxx(win)) argument
1092 #define getparyx(win,y,x) (y = getpary(win), x = getparx(win)) argument
1094 #define getsyx(y,x) do { if (newscr) { \ argument
1102 #define setsyx(y,x) do { if (newscr) { \ argument
1231 #define move(y,x) wmove(stdscr,(y),(x)) argument
1245 #define mvwaddch(win,y,x,ch) (wmove((win),(y),(x)) == ERR ? ERR : waddch((win),(ch))) argument
1246 #define mvwaddchnstr(win,y,x,str,n) (wmove((win),(y),(x)) == ERR ? ERR : waddchnstr((win),(str),(n)… argument
1247 #define mvwaddchstr(win,y,x,str) (wmove((win),(y),(x)) == ERR ? ERR : waddchnstr((win),(str),-1)) argument
[all …]
/NextBSD/lib/libvgl/
HDsimple.c42 #define min(x, y) (((x) < (y)) ? (x) : (y)) argument
43 #define max(x, y) (((x) > (y)) ? (x) : (y)) argument
92 VGLSetXY(VGLBitmap *object, int x, int y, u_long color) in VGLSetXY()
145 VGLGetXY(VGLBitmap *object, int x, int y) in VGLGetXY()
210 plot(VGLBitmap * object, int x, int y, int flag, byte color) in plot()
223 int dx, dy, incr1, incr2, D, x, y, xend, c, pixels_left; in VGLLine() local
416 int y; in VGLFilledBox() local
422 set4pixels(VGLBitmap *object, int x, int y, int xc, int yc, u_long color) in set4pixels()
442 int x = 0, y = b, asq = a*a, asq2 = a*a*2, bsq = b*b; in VGLEllipse() local
463 set2lines(VGLBitmap *object, int x, int y, int xc, int yc, u_long color) in set2lines()
[all …]
/NextBSD/sys/boot/ficl/
HDmath64.c169 DPINT m64MulI(FICL_INT x, FICL_INT y) in m64MulI()
356 DPUNS m64Add(DPUNS x, DPUNS y) in m64Add()
381 DPUNS m64Sub(DPUNS x, DPUNS y) in m64Sub()
440 DPUNS m64Or( DPUNS x, DPUNS y ) in m64Or()
455 int m64Compare(DPUNS x, DPUNS y) in m64Compare()
494 DPUNS ficlLongMul(FICL_UNS x, FICL_UNS y) in ficlLongMul()
521 UNSQR ficlLongDiv(DPUNS q, FICL_UNS y) in ficlLongDiv()

12345678910>>...42