Searched refs:xx (Results 1 - 25 of 52) sorted by relevance

123

/osnet-11/usr/src/lib/libc/sparc/fp/
H A D_Q_scl.c45 } xx; local
48 xx.q = *x;
49 hx = xx.i[0] & ~0x80000000;
52 if ((hx | xx.i[1] | xx.i[2] | xx.i[3]) == 0)
56 while (hx == 0 && xx.i[1] < 0x10000) {
57 hx = xx.i[1];
58 xx.i[1] = xx
102 } xx; local
[all...]
H A D_Q_cplx_mul.c78 } xx; local
80 xx.q = x;
81 return (((((xx.i[0] << 1) - 0xfffe0000) | xx.i[1] | xx.i[2] | xx.i[3])
82 == 0)? (1 | (xx.i[0] >> 31)) : 0);
H A D_Q_div.c107 double c, d, ry, xx[4], yy[5], zz[5]; local
314 xx[0] = (double)((int)lx) * c;
318 xx[0] += (double)((int)(wx[0] >> 8)) * c;
322 xx[1] = (double)((int)(((wx[0] << 16) |
328 xx[2] = (double)((int)(((wx[1] << 8) |
334 xx[3] = (double)((int)(wx[2] & 0xffffff)) * c;
341 zz[0] = (ry * (xx[0] + xx[1]) + three2p27) - three2p27;
342 xx[0] = ((xx[
[all...]
H A D_D_cplx_mul.c75 } xx; local
77 xx.d = x;
78 return (((((xx.i[0] << 1) - 0xffe00000) | xx.i[1]) == 0)?
79 (1 | (xx.i[0] >> 31)) : 0);
H A D_Q_mul.c89 double xx[5], yy[5], c, d, zz[9]; local
282 xx[0] = (double)((int)lx) * c;
286 xx[1] = (double)((int)(wx[0] >> 8)) * c;
290 xx[2] = (double)((int)(((wx[0] << 16) | (wx[1] >> 16)) &
296 xx[3] = (double)((int)(((wx[1] << 8) | (wx[2] >> 24)) &
302 xx[4] = (double)((int)(wx[2] & 0xffffff)) * c;
306 zz[0] = xx[0] * yy[0];
307 zz[1] = xx[0] * yy[1] + xx[1] * yy[0];
308 zz[2] = xx[
[all...]
H A D_F_cplx_div_ix.c69 } xx; local
71 xx.f = x;
72 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0);
H A D_F_cplx_div_rx.c69 } xx; local
71 xx.f = x;
72 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0);
H A D_F_cplx_mul.c73 } xx; local
75 xx.f = x;
76 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0);
H A D_Q_cplx_div_ix.c72 } xx; local
74 xx.q = x;
75 return (((((xx.i[0] << 1) - 0xfffe0000) | xx.i[1] | xx.i[2] | xx.i[3])
76 == 0)? (1 | (xx.i[0] >> 31)) : 0);
H A D_Q_cplx_div_rx.c72 } xx; local
74 xx.q = x;
75 return (((((xx.i[0] << 1) - 0xfffe0000) | xx.i[1] | xx.i[2] | xx.i[3])
76 == 0)? (1 | (xx.i[0] >> 31)) : 0);
H A D_F_cplx_div.c77 } xx; local
79 xx.f = x;
80 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/t/
H A Dtiefeatures.t12 sub xx { subroutine
16 my $s = xx();
18 my ($a) = xx();
20 memoize 'xx', LIST_CACHE => MERGE;
21 $s = xx();
23 ($a) = xx(); # Should return cached false value from previous invocation
/osnet-11/usr/src/lib/libc/i386/fp/
H A D_X_cplx_mul.c75 } xx; local
77 xx.e = x;
78 if ((xx.i[2] & 0x7fff) != 0x7fff || ((xx.i[1] << 1) | xx.i[0]) != 0)
80 return (1 | ((xx.i[2] << 16) >> 31));
H A D_D_cplx_div_ix.c69 } xx; local
71 xx.d = x;
72 return (((((xx.i[1] << 1) - 0xffe00000) | xx.i[0]) == 0)?
73 (1 | (xx.i[1] >> 31)) : 0);
H A D_D_cplx_div_rx.c69 } xx; local
71 xx.d = x;
72 return (((((xx.i[1] << 1) - 0xffe00000) | xx.i[0]) == 0)?
73 (1 | (xx.i[1] >> 31)) : 0);
H A D_D_cplx_mul.c73 } xx; local
75 xx.d = x;
76 return (((((xx.i[1] << 1) - 0xffe00000) | xx.i[0]) == 0)?
77 (1 | (xx.i[1] >> 31)) : 0);
H A D_F_cplx_div_ix.c69 } xx; local
71 xx.f = x;
72 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0);
H A D_F_cplx_div_rx.c69 } xx; local
71 xx.f = x;
72 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0);
H A D_F_cplx_mul.c73 } xx; local
75 xx.f = x;
76 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0);
H A D_D_cplx_div.c77 } xx; local
79 xx.d = x;
80 return (((((xx.i[1] << 1) - 0xffe00000) | xx.i[0]) == 0)?
81 (1 | (xx.i[1] >> 31)) : 0);
/osnet-11/usr/src/lib/libc/port/i18n/
H A Dwcstol.c65 int xx, neg = 0; local
99 if (!iswalnum(c) || (xx = DIGIT(c)) >= base) {
117 for (; iswalnum(c = *++str) && (xx = DIGIT(c)) < base; ) {
122 if (val < limit + xx)
124 val -= xx;
131 while (iswalnum(c = *++str) && (xx = DIGIT(c)) < base)
H A Dwcstoul.c63 int xx, neg = 0; local
97 if (!iswalnum(c) || (xx = DIGIT(c)) >= base) {
108 for (; iswalnum(c = *++str) && (xx = DIGIT(c)) < base; ) {
113 if (_WULONG_MAX - val < xx)
115 val += xx;
122 while (iswalnum(c = *++str) && (xx = DIGIT(c)) < base)
/osnet-11/usr/src/lib/libresolv2/include/
H A Dprobe_ipv6.sh18 struct sockaddr_in6 xx;
24 struct in6_addr xx;
30 struct sockaddr_in6 xx;
31 main() { xx.sin6_scope_id = 0; }
/osnet-11/usr/src/lib/libc/port/gen/
H A Dgetvfsent.c45 #define GETTOK_R(xx, ll, tmp)\
46 if ((vp->xx = (char *)strtok_r(ll, sepstr, tmp)) == NULL)\
48 if (strcmp(vp->xx, dash) == 0)\
49 vp->xx = NULL
50 #define GETTOK(xx, ll)\
51 if ((vp->xx = strtok(ll, sepstr)) == NULL)\
53 if (strcmp(vp->xx, dash) == 0)\
54 vp->xx = NULL
55 #define DIFF(xx)\
56 (vrefp->xx !
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/bus/usb/serial/
H A Dpl2303.c62 char xx; local
68 1, 0x8484, 0, 1, &xx);
73 1, 0x8484, 0, 1, &xx);
75 1, 0x8383, 0, 1, &xx);
77 1, 0x8484, 0, 1, &xx);
82 1, 0x8484, 0, 1, &xx);
84 1, 0x8383, 0, 1, &xx);

Completed in 92 milliseconds

123