Home
last modified time | relevance | path

Searched refs:xx (Results 51 – 75 of 151) sorted by relevance

1234567

/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dllrint.c58 } xx, yy; in llrint() local
61 xx.d = x; in llrint()
62 hx = xx.i[HIWORD] & ~0x80000000; in llrint()
67 yy.i[HIWORD] = (xx.i[HIWORD] & 0x80000000) | 0x43300000; in llrint()
69 yy.i[HIWORD] = (xx.i[HIWORD] & 0x80000000) | 0x43e00000; in llrint()
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetmntent.c50 #define GETTOK_R(xx, ll, tmp)\ argument
51 if ((mp->xx = (char *)strtok_r(ll, sepstr, tmp)) == NULL)\
53 if (strcmp(mp->xx, dash) == 0)\
54 mp->xx = NULL
56 #define DIFF(xx)\ argument
57 (mrefp->xx != NULL && (mgetp->xx == NULL ||\
58 strcmp(mrefp->xx, mgetp->xx) != 0))
60 #define SDIFF(xx, typem, typer)\ argument
61 ((mgetp->xx == NULL) || (stat64(mgetp->xx, &statb) == -1) ||\
/illumos-gate/usr/src/common/util/
H A Dstrtoul.c64 int xx; in ddi_strtoul() local
104 if (!lisalnum(c) || (xx = DIGIT(c)) >= base) { in ddi_strtoul()
118 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; ) { in ddi_strtoul()
122 if (ULONG_MAX - val < (unsigned long)xx) in ddi_strtoul()
124 val += xx; in ddi_strtoul()
137 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; (c = *++ustr)) in ddi_strtoul()
H A Dstrtoull.c66 int xx; in ddi_strtoull() local
106 if (!lisalnum(c) || (xx = DIGIT(c)) >= base) { in ddi_strtoull()
120 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; ) { in ddi_strtoull()
124 if (ULLONG_MAX - val < (unsigned long long)xx) in ddi_strtoull()
126 val += xx; in ddi_strtoull()
139 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; (c = *++ustr)) in ddi_strtoull()
H A Dstrtol.c68 int xx; in ddi_strtol() local
109 if (!lisalnum(c) || (xx = DIGIT(c)) >= base) { in ddi_strtol()
129 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; ) { in ddi_strtol()
134 if (val < limit + xx) in ddi_strtol()
136 val -= xx; in ddi_strtol()
149 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; (c = *++ustr)) in ddi_strtol()
H A Dstrtoll.c66 int xx; in ddi_strtoll() local
107 if (!lisalnum(c) || (xx = DIGIT(c)) >= base) { in ddi_strtoll()
126 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; ) { in ddi_strtoll()
131 if (val < limit + xx) in ddi_strtoll()
133 val -= xx; in ddi_strtoll()
146 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; (c = *++ustr)) in ddi_strtoll()
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_Q_cplx_div_ix.c70 } xx; in testinfl() local
72 xx.q = x; in testinfl()
73 return (((((xx.i[0] << 1) - 0xfffe0000) | xx.i[1] | xx.i[2] | xx.i[3]) in testinfl()
74 == 0)? (1 | (xx.i[0] >> 31)) : 0); in testinfl()
H A D_Q_cplx_div_rx.c70 } xx; in testinfl() local
72 xx.q = x; in testinfl()
73 return (((((xx.i[0] << 1) - 0xfffe0000) | xx.i[1] | xx.i[2] | xx.i[3]) in testinfl()
74 == 0)? (1 | (xx.i[0] >> 31)) : 0); in testinfl()
H A D_Q_sqrt.c96 double c, d, rr, r[2], tt[3], xx[4], zz[5]; in _Qp_sqrt() local
213 xx[0] = (double)((int)lx) * c; in _Qp_sqrt()
216 xx[0] += (double)((int)(wx[0] >> 8)) * c; in _Qp_sqrt()
219 xx[1] = (double)((int)(((wx[0] << 16) | (wx[1] >> 16)) & in _Qp_sqrt()
223 xx[2] = (double)((int)(((wx[1] << 8) | (wx[2] >> 24)) & in _Qp_sqrt()
227 xx[3] = (double)((int)(wx[2] & 0xffffff)) * c; in _Qp_sqrt()
230 c = xx[0] + xx[1]; in _Qp_sqrt()
237 r[0] = (xx[0] - zz[0] * zz[0]) + xx[1]; in _Qp_sqrt()
239 zz[1] = (rr * (r[0] + xx[2]) + three2p4) - three2p4; in _Qp_sqrt()
242 r[1] = xx[2] - zz[1] * zz[1]; in _Qp_sqrt()
[all …]
H A D_Q_cplx_div.c75 } xx; in testinfl() local
77 xx.q = x; in testinfl()
78 return (((((xx.i[0] << 1) - 0xfffe0000) | xx.i[1] | xx.i[2] | xx.i[3]) in testinfl()
79 == 0)? (1 | (xx.i[0] >> 31)) : 0); in testinfl()
H A D_D_cplx_mul.c73 } xx; in testinf() local
75 xx.d = x; in testinf()
76 return (((((xx.i[0] << 1) - 0xffe00000) | xx.i[1]) == 0)? in testinf()
77 (1 | (xx.i[0] >> 31)) : 0); in testinf()
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vsqrt.S651 ! xx = (res - res_c);
652 ! xx *= dtmp0;
654 ! res = A5 * xx;
656 ! res *= xx;
658 ! res *= xx;
660 ! res *= xx;
662 ! res *= xx;
839 fmuld %f54,%f40,%f34 ! (5_1) res *= xx;
872 fmuld %f62,%f40,%f52 ! (5_1) res *= xx;
884 fmuld %f54,%f42,%f34 ! (0_0) res *= xx;
[all …]
H A D__vrsqrt.S160 ! xx = res - res_c;
161 ! xx *= dtmp0;
162 ! res = K6 * xx;
164 ! res *= xx;
166 ! res *= xx;
168 ! res *= xx;
170 ! res *= xx;
172 ! res *= xx;
354 fmuld %f62,%f26,%f40 ! (6_1) res *= xx;
416 fmuld %f6,%f26,%f22 ! (6_1) res *= xx;
[all …]
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dwcstoul.c61 int xx, neg = 0; in wcstoull() local
95 if (!iswalnum(c) || (xx = DIGIT(c)) >= base) { in wcstoull()
106 for (; iswalnum(c = *++str) && (xx = DIGIT(c)) < base; ) { in wcstoull()
111 if (_WULONG_MAX - val < xx) in wcstoull()
113 val += xx; in wcstoull()
120 while (iswalnum(c = *++str) && (xx = DIGIT(c)) < base) in wcstoull()
H A Dwcstol.c63 int xx, neg = 0; in wcstoll() local
97 if (!iswalnum(c) || (xx = DIGIT(c)) >= base) { in wcstoll()
115 for (; iswalnum(c = *++str) && (xx = DIGIT(c)) < base; ) { in wcstoll()
120 if (val < limit + xx) in wcstoll()
122 val -= xx; in wcstoll()
129 while (iswalnum(c = *++str) && (xx = DIGIT(c)) < base) in wcstoll()
/illumos-gate/usr/src/lib/libc/i386/fp/
H A D_D_cplx_mul.c71 } xx; in testinf() local
73 xx.d = x; in testinf()
74 return (((((xx.i[1] << 1) - 0xffe00000) | xx.i[0]) == 0)? in testinf()
75 (1 | (xx.i[1] >> 31)) : 0); in testinf()
H A D_D_cplx_div_ix.c67 } xx; in testinf() local
69 xx.d = x; in testinf()
70 return (((((xx.i[1] << 1) - 0xffe00000) | xx.i[0]) == 0)? in testinf()
71 (1 | (xx.i[1] >> 31)) : 0); in testinf()
H A D_D_cplx_div_rx.c67 } xx; in testinf() local
69 xx.d = x; in testinf()
70 return (((((xx.i[1] << 1) - 0xffe00000) | xx.i[0]) == 0)? in testinf()
71 (1 | (xx.i[1] >> 31)) : 0); in testinf()
H A D_X_cplx_div_ix.c82 } xx; in testinfl() local
84 xx.e = x; in testinfl()
85 if ((xx.i[2] & 0x7fff) != 0x7fff || ((xx.i[1] << 1) | xx.i[0]) != 0) in testinfl()
87 return (1 | ((xx.i[2] << 16) >> 31)); in testinfl()
H A D_X_cplx_div_rx.c82 } xx; in testinfl() local
84 xx.e = x; in testinfl()
85 if ((xx.i[2] & 0x7fff) != 0x7fff || ((xx.i[1] << 1) | xx.i[0]) != 0) in testinfl()
87 return (1 | ((xx.i[2] << 16) >> 31)); in testinfl()
H A D_D_cplx_div.c75 } xx; in testinf() local
77 xx.d = x; in testinf()
78 return (((((xx.i[1] << 1) - 0xffe00000) | xx.i[0]) == 0)? in testinf()
79 (1 | (xx.i[1] >> 31)) : 0); in testinf()
H A D_X_cplx_div.c72 } xx; in testinfl() local
74 xx.e = x; in testinfl()
75 if ((xx.i[2] & 0x7fff) != 0x7fff || ((xx.i[1] << 1) | xx.i[0]) != 0) in testinfl()
77 return (1 | ((xx.i[2] << 16) >> 31)); in testinfl()
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dsqrtl.c401 double xx[5], zz[3]; in sqrtl() local
452 ex = __q_unpack(&x, xx); in sqrtl()
456 xx[0] += xx[0]; in sqrtl()
457 xx[1] += xx[1]; in sqrtl()
458 xx[2] += xx[2]; in sqrtl()
459 xx[3] += xx[3]; in sqrtl()
460 xx[4] += xx[4]; in sqrtl()
463 __q_tp_sqrt(xx, zz); in sqrtl()
/illumos-gate/usr/src/uts/intel/qede/
H A DMakefile38 CPPFLAGS += -I$(UTSBASE)/common/io/qede/579xx/drivers/ecore
39 CPPFLAGS += -I$(UTSBASE)/common/io/qede/579xx/drivers/ecore/hsi_repository
40 CPPFLAGS += -I$(UTSBASE)/common/io/qede/579xx/hsi/
41 CPPFLAGS += -I$(UTSBASE)/common/io/qede/579xx/hsi/hw
42 CPPFLAGS += -I$(UTSBASE)/common/io/qede/579xx/hsi/mcp
/illumos-gate/usr/src/uts/sun4v/io/n2rng/
H A Dn2rng_entp_algs.c114 uint64_t xx; in lg2() local
135 xx = x >> (i - LOG_ARG_SCALE); in lg2()
137 xx = x << (LOG_ARG_SCALE - i); in lg2()
143 while ((tmp = xx - ((xx + (1ULL << (i-1))) >> i)) >= in lg2()
145 xx = tmp; in lg2()

1234567