Searched defs:x0 (Results 1 - 25 of 25) sorted by relevance

/illumos-gate/usr/src/lib/libmp/common/
H A Dgcd.c47 mp_invert(MINT *x1, MINT *x0, MINT *c) argument
68 _mp_move(x0, &u3);
69 _mp_move(x0, &x0_prime);
76 /* invariant: x0*u1 + x1*u2 = u3 */
77 /* invariant: x0*v1 + x2*v2 = v3 */
88 /* now x0*u1 + x1*u2 == 1, therefore, (u2*x1) % x0 == 1 */
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vlogf.S99 #define x0 %o3 define
299 ldx [%fp+tmp5],x0
302 add x0,stridex2,x1! x += 2*stridex
305 lda [x0]0x82,ival0 ! (Y0_0) ival = *(int*)(x)
308 lda [stridex+x0]0x82,ival1 ! (Y1_0) ival = *(int*)(x)
374 lda [x0]0x82,%f6 ! (Y0_0) *(float*)&exp = *(float*)(x)
381 lda [stridex+x0]0x82,%f8 ! (Y1_0) *(float*)&exp = *(float*)(x)
391 add x1,stridex2,x0 ! x += 2*stridex
400 lda [x0]0x82,ival0 ! (Y0_1) ival = *(int*)(x)
402 add x0,stridex
[all...]
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dfmodl.c60 int x0, y0, z0, carry; local
73 x0 = hx ^ sx;
77 if (x0 >= 0x7fff0000 || /* !finitel(x) */
90 if (x0 < iu) { /* subnormal x */
92 while (x0 == 0) {
94 x0 = x1 >> 16;
99 while (x0 < iu) {
101 x0 = (x0 << 1) | (x1 >> 31);
107 ix = (x0 >> 1
[all...]
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dremquol.c62 int x0, y0, z0, carry; local
76 x0 = hx ^ sx;
90 if (x0 < iu) { /* subnormal x */
93 while (x0 == 0) {
95 x0 = x1 >> 16;
100 while (x0 < iu) {
102 x0 = (x0 << 1) | (x1 >> 31);
108 ix = (x0 >> 16) - 16383;
109 x0
[all...]
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vexpf.c240 double x0, x1, x2, x3, x4; local
278 x0 *= K256ONLN2;
284 k0 = (int)x0;
290 x0 -= (double)k0;
296 x0 = (KA2 * x0 + KA1) * x0 + KA0;
319 *y = (float)(res0 * x0);
H A D__vhypotf.c44 float x0, x1, x2, y0, y1, y2, z0, z1, z2, *pz0, *pz1, *pz2; local
53 *(unsigned*)&x0 = hx0;
73 z0 = x0 + y0;
75 z0 = x0;
185 z0 = sqrt(x0 * (double)x0 + y0 * (double)y0);
205 z0 = sqrt(x0 * (double)x0 + y0 * (double)y0);
H A D__vatan2.c71 double x0, x1, x2, y0, y1, y2, *pz0, *pz1, *pz2; local
93 x0 = fabs(*y);
109 x0 = fabs(*x);
125 if ((hx ^ 0x7ff00000) | LO(&x0)) /* nan */
126 ah0 = x0 + y0;
141 ah0 = y0 / x0;
152 x0 *= twom3;
170 x0 *= two110;
172 hx = HI(&x0);
182 xh = x0;
[all...]
H A D__vexp.c410 double x0, x1, x2, x3, x4, x5; local
452 y0 = (x0 * invln2_256) + round;
487 x0 = (x0 - y0 * ln2_256h) - y0 * ln2_256l;
494 y0 = x0 * (one + x0 * (B1 + x0 * (B2 + x0 * B3)));
H A D__vhypot.c350 double x0, y0, res0; local
355 x0 = *px;
373 x0 *= scl0;
376 x_hi0 = (x0 + D2ON28) - D2ON28;
378 x_lo0 = x0 - x_hi0;
382 res0 += ((x0 + x_hi0) * x_lo0 + (y0 + y_hi0) * y_lo0);
H A D__vrhypotf.c256 float res, x0, y0; local
275 x0 = *(px - stridex);
277 res = fabsf(x0) + fabsf(y0);
305 x0 = *px;
313 res = fabsf(x0) + fabsf(y0);
327 hyp0 = x0 * (double)x0 + y0 * (double)y0;
357 float x0, y0; local
366 x0 = *px;
380 hyp0 = x0 * (doubl
[all...]
H A D__vatan2f.c54 float x0, x1, x2, y0, y1, y2, *pz0 = 0, *pz1, *pz2; local
82 x0 = *y;
89 x0 = -x0;
106 x0 = *x;
114 x0 = -x0;
127 ah0 = x0 + y0;
132 ah0 = y0 / x0;
156 x0 *
[all...]
H A D__vcos.c102 double x0, x1, x2, *py0 = 0, *py1 = 0, *py2, *xsave, *ysave; local
135 x0 = *x;
216 x0 -= t0;
219 z0 = x0 * x0;
225 w0 = x0 * (one + z0 * (pp1 + z0 * pp2));
256 z0 = x0 * x0;
285 x0 -= t0;
287 z0 = x0 * x
[all...]
H A D__vcosbig_ultra3.c79 double x0, x1, x2, *py0, *py1, *py2, *xsave, *ysave; local
124 x0 = *x;
173 n0 = (int) (x0 * invpio2 + half[xsb0]);
182 a0 = x0 - fn0 * pio2_1;
188 x0 = a0 - w0;
191 y0 = (a0 - x0) - w0;
194 a0 = x0;
200 x0 = a0 - w0;
203 y0 = (a0 - x0) - w0;
206 a0 = x0;
[all...]
H A D__vrhypot.c213 double x0, y0, res0, dd0; local
262 x0 *= scl0;
269 x_hi0 = (x0 + D2ON36) - D2ON36;
275 x_lo0 = x0 - x_hi0;
284 res0_lo = ((x0 + x_hi0) * x_lo0 + (y0 + y_hi0) * y_lo0);
355 x0 *= scl0;
358 x_hi0 = (x0 + D2ON36) - D2ON36;
360 x_lo0 = x0 - x_hi0;
363 res0_lo = ((x0 + x_hi0) * x_lo0 + (y0 + y_hi0) * y_lo0);
H A D__vsin.c82 double x0, x1, x2, *py0 = 0, *py1 = 0, *py2, *xsave, *ysave; local
114 x0 = *x;
190 x0 -= t0;
193 z0 = x0 * x0;
199 w0 = x0 * (one + z0 * (pp1 + z0 * pp2));
228 z0 = x0 * x0;
243 t0 = x0 + x0 * t
[all...]
H A D__vsinbig_ultra3.c79 double x0, x1, x2, *py0, *py1, *py2, *xsave, *ysave; local
124 x0 = *x;
173 n0 = (int) (x0 * invpio2 + half[xsb0]);
182 a0 = x0 - fn0 * pio2_1;
188 x0 = a0 - w0;
191 y0 = (a0 - x0) - w0;
194 a0 = x0;
200 x0 = a0 - w0;
203 y0 = (a0 - x0) - w0;
206 a0 = x0;
[all...]
H A D__vsincos.c96 double x0, x1, x2, local
143 x0 = *x;
249 x0 -= t0;
253 z0 = x0 * x0;
261 w0 = x0 * (one + z0 * (pp1 + z0 * pp2));
310 x0 -= t0;
312 z0 = x0 * x0;
318 w0 = x0 * (on
[all...]
H A D__vpow.c686 double ax0 = 0.0L, x0 = 0.0L, s_h0, ux0; local
756 u0 = x0 - ax0;
781 s_l0 = (x0 - (ux0 - ax0));
958 u0 = x0 - ax0;
965 s_l0 = (x0 - (ux0 - ax0));
1137 double yr, s_h0, s_l0, m_h0, x0, ax0; local
1159 x0 = *(double*)&ull_x0;
1164 ux0 = x0 + ax0;
1166 u0 = x0 - ax0;
1173 s_l0 = (x0
[all...]
/illumos-gate/usr/src/common/crypto/chacha/
H A Dchacha.c90 u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15; local
122 x0 = j0;
139 QUARTERROUND( x0, x4, x8,x12)
143 QUARTERROUND( x0, x5,x10,x15)
148 x0 = PLUS(x0,j0);
166 x0 = XOR(x0,U8TO32_LITTLE(m + 0));
190 U32TO8_LITTLE(c + 0,x0);
/illumos-gate/usr/src/lib/libast/common/uwin/
H A Dgamma.c64 * approximation centered at the minimum (x0+1) to
98 #define x0 .461632144968362356785 /* xmin - 1 */ macro
157 } else if (x >= 1.0 + LEFT + x0)
215 if (y <= 1.0 + (LEFT + x0)) {
216 yy = ratfun_gam(y - x0, 0);
225 for (ym1 = y-one; ym1 > LEFT + x0; y = ym1--, yy.a--) {
233 yy = ratfun_gam(y - x0, 0);
239 * Good on (0, 1+x0+LEFT]. Accurate to 1ulp.
247 if (x < x0 + LEFT) {
253 t = (one-x0);
[all...]
H A Dlgamma.c100 #define LEFT (1.0 - (x0 + .25))
101 #define RIGHT (x0 - .218)
105 #define x0 0.461632144968362356785 macro
217 t = y - x0;
221 t = y +(1.0-x0);
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dgraphics.c75 const int x0 = 0; variable
214 graphics_setxy(x0, fonty);
229 graphics_setxy(x0, fonty);
231 graphics_setxy(x0, fonty + 1);
259 graphics_gotoxy(x0, y0);
579 if (col >= x0 && col < x1) {
600 graphics_gotoxy(x0, j - 1);
601 for (i = x0; i < x1; i++) {
607 graphics_gotoxy(x0, y1 - 1);
608 for (i = x0;
[all...]
/illumos-gate/usr/src/cmd/troff/troff.d/
H A Ddraw.c246 int x0, y0, x2, y2, r; local
248 x0 = hpos + dx1; /* center */
250 x2 = x0 + dx2; /* "to" */
253 conicarc(x0, -y0, hpos, -vpos, x2, -y2, r, r);
275 conicarc(x, y, x0, y0, x1, y1, a, b)
307 radius = sqrt((float)(sqr(x0 - x) + sqr(y0 - y)));
311 xc = x0;
318 slope = atan2((double)(y0 - y), (double)(x0 - x) );
319 if (slope == 0.0 && x0 < x)
321 x0
[all...]
/illumos-gate/usr/src/uts/sun/io/
H A Dzs_hdlc.c1566 register uchar_t s0, x0; local
1571 x0 = s0 ^ zss->sl_rr0;
1616 if ((x0 & ZSRR0_BREAK) && (s0 & ZSRR0_BREAK) && zs->zs_rd_cur) {
1636 if (x0 & s0 & ZSRR0_CTS) {
1654 if ((x0 & ZSRR0_CTS) && ((s0 & ZSRR0_CTS) == 0) &&
H A Dzs_async.c1703 register uchar_t s0, x0; local
1707 x0 = s0 ^ za->za_rr0;
1714 if (za->za_pps && (x0 & ZSRR0_CD) && (s0 & ZSRR0_CD)) {
1758 if ((x0 & ZSRR0_BREAK) && (s0 & ZSRR0_BREAK) == 0) {
1820 (x0 & ZSRR0_CTS) && (s0 & ZSRR0_CTS) &&

Completed in 99 milliseconds