Home
last modified time | relevance | path

Searched refs:xx (Results 76 – 100 of 151) sorted by relevance

1234567

/illumos-gate/usr/src/lib/libresolv2/include/
H A Dprobe_ipv6.sh17 struct sockaddr_in6 xx;
23 struct in6_addr xx;
30 struct sockaddr_in6 xx;
31 main() { xx.sin6_scope_id = 0; }
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_F_cplx_mul.c71 } xx; in testinff() local
73 xx.f = x; in testinff()
74 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0); in testinff()
H A D_F_cplx_div_ix.c67 } xx; in testinff() local
69 xx.f = x; in testinff()
70 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0); in testinff()
H A D_F_cplx_div_rx.c67 } xx; in testinff() local
69 xx.f = x; in testinff()
70 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0); in testinff()
H A D_D_cplx_div_ix.c85 } xx; in testinf() local
87 xx.d = x; in testinf()
88 return (((((xx.i[0] << 1) - 0xffe00000) | xx.i[1]) == 0)? in testinf()
89 (1 | (xx.i[0] >> 31)) : 0); in testinf()
H A D_D_cplx_div_rx.c85 } xx; in testinf() local
87 xx.d = x; in testinf()
88 return (((((xx.i[0] << 1) - 0xffe00000) | xx.i[1]) == 0)? in testinf()
89 (1 | (xx.i[0] >> 31)) : 0); in testinf()
H A D_D_cplx_div.c75 } xx; in testinf() local
77 xx.d = x; in testinf()
78 return (((((xx.i[0] << 1) - 0xffe00000) | xx.i[1]) == 0)? in testinf()
79 (1 | (xx.i[0] >> 31)) : 0); in testinf()
H A D_F_cplx_div.c75 } xx; in testinff() local
77 xx.f = x; in testinff()
78 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0); in testinff()
/illumos-gate/usr/src/lib/libc/i386/fp/
H A D_F_cplx_mul.c71 } xx; in testinff() local
73 xx.f = x; in testinff()
74 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0); in testinff()
H A D_F_cplx_div_ix.c67 } xx; in testinff() local
69 xx.f = x; in testinff()
70 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0); in testinff()
H A D_F_cplx_div_rx.c67 } xx; in testinff() local
69 xx.f = x; in testinff()
70 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0); in testinff()
H A D_F_cplx_div.c75 } xx; in testinff() local
77 xx.f = x; in testinff()
78 return ((((xx.i << 1) - 0xff000000) == 0)? (1 | (xx.i >> 31)) : 0); in testinff()
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vatanf.S246 ! x2 = xx * xx;
507 fmuld %f22,%f22,%f50 ! (0_0) x2 = xx * xx;
564 fmuld %f20,%f20,%f50 ! (1_0) x2 = xx * xx;
635 fmuld %f18,%f18,%f50 ! (2_1) x2 = xx * xx;
700 fmuld %f16,%f16,%f50 ! (3_1) x2 = xx * xx;
765 fmuld %f14,%f14,%f50 ! (4_1) x2 = xx * xx;
830 fmuld %f36,%f36,%f50 ! (5_1) x2 = xx * xx;
895 fmuld %f10,%f10,%f50 ! (6_1) x2 = xx * xx;
960 fmuld %f8,%f8,%f50 ! (7_1) x2 = xx * xx;
1025 fmuld %f22,%f22,%f50 ! (0_0) x2 = xx * xx;
[all …]
/illumos-gate/usr/src/common/ficl/emu/
H A Dgfx_fb.c360 xx = x0 - x1; in gfx_fb_bezier()
362 curvature = xx*sy - yy*sx; in gfx_fb_bezier()
364 if (sx * sx + sy * sy > xx * xx + yy * yy) { in gfx_fb_bezier()
372 xx += sx; in gfx_fb_bezier()
374 xx *= sx; in gfx_fb_bezier()
378 xy = 2 * xx * yy; in gfx_fb_bezier()
379 xx *= xx; in gfx_fb_bezier()
382 xx = -xx; in gfx_fb_bezier()
389 xx += xx; in gfx_fb_bezier()
407 dx += xx; in gfx_fb_bezier()
[all …]
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/tests/
H A Dsubstring.sh157 xx=a/b/c/d/e
158 yy=${xx#*/}
162 if [[ ${xx//\//\\} != 'a\b\c\d\e' ]]
169 xx=%28text%29
170 if [[ ${xx//%28/abc\)} != 'abc)text%29' ]]
173 xx='a:b'
180 [[ ${xx//:/\\n} == 'a\nb' ]] || err_exit "substituion of \\\\n failed"
181 [[ ${xx//:/'\n'} == 'a\nb' ]] || err_exit "substituion of '\\n' failed"
182 [[ ${xx//:/"\n"} == 'a\nb' ]] || err_exit "substituion of \"\\n\" failed"
183 [[ ${xx//:/$'\n'} == $'a\nb' ]] || err_exit "substituion of \$'\\n' failed"
/illumos-gate/usr/src/cmd/refer/
H A Dglue5.c157 char xx[20]; in execute() local
158 sprintf(xx, "they are %%.%ds\n", ccount); in execute()
159 fprintf(stderr, xx, p); in execute()
214 { char xx[20]; sprintf(xx, "they are %%.%ds\n", ccount); in execute() local
215 fprintf(stderr, xx, p); in execute()
/illumos-gate/usr/src/uts/common/sys/ib/mgt/ibmf/
H A Dibmf_saa_impl.h146 #define IBMF_SAA_ADD32_KSTATS(subnetp, xx, val) \ argument
150 kp->xx.value.ui32 += val; \
153 #define IBMF_SAA_SUB32_KSTATS(subnetp, xx, val) \ argument
157 kp->xx.value.ui32 -= val; \
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dsm_skb.c25 struct ture xx; variable
36 kfree(xx.skb); in func()
/illumos-gate/usr/src/contrib/ast/src/lib/libcmd/
H A Dcut.c261 const char* xx; in cutcols() local
272 xx = 0; in cutcols()
290 if (s == bp && xx) in cutcols()
292 w += s - xx; in cutcols()
293 bp = (char*)(s = xx); in cutcols()
294 xx = 0; in cutcols()
297 xx = s; in cutcols()
/illumos-gate/usr/src/cmd/sendmail/src/
H A Drecipient.c40 sorthost(xx, yy) in sorthost() argument
41 register ADDRESS *xx; in sorthost()
48 return sm_strcasecmp(xx->q_host, yy->q_host);
76 sortexpensive(xx, yy) in sortexpensive() argument
77 ADDRESS *xx; in sortexpensive()
86 return sm_strcasecmp(xx->q_host, yy->q_host);
107 sortbysignature(xx, yy) in sortbysignature() argument
108 ADDRESS *xx; in sortbysignature()
114 if (xx->q_signature == NULL)
115 xx->q_signature = hostsignature(xx->q_mailer, xx->q_host);
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/astsa/
H A Dastsa.mm1 .xx title="astsa"
16 .xx link="http://www.research.att.com/sw/download/"
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dtgammal.c758 struct LDouble xx; in kpsin() local
762 xx.h = x; in kpsin()
767 xx.l = t1 * ks[0] + t2; in kpsin()
768 return (xx); in kpsin()
832 struct LDouble xx; in kpcos() local
835 xx.h = one_pi_h; in kpcos()
844 xx.l = x8 + t4; in kpcos()
845 return (xx); in kpcos()
H A Dtgamma.c1336 struct Double xx; in kpsin() local
1339 xx.h = x; in kpsin()
1345 xx.l = t4 + t3; in kpsin()
1346 return (xx); in kpsin()
1374 struct Double xx; in kpcos() local
1377 xx.h = one_pi_h; in kpcos()
1386 xx.l = x8 + t4; /* that will minimized the rounding error in xx.l */ in kpcos()
1387 return (xx); in kpcos()
/illumos-gate/usr/src/pkg/manifests/
H A Ddriver-network-bge.p5m33 set name=pkg.summary value="Broadcom 57xx GE NIC Driver"
35 value="Broadcom 57xx Gigabit Ethernet Network Adapter Driver"
125 desc="Broadcom 57xx Gigabit Ethernet Network Adapter Driver" \
126 name="Broadcom 57xx GE NIC Driver"
/illumos-gate/usr/src/cmd/oawk/
H A Dmakeprctab.c34 struct xx struct
97 struct xx *p; in main()

1234567