Home
last modified time | relevance | path

Searched refs:xx (Results 1 – 25 of 165) sorted by relevance

1234567

/titanic_44/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.aggpack.d.out46 78 0 :xx : 2 | 100
47 77 0 :xx : 2 | 100
48 76 0 :xx : 2 | 100
49 75 0 :xx : 2 | 100
50 74 0 :xx : 2 | 100
51 73 0 :xx : 2 | 100
52 72 0 :xx : 2 | 100
53 71 0 :xx : 2 | 100
54 70 0 :xx : 2 | 100
55 69 0 :xx : 2 | 100
[all …]
/titanic_44/usr/src/lib/libm/common/m9x/
H A Droundl.c40 } xx; in roundl() local
44 xx.q = x; in roundl()
45 sx = xx.i[0] & 0x80000000; in roundl()
46 hx = xx.i[0] & ~0x80000000; in roundl()
59 xx.i[0] = hx; in roundl()
64 if (xx.i[0] & v) in roundl()
65 xx.i[0] += v; in roundl()
66 xx.i[0] &= ~(v - 1); in roundl()
67 } else if (xx.i[1] & 0x80000000) in roundl()
68 ++xx.i[0]; in roundl()
[all …]
H A Dnearbyintl.c48 } xx; in __nearbyintl() local
54 xx.q = x; in __nearbyintl()
55 sx = xx.i[0] & 0x80000000; in __nearbyintl()
56 hx = xx.i[0] & ~0x80000000; in __nearbyintl()
62 (xx.i[1] | xx.i[2] | xx.i[3]))) && !(hx & 0x8000)) { in __nearbyintl()
65 xx.i[0] = sx | hx | 0x8000; in __nearbyintl()
67 return (xx.q); in __nearbyintl()
68 } else if ((hx | xx.i[1] | xx.i[2] | xx.i[3]) == 0) /* x is zero */ in __nearbyintl()
82 ((hx & 0xffff) | xx.i[1] | xx.i[2] | xx.i[3])))) in __nearbyintl()
83 xx.i[0] = sx | 0x3fff0000; in __nearbyintl()
[all …]
H A Dmodfl.c41 } xx, yy; in __modfl() local
44 xx.q = x; in __modfl()
45 hx = xx.i[0] & ~0x80000000; in __modfl()
50 (xx.i[1] | xx.i[2] | xx.i[3]) == 0)) { in __modfl()
51 xx.i[0] &= 0x80000000; in __modfl()
52 xx.i[1] = xx.i[2] = xx.i[3] = 0; in __modfl()
54 return (xx.q); in __modfl()
58 xx.i[0] &= 0x80000000; in __modfl()
59 xx.i[1] = xx.i[2] = xx.i[3] = 0; in __modfl()
60 *iptr = xx.q; in __modfl()
[all …]
H A Dfrexpl.c41 } xx; in __frexpl() local
45 xx.q = x; in __frexpl()
46 hx = xx.i[0] & ~0x80000000; in __frexpl()
55 if ((hx | xx.i[1] | xx.i[2] | xx.i[3]) == 0) { in __frexpl()
61 s = xx.i[0] & 0x80000000; in __frexpl()
62 while ((hx | (xx.i[1] & 0xffff0000)) == 0) { in __frexpl()
63 hx = xx.i[1]; in __frexpl()
64 xx.i[1] = xx.i[2]; in __frexpl()
65 xx.i[2] = xx.i[3]; in __frexpl()
66 xx.i[3] = 0; in __frexpl()
[all …]
H A Dnexttoward.c78 } xx; in __nexttoward() local
95 lx = xx.d = x; in __nexttoward()
96 hx = (xx.i[0] & ~0x80000000) | xx.i[1]; in __nexttoward()
106 xx.i[0] = yy.i[0]; in __nexttoward()
107 return (xx.d); in __nexttoward()
114 xx.i[0] = 0; in __nexttoward()
115 xx.i[1] = 0x00000001; in __nexttoward()
116 } else if ((int)xx.i[0] >= 0) { /* x is positive */ in __nexttoward()
117 if (++xx.i[1] == 0) in __nexttoward()
118 xx.i[0]++; in __nexttoward()
[all …]
H A Dllroundl.c44 } xx; in llroundl() local
56 xx.q = x; in llroundl()
57 sx = xx.i[0] & 0x80000000; in llroundl()
58 hx = xx.i[0] & ~0x80000000; in llroundl()
76 xx.i[0] = 0x10000 | (xx.i[0] & 0xffff); in llroundl()
79 zz.i[1] = xx.i[0] >> (j - 96); in llroundl()
80 frac = ((xx.i[0] << 1) << (127 - j)) | (xx.i[1] >> (j - 96)); in llroundl()
81 if (((xx.i[1] << 1) << (127 - j)) | xx.i[2] | xx.i[3]) in llroundl()
84 zz.i[0] = xx.i[0] >> (j - 64); in llroundl()
85 zz.i[1] = ((xx.i[0] << 1) << (95 - j)) | (xx.i[1] >> (j - 64)); in llroundl()
[all …]
H A Dlroundl.c42 } xx; in lroundl() local
50 xx.q = x; in lroundl()
51 sx = xx.i[0] & 0x80000000; in lroundl()
52 hx = xx.i[0] & ~0x80000000; in lroundl()
70 xx.i[0] = 0x10000 | (xx.i[0] & 0xffff); in lroundl()
72 l = xx.i[0] >> (j - 96); in lroundl()
73 frac = ((xx.i[0] << 1) << (127 - j)) | (xx.i[1] >> (j - 96)); in lroundl()
74 if (((xx.i[1] << 1) << (127 - j)) | xx.i[2] | xx.i[3]) in lroundl()
77 l = (xx.i[0] << (96 - j)) | (xx.i[1] >> (j - 64)); in lroundl()
78 frac = (xx.i[1] << (96 - j)) | (xx.i[2] >> (j - 64)); in lroundl()
[all …]
H A Dllrintl.c48 } xx; in llrintl() local
61 xx.q = x; in llrintl()
62 sx = xx.i[0] & 0x80000000; in llrintl()
63 hx = xx.i[0] & ~0x80000000; in llrintl()
70 } else if ((hx | xx.i[1] | xx.i[2] | xx.i[3]) == 0) /* x is zero */ in llrintl()
86 ((hx & 0xffff) | xx.i[1] | xx.i[2] | xx.i[3])))) in llrintl()
93 xx.i[0] = 0x10000 | (xx.i[0] & 0xffff); in llrintl()
96 zz.i[1] = xx.i[0] >> (j - 96); in llrintl()
97 frac = ((xx.i[0] << 1) << (127 - j)) | (xx.i[1] >> (j - 96)); in llrintl()
98 if (((xx.i[1] << 1) << (127 - j)) | xx.i[2] | xx.i[3]) in llrintl()
[all …]
H A Dtruncl.c40 } xx; in truncl() local
44 xx.q = x; in truncl()
45 sx = xx.i[0] & 0x80000000; in truncl()
46 hx = xx.i[0] & ~0x80000000; in truncl()
57 xx.i[0] = hx; in truncl()
59 xx.i[0] &= ~((1 << (j - 96)) - 1); in truncl()
60 xx.i[1] = xx.i[2] = xx.i[3] = 0; in truncl()
62 xx.i[1] &= ~((1 << (j - 64)) - 1); in truncl()
63 xx.i[2] = xx.i[3] = 0; in truncl()
65 xx.i[2] &= ~((1 << (j - 32)) - 1); in truncl()
[all …]
H A Dnexttowardf.c67 } xx; in __nexttowardf() local
84 lx = xx.f = x; in __nexttowardf()
85 hx = xx.i & ~0x80000000; in __nexttowardf()
95 xx.i = yy.i[0]; in __nexttowardf()
96 return (xx.f); in __nexttowardf()
103 xx.i = 0x00000001; in __nexttowardf()
104 else if ((int) xx.i >= 0) /* x is positive */ in __nexttowardf()
105 xx.i++; in __nexttowardf()
107 xx.i--; in __nexttowardf()
110 xx.i = 0x80000001; in __nexttowardf()
[all …]
H A Dlrintl.c46 } xx; in lrintl() local
55 xx.q = x; in lrintl()
56 sx = xx.i[0] & 0x80000000; in lrintl()
57 hx = xx.i[0] & ~0x80000000; in lrintl()
64 } else if ((hx | xx.i[1] | xx.i[2] | xx.i[3]) == 0) /* x is zero */ in lrintl()
80 ((hx & 0xffff) | xx.i[1] | xx.i[2] | xx.i[3])))) in lrintl()
87 xx.i[0] = 0x10000 | (xx.i[0] & 0xffff); in lrintl()
89 l = xx.i[0] >> (j - 96); in lrintl()
90 frac = ((xx.i[0] << 1) << (127 - j)) | (xx.i[1] >> (j - 96)); in lrintl()
91 if (((xx.i[1] << 1) << (127 - j)) | xx.i[2] | xx.i[3]) in lrintl()
[all …]
H A Dnearbyint.c49 } xx; in __nearbyint() local
53 xx.d = x; in __nearbyint()
54 sx = xx.i[HIWORD] & 0x80000000; in __nearbyint()
55 hx = xx.i[HIWORD] & ~0x80000000; in __nearbyint()
67 } else if ((hx | xx.i[LOWORD]) == 0) /* x is zero */ in __nearbyint()
80 (hx >= 0x3fe00000 && ((hx & 0xfffff) | xx.i[LOWORD])))) in __nearbyint()
81 xx.i[HIWORD] = sx | 0x3ff00000; in __nearbyint()
83 xx.i[HIWORD] = sx; in __nearbyint()
84 xx.i[LOWORD] = 0; in __nearbyint()
85 return (xx.d); in __nearbyint()
[all …]
H A Dmodf.c52 } xx, yy; in __modf() local
55 xx.d = x; in __modf()
56 hx = xx.i[HIWORD] & ~0x80000000; in __modf()
61 xx.i[LOWORD] == 0)) { in __modf()
62 xx.i[HIWORD] &= 0x80000000; in __modf()
63 xx.i[LOWORD] = 0; in __modf()
65 return (xx.d); in __modf()
69 xx.i[HIWORD] &= 0x80000000; in __modf()
70 xx.i[LOWORD] = 0; in __modf()
71 *iptr = xx.d; in __modf()
[all …]
/titanic_44/usr/src/lib/libc/sparc/fp/
H A D_Q_scl.c45 } xx; in _Q_scl() local
48 xx.q = *x; in _Q_scl()
49 hx = xx.i[0] & ~0x80000000; in _Q_scl()
52 if ((hx | xx.i[1] | xx.i[2] | xx.i[3]) == 0) in _Q_scl()
56 while (hx == 0 && xx.i[1] < 0x10000) { in _Q_scl()
57 hx = xx.i[1]; in _Q_scl()
58 xx.i[1] = xx.i[2]; in _Q_scl()
59 xx.i[2] = xx.i[3]; in _Q_scl()
60 xx.i[3] = 0; in _Q_scl()
64 hx = (hx << 1) | (xx.i[1] >> 31); in _Q_scl()
[all …]
H A D_Q_div.c107 double c, d, ry, xx[4], yy[5], zz[5]; in _Qp_div() local
314 xx[0] = (double)((int)lx) * c; in _Qp_div()
318 xx[0] += (double)((int)(wx[0] >> 8)) * c; in _Qp_div()
322 xx[1] = (double)((int)(((wx[0] << 16) | in _Qp_div()
328 xx[2] = (double)((int)(((wx[1] << 8) | in _Qp_div()
334 xx[3] = (double)((int)(wx[2] & 0xffffff)) * c; in _Qp_div()
341 zz[0] = (ry * (xx[0] + xx[1]) + three2p27) - three2p27; in _Qp_div()
342 xx[0] = ((xx[0] - zz[0] * yy[0]) - zz[0] * yy[1]) + xx[1]; in _Qp_div()
345 xx[0] -= c; in _Qp_div()
346 xx[1] = xx[2] - (d - c); in _Qp_div()
[all …]
/titanic_44/usr/src/cmd/fs.d/cachefs/cfsd/
H A Dcfsd_logelem.c139 int xx; in logelem_print_cred() local
152 for (xx = 0; xx < credp->cr_ngroups; xx++) { in logelem_print_cred()
153 sprintf(format, " %d", credp->cr_groups[xx]); in logelem_print_cred()
269 int xx; in logelem_lostfound() local
297 xx = kmod_getinfo(logelem_object_p->i_kmod_object_p, cidp, &ginfo); in logelem_lostfound()
298 if (xx) { in logelem_lostfound()
325 xx = maptbl_get(logelem_object_p->i_maptbl_object_p, in logelem_lostfound()
327 if (xx == -1) { in logelem_lostfound()
332 if ((xx == 0) && (0 < map.ms_fid)) { in logelem_lostfound()
333 xx = logfile_offset( in logelem_lostfound()
[all …]
H A Dcfsd_maptbl.c115 int xx; in maptbl_domap() local
133 xx = munmap(maptbl_object_p->i_pa, maptbl_object_p->i_palen); in maptbl_domap()
134 if (xx == -1) { in maptbl_domap()
135 xx = errno; in maptbl_domap()
137 maptbl_object_p->i_name, xx, maptbl_object_p->i_pa, in maptbl_domap()
151 xx = errno; in maptbl_domap()
154 maptbl_object_p->i_name, xx, off, len)); in maptbl_domap()
157 return (xx); in maptbl_domap()
323 unsigned int xx; in maptbl_hash1() local
328 xx = cid.cid_fileno % i_entries; in maptbl_hash1()
[all …]
H A Dcfsd_fscache.c82 int xx; in cfsd_fscache_create() local
115 xx = mutex_init(&fscache_object_p->i_lock, USYNC_THREAD, NULL); in cfsd_fscache_create()
116 dbug_assert(xx == 0); in cfsd_fscache_create()
118 xx = cond_init(&fscache_object_p->i_cvwait, USYNC_THREAD, 0); in cfsd_fscache_create()
119 dbug_assert(xx == 0); in cfsd_fscache_create()
137 int xx; in cfsd_fscache_destroy() local
153 xx = mutex_destroy(&fscache_object_p->i_lock); in cfsd_fscache_destroy()
154 dbug_assert(xx == 0); in cfsd_fscache_destroy()
157 xx = cond_destroy(&fscache_object_p->i_cvwait); in cfsd_fscache_destroy()
158 dbug_assert(xx == 0); in cfsd_fscache_destroy()
[all …]
H A Dcfsd_kmod.c132 int xx; in kmod_setup() local
148 xx = errno; in kmod_setup()
149 dbug_print(("err", "open of %s failed %d", path, xx)); in kmod_setup()
151 xx = 0; in kmod_setup()
158 xx = kmod_doioctl(kmod_object_p, CFSDCMD_DAEMONID, in kmod_setup()
160 if (xx) { in kmod_setup()
167 return (xx); in kmod_setup()
206 int xx; in kmod_xwait() local
212 xx = kmod_doioctl(kmod_object_p, CFSDCMD_XWAIT, NULL, 0, NULL, 0); in kmod_xwait()
213 if (xx) in kmod_xwait()
[all …]
H A Dcfsd_logfile.c118 int xx; in logfile_domap() local
138 xx = munmap(mmp->i_pa, mmp->i_palen); in logfile_domap()
139 if (xx == -1) { in logfile_domap()
140 xx = errno; in logfile_domap()
142 logfile_object_p->i_name, xx, mmp->i_pa, in logfile_domap()
155 xx = errno; in logfile_domap()
158 logfile_object_p->i_name, xx, off, len)); in logfile_domap()
161 return (xx); in logfile_domap()
236 int xx; in logfile_setup() local
260 xx = errno; in logfile_setup()
[all …]
/titanic_44/usr/src/cmd/fs.d/cachefs/cfsadmin/
H A Dcfsadmin.c129 int xx; in main() local
282 xx = cfs_get_opts(optionp, &uv); in main()
283 if (xx) in main()
288 xx = check_user_values_for_sanity(&uv); in main()
289 if (xx) in main()
300 xx = cachefs_create_cache(cachedir, &uv, &clabel); in main()
301 if (xx != 0) { in main()
302 if (xx == -2) { in main()
321 xx = update_cachelabel(cachedir, optionp); in main()
323 if (xx != 0) { in main()
[all …]
/titanic_44/usr/src/cmd/fs.d/cachefs/common/
H A Dsubr.c82 int xx; in cachefs_dir_lock() local
91 xx = stat(strp, &statb); in cachefs_dir_lock()
92 if ((xx < 0) || ((statb.st_mode & S_IFMT) != S_IFDIR)) in cachefs_dir_lock()
128 xx = fcntl(fd, F_SETLKW, &fl); in cachefs_dir_lock()
129 if (xx == -1) { in cachefs_dir_lock()
163 int xx; in cachefs_dir_unlock() local
173 xx = fcntl(fd, F_SETLK, &fl); in cachefs_dir_unlock()
174 if (xx == -1) { in cachefs_dir_unlock()
206 int xx; in cachefs_label_file_get() local
211 xx = lstat64(filep, &statinfo); in cachefs_label_file_get()
[all …]
/titanic_44/usr/src/cmd/fs.d/cachefs/fsck/
H A Dfsck.c140 int xx; in main() local
184 xx = getsubopt(&optionp, cfs_opts, &valuep); in main()
185 switch (xx) { in main()
247 xx = 33; in main()
250 xx = 0; in main()
253 return (xx); in main()
256 xx = cache_upgrade(cachedirp, lockid); in main()
257 if (xx != 0) { in main()
259 xx = cfs_check(cachedirp, noclean, mflag, verbose, nonoclean); in main()
271 return (xx); in main()
[all …]
/titanic_44/usr/src/cmd/sa/
H A Dsar.c816 prt_u_opt(struct sa64 *xx) in prt_u_opt() argument
819 (float)xx->csi.cpu[1] * percent, in prt_u_opt()
820 (float)xx->csi.cpu[2] * percent, in prt_u_opt()
821 (float)xx->csi.cpu[3] * percent, in prt_u_opt()
822 (float)xx->csi.cpu[0] * percent); in prt_u_opt()
826 prt_b_opt(struct sa64 *xx) in prt_b_opt() argument
829 (float)xx->csi.bread / sec_diff, in prt_b_opt()
830 (float)xx->csi.lread / sec_diff, in prt_b_opt()
831 freq((float)xx->csi.lread, (float)xx->csi.bread), in prt_b_opt()
832 (float)xx->csi.bwrite / sec_diff, in prt_b_opt()
[all …]

1234567