Home
last modified time | relevance | path

Searched refs:ay (Results 1 – 17 of 17) sorted by relevance

/illumos-gate/usr/src/lib/libm/common/C/
H A Dhypot.c93 ay = fabs(x); in hypot()
113 return (ax == ay ? ay : ax); in hypot()
115 return (ay == ax ? ax : ay); in hypot()
121 ax += ay; in hypot()
174 ay = ay * ay; in hypot()
175 ax += ay / (ax + sqrt(ax * ax + ay)); in hypot()
180 w = sqrt(ax * ax + ay * ay); in hypot()
181 ax += ay / ((ax + w) / ay); in hypot()
184 w = ax - ay; in hypot()
188 ay = ay * ay + (ax - xh) * (ax + xh); in hypot()
[all …]
/illumos-gate/usr/src/lib/libm/common/complex/
H A Dcabs.c68 ay = fabs(x); in cabs()
77 ay = fabs(y); in cabs()
88 return ((ax == ay)? ay : ax); in cabs()
90 return ((ay == ax)? ax : ay); in cabs()
97 ax += ay; in cabs()
150 ay = ay * ay; in cabs()
151 ax += ay / (ax + sqrt(ax * ax + ay)); in cabs()
155 w = sqrt(ax * ax + ay * ay); in cabs()
156 ax += ay / ((ax + w) / ay); in cabs()
163 ay = ay * ay + (ax - xh) * (ax + xh); in cabs()
[all …]
H A Dcatanl.c134 ay = fabsl(y); in catanl()
150 LD_IM(ans) = (fabsl(y) - ay) / (fabsl(y) - ay); in catanl()
174 t = one - ay; in catanl()
183 LD_IM(ans) = half * log1pl((ay + ay) / t); in catanl()
239 t = (ay / (ay - one)) / (ay - one); in catanl()
275 t = ((ay / ax) / (one + ((ay - one) / ax) * ((ay - one) / in catanl()
292 LD_RE(ans) = half * atan2l(ax + ax, (one - ay) * (one + ay)); in catanl()
296 LD_IM(ans) = half * log1pl((ay + ay) / (one - ay)); in catanl()
310 t = one - ay; in catanl()
318 (one + ax) - ay * ay)); in catanl()
[all …]
H A Dcatan.c101 ay = fabs(y); in catan()
119 D_IM(ans) = (fabs(y) - ay) / (fabs(y) - ay); in catan()
143 t = one - ay; in catan()
152 D_IM(ans) = half * log1p((ay + ay) / t); in catan()
181 t = ay / ((ay - one) * (ay - one)); in catan()
185 t = ay / (ax * ax + (ay - one) * (ay - one)); in catan()
202 t = (ay / (ay - one)) / (ay - one); in catan()
238 t = ((ay / ax) / (one + ((ay - one) / ax) * ((ay - one) / in catan()
259 D_IM(ans) = half * log1p((ay + ay) / (one - ay)); in catan()
281 (one + ax) - ay * ay)); in catan()
[all …]
H A Dclogl.c60 ay = fabsl(y); in clogl()
66 ax = ay; in clogl()
67 ay = t; in clogl()
75 else if (isinfl(ay)) in clogl()
76 LD_RE(ans) = ay; in clogl()
78 LD_RE(ans) = ax + ay; in clogl()
79 } else if (ay == zero) in clogl()
85 LD_RE(ans) = half * log1pl(ay * ay); in clogl()
89 LD_RE(ans) = half * (log1pl(ay * ay + (ax - in clogl()
99 LD_RE(ans) = half * logl(ax * ax + ay * ay); in clogl()
[all …]
H A Dcsqrt.c122 double x, y, t, ax, ay; in csqrt() local
133 ay = fabs(y); in csqrt()
142 D_IM(ans) = ay * zero; in csqrt()
144 D_RE(ans) = ay * zero; in csqrt()
170 t = sqrt(half * (ax + sqrt(ax * ax + ay * ay))); in csqrt()
173 D_IM(ans) = ay / (t + t); in csqrt()
176 D_RE(ans) = ay / (t + t); in csqrt()
182 t = sqrt(half * ay); in csqrt()
198 t = sqrt(half * (ax + sqrt(ax * ax + ay * ay))); in csqrt()
201 D_IM(ans) = ay / (t + t); in csqrt()
[all …]
H A Dclog.c73 double x, y, t, ax, ay, w; in __clog() local
85 ay = fabs(y); in __clog()
91 ax = ay; in __clog()
92 ay = t; in __clog()
103 D_RE(ans) = ay; in __clog()
105 D_RE(ans) = ax * ay; in __clog()
112 D_RE(ans) = half * log1p(ay * ay); in __clog()
116 D_RE(ans) = half * (log1p(ay * ay + (ax - in __clog()
121 D_RE(ans) = __k_clog_r(ax, ay, &w); in __clog()
127 D_RE(ans) = half * log(ax * ax + ay * ay); in __clog()
[all …]
H A Dcsqrtl.c50 long double x, y, t, ax, ay; local
59 ay = fabsl(y);
64 LD_IM(ans) = LD_RE(ans) = ay;
68 LD_IM(ans) = ay * zero;
70 LD_RE(ans) = ay * zero;
104 LD_IM(ans) = ay / (t + t);
107 LD_RE(ans) = ay / (t + t);
117 t = sqrtl(half * ay);
123 t = sqrtl(half * (ax + ay));
137 LD_IM(ans) = ay / (t + t);
[all …]
H A Dcatanf.c48 float x, y, ax, ay, t; in catanf() local
55 ay = fabsf(y); in catanf()
70 F_IM(ans) = (fabsf(y) - ay) / (fabsf(y) - ay); in catanf()
93 t = one - ay; in catanf()
96 F_IM(ans) = ay / ax; in catanf()
102 F_IM(ans) = half * log1pf((ay + ay) / t); in catanf()
122 dy = (double)ay; in catanf()
H A Dcsqrtf.c43 float x, y, t, ax, ay, w; in csqrtf() local
52 ay = fabsf(y); in csqrtf()
57 F_IM(ans) = F_RE(ans) = ay; in csqrtf()
61 F_IM(ans) = ay * zero; in csqrtf()
63 F_RE(ans) = ay * zero; in csqrtf()
67 F_IM(ans) = F_RE(ans) = ax + ay; in csqrtf()
78 dy = (double) ay; in csqrtf()
H A Dclogf.c41 float x, y, ax, ay; in clogf() local
51 ay = fabsf(y); in clogf()
57 F_RE(ans) = ay; in clogf()
61 F_RE(ans) = ax + ay; in clogf()
67 dy = (double)ay; in clogf()
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vpowf.c431 unsigned ux, sx, uy, ay, ax0; in __vpowf() local
459 ay = uy & 0x7fffffff; in __vpowf()
467 if (ay == 0) in __vpowf()
483 exp = ay >> 23; in __vpowf()
488 i0 = ay >> ((0x7f + 23) - exp); in __vpowf()
501 if (ay == 0) in __vpowf()
513 exp = ay >> 23; in __vpowf()
518 i0 = ay >> ((0x7f + 23) - exp); in __vpowf()
702 unsigned ux, ax, ax0, uy, ay; in __vpowfx() local
724 ay = uy & 0x7fffffff; in __vpowfx()
[all …]
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vrhypotf.S226 ! ay = *(int*)py;
229 ! ay &= 0x7fffffff;
243 ! if ( ay == 0 )
379 cmp %l6,0 ! (4_1) ay ? 0
406 cmp %l6,0 ! (0_0) ay ? 0
437 cmp %l6,0 ! (1_0) ay ? 0
477 cmp %l6,0 ! (2_0) ay ? 0
581 cmp %l6,0 ! (4_1) ay ? 0
630 cmp %l6,0 ! (0_0) ay ? 0
685 cmp %l6,0 ! (1_0) ay ? 0
[all …]
H A D__vpowf.S550 ! ay = uy & 0x7fffffff;
566 ! exp = ay >> 23;
588 ! exp = ay >> 23;
690 ! ay = uy & 0x7fffffff;
1623 cmp %o4,0 ! ay ? 0
1631 cmp %o4,%l6 ! ay ? 0x7f800000
1659 srl %o4,23,%l7 ! exp = ay >> 23;
1669 srl %o4,%l7,%l6 ! i0 = ay >> exp
1672 cmp %l7,%o4 ! (i0 << exp) ? ay
1703 cmp %o4,0 ! ay ? 0
[all …]
/illumos-gate/usr/src/cmd/lp/filter/postscript/dpost/
H A Dps_include.c74 double sx, double sy, double ax, double ay, double rot) in ps_include() argument
174 var(cx); var(cy); var(sx); var(sy); var(ax); var(ay); var(rot); in ps_include()
/illumos-gate/usr/src/cmd/krb5/kadmin/cli/
H A Dgetdate.y896 int ay = a->tm_year + (TM_YEAR_ORIGIN - 1); local
905 + ((ay >> 2) - (by >> 2))
906 - (ay/100 - by/100)
907 + ((ay/100 >> 2) - (by/100 >> 2))
909 + (time_t)(ay-by) * 365
/illumos-gate/usr/src/contrib/ast/src/lib/libast/port/
H A Dlc.tab33 ay aymara