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

12

/illumos-gate/usr/src/tools/cscope-fast/
H A Dmouse.h38 int x2; member in struct:__anon4458
/illumos-gate/usr/src/lib/libcryptoutil/common/
H A Dpkcs11_uri.c66 unsigned int x1, x2; local
81 if (sscanf(str + i, "%1x", &x2) == 1) {
82 x1 = x1 * 16 + x2;
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dspace_reftree.c55 space_reftree_compare(const void *x1, const void *x2) argument
58 const space_ref_t *sr2 = x2;
H A Drange_tree.c112 range_tree_seg_compare(const void *x1, const void *x2) argument
115 const range_seg_t *r2 = x2;
/illumos-gate/usr/src/lib/libslp/clib/
H A Dslp_da_cache.c198 static int compare_entries(const void *x1, const void *x2) { argument
200 cache_entry_t *e2 = (cache_entry_t *)x2;
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dfmodl.c61 unsigned x1, x2, x3, y1, y2, y3, z1, z2, z3; local
65 x2 = __H2(x);
95 x1 = (x1 << 16) | (x2 >> 16);
96 x2 = (x2 << 16) | (x3 >> 16);
102 x1 = (x1 << 1) | (x2 >> 31);
103 x2 = (x2 << 1) | (x3 >> 31);
139 x1 = (x1 << 16) | (x2 >> 16);
140 x2
[all...]
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dremquol.c63 unsigned x1, x2, x3, y1, y2, y3, z1, z2, z3; local
67 x2 = __H2(x);
96 x1 = (x1 << 16) | (x2 >> 16);
97 x2 = (x2 << 16) | (x3 >> 16);
103 x1 = (x1 << 1) | (x2 >> 31);
104 x2 = (x2 << 1) | (x3 >> 31);
143 x1 = (x1 << 16) | (x2 >> 16);
144 x2
[all...]
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vexpf.c240 double x0, x1, x2, x3, x4; local
280 x2 *= K256ONLN2;
286 k2 = (int)x2;
292 x2 -= (double)k2;
298 x2 = (KA2 * x2 + KA1) * x2 + KA0;
323 *y = (float)(res2 * x2);
H A D__vhypotf.c44 float x0, x1, x2, y0, y1, y2, z0, z1, z2, *pz0, *pz1, *pz2; local
147 *(unsigned*)&x2 = hx2;
167 z2 = x2 + y2;
169 z2 = x2;
187 z2 = sqrt(x2 * (double)x2 + y2 * (double)y2);
H A D__vatan2.c71 double x0, x1, x2, y0, y1, y2, *pz0, *pz1, *pz2; local
323 x2 = fabs(*y);
339 x2 = fabs(*x);
355 if ((hx ^ 0x7ff00000) | LO(&x2)) /* nan */
356 ah2 = x2 + y2;
371 ah2 = y2 / x2;
382 x2 *= twom3;
400 x2 *= two110;
402 hx = HI(&x2);
412 xh = x2;
[all...]
H A D__vexp.c410 double x0, x1, x2, x3, x4, x5; local
454 y2 = (x2 * invln2_256) + round;
489 x2 = (x2 - y2 * ln2_256h) - y2 * ln2_256l;
496 y2 = x2 * (one + x2 * (B1 + x2 * (B2 + x2 * B3)));
H A D__vrhypotf.c359 float x2, y2; local
370 x2 = *px;
382 hyp2 = x2 * (double)x2 + y2 * (double)y2;
H A D__vatan2f.c54 float x0, x1, x2, y0, y1, y2, *pz0 = 0, *pz1, *pz2; local
308 x2 = *y;
315 x2 = -x2;
332 x2 = *x;
340 x2 = -x2;
353 ah2 = x2 + y2;
358 ah2 = y2 / x2;
381 x2 *
[all...]
H A D__vcos.c102 double x0, x1, x2, *py0 = 0, *py1 = 0, *py2, *xsave, *ysave; local
189 x2 = *x;
218 x2 -= t2;
221 z2 = x2 * x2;
227 w2 = x2 * (one + z2 * (pp1 + z2 * pp2));
255 x2 -= t2;
258 z2 = x2 * x2;
264 w2 = x2 * (on
[all...]
H A D__vcosbig_ultra3.c79 double x0, x1, x2, *py0, *py1, *py2, *xsave, *ysave; local
170 x2 = *x;
175 n2 = (int) (x2 * invpio2 + half[xsb2]);
184 a2 = x2 - fn2 * pio2_1;
190 x2 = a2 - w2;
193 y2 = (a2 - x2) - w2;
196 a2 = x2;
202 x2 = a2 - w2;
205 y2 = (a2 - x2) - w2;
208 a2 = x2;
[all...]
H A D__vrhypot.c219 double x2, y2, res2, dd2; local
266 x2 *= scl2;
273 x_hi2 = (x2 + D2ON36) - D2ON36;
279 x_lo2 = x2 - x_hi2;
286 res2_lo = ((x2 + x_hi2) * x_lo2 + (y2 + y_hi2) * y_lo2);
H A D__vsin.c82 double x0, x1, x2, *py0 = 0, *py1 = 0, *py2, *xsave, *ysave; local
168 x2 = *x;
192 x2 -= t2;
195 z2 = x2 * x2;
201 w2 = x2 * (one + z2 * (pp1 + z2 * pp2));
227 x2 -= t2;
230 z2 = x2 * x2;
236 w2 = x2 * (on
[all...]
H A D__vsinbig_ultra3.c79 double x0, x1, x2, *py0, *py1, *py2, *xsave, *ysave; local
170 x2 = *x;
175 n2 = (int) (x2 * invpio2 + half[xsb2]);
184 a2 = x2 - fn2 * pio2_1;
190 x2 = a2 - w2;
193 y2 = (a2 - x2) - w2;
196 a2 = x2;
202 x2 = a2 - w2;
205 y2 = (a2 - x2) - w2;
208 a2 = x2;
[all...]
/illumos-gate/usr/src/common/crypto/ecc/
H A Dec2_mont.c84 /* Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in
89 gf2m_Madd(const mp_int *x, mp_int *x1, mp_int *z1, mp_int *x2, mp_int *z2, argument
102 MP_CHECKOK(group->meth->field_mul(z1, x2, z1, group->meth));
115 /* Compute the x, y affine coordinates from the point (x1, z1) (x2, z2)
122 mp_int *x2, mp_int *z2, const ECGroup *group)
131 MP_CHECKOK(mp_init(&t3, FLAG(x2)));
132 MP_CHECKOK(mp_init(&t4, FLAG(x2)));
133 MP_CHECKOK(mp_init(&t5, FLAG(x2)));
136 mp_zero(x2);
121 gf2m_Mxy(const mp_int *x, const mp_int *y, mp_int *x1, mp_int *z1, mp_int *x2, mp_int *z2, const ECGroup *group) argument
199 mp_int x1, x2, z1, z2; local
[all...]
/illumos-gate/usr/src/lib/libast/common/uwin/
H A Drand48.c72 unsigned short x2 = x[2]; local
74 r += a[2]*x2;
77 r += a[1]*x2;
83 r += a[0]*x2;
/illumos-gate/usr/src/lib/libm/common/complex/
H A Dcpow.c154 double x, y, u, v, t, c, s, r, x2, y2; local
268 x2 = t2 - (x1 - t1); /* log(hypot(x,y)) = x1 + x2 */
279 b[3] = (v - v1) * x1 + v * x2;
299 b[1] = (u - u1) * x1 + u * x2;
H A Dcpowl.c110 long double t1, t2, t3, t4, x1, x2, y1, y2, u1, v1, b[4], w1, w2; local
215 x2 = t2 - (x1 - t1); /* log(hypot(x,y)) = x1 + x2 */
226 b[3] = (v - v1) * x1 + v * x2;
242 b[1] = (u - u1) * x1 + u * x2;
/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
124 x2 = j2;
141 QUARTERROUND( x2, x6,x10,x14)
145 QUARTERROUND( x2, x7, x8,x13)
150 x2 = PLUS(x2,j2);
168 x2 = XOR(x2,U8TO32_LITTLE(m + 8));
192 U32TO8_LITTLE(c + 8,x2);
/illumos-gate/usr/src/cmd/filesync/
H A Danal.c550 char *s1, *s2, *x1, *x2; local
560 x2 = f2->f_fullname;
609 if (*s2 == 0 && x2 != 0) {
610 s2 = x2;
611 x2 = 0;
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_xdr.c686 XDR x1, x2; local
724 xdrmem_create(&x2, (char *)b2, l2, XDR_ENCODE);
726 if (xdr_nis_object(&x1, &obj1) && xdr_nis_object(&x2, &obj2)) {

Completed in 87 milliseconds

12