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

12

/illumos-gate/usr/src/lib/libast/common/hash/
H A Dhashview.c48 register Hash_bucket_t** sx; local
60 sx = &top->table[top->size];
62 while (sp < sx)
75 sx = &top->table[top->size];
77 while (sp < sx)
H A Dhashdump.c57 Hash_bucket_t** sx; local
62 sx = tab->table + tab->size;
63 for (sp = tab->table; sp < sx; sp++)
H A Dhashfree.c45 Hash_bucket_t** sx; local
65 sx = &tab->table[tab->size];
67 while (sp < sx)
H A Dhashscan.c68 register Hash_bucket_t** sx = tab->table + tab->size; local
70 while (sp < sx)
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dllround.c53 unsigned hx, sx, i; local
57 sx = xx.i[HIWORD] & 0x80000000;
63 return (sx ? -1LL : 1LL);
H A Dllroundf.c44 unsigned hx, sx, i; local
48 sx = xx.i & 0x80000000;
54 return (sx ? -1LL : 1LL);
H A Dlround.c50 unsigned hx, sx, i; local
54 sx = xx.i[HIWORD] & 0x80000000;
58 return (sx ? -1L : 1L);
H A Dlroundf.c42 unsigned hx, sx, i; local
46 sx = xx.i & 0x80000000;
50 return (sx ? -1L : 1L);
H A Dnearbyintf.c41 unsigned hx, sx, i, frac; local
45 sx = xx.i & 0x80000000;
60 if (sx && (rm == FE_UPWARD || rm == FE_DOWNWARD))
66 xx.i = sx | 0x3f800000;
68 xx.i = sx;
81 xx.i = sx | (hx + i);
83 xx.i = sx | hx;
107 unsigned hx, sx, fsr, oldfsr;
111 sx = xx.i & 0x80000000;
127 if (sx)
[all...]
H A Dround.c40 unsigned hx, sx, i; local
44 sx = xx.i[HIWORD] & 0x80000000;
48 return (sx ? -1.0 : 1.0);
49 return (sx ? -0.0 : 0.0);
H A Droundf.c40 unsigned hx, sx, i; local
44 sx = xx.i & 0x80000000;
48 return (sx ? -1.0F : 1.0F);
49 return (sx ? -0.0F : 0.0F);
H A Dtrunc.c40 unsigned hx, sx, i; local
44 sx = xx.i[HIWORD] & 0x80000000;
47 return (sx ? -0.0 : 0.0);
H A Dtruncf.c40 unsigned hx, sx, i; local
44 sx = xx.i & 0x80000000;
47 return (sx ? -0.0F : 0.0F);
H A Dlroundl.c47 unsigned hx, sx, frac, l; local
51 sx = xx.i[0] & 0x80000000;
57 tt.i = sx | 0x7f000000;
64 return (sx ? -1L : 1L);
88 if (l > 0x80000000U || (l == 0x80000000U && !sx)) {
89 tt.i = sx | 0x7f000000;
94 if (sx)
105 int ex, sx, i; local
109 sx = xx.i[2] & 0x8000;
113 return (sx
[all...]
H A Dnearbyint.c50 unsigned hx, sx, i, frac; local
54 sx = xx.i[HIWORD] & 0x80000000;
74 if (sx && (rm == FE_UPWARD || rm == FE_DOWNWARD))
81 xx.i[HIWORD] = sx | 0x3ff00000;
83 xx.i[HIWORD] = sx;
H A Droundl.c41 unsigned hx, sx, v; local
45 sx = xx.i[0] & 0x80000000;
55 return (sx ? -1.0L : 1.0L);
56 return (sx ? -0.0L : 0.0L);
117 if (sx)
128 int ex, sx, i; local
132 sx = xx.i[2] & 0x8000;
136 return (sx ? -1.0L : 1.0L);
137 return (sx ? -0.0L : 0.0L);
153 xx.i[2] = sx |
[all...]
H A Dtruncl.c41 unsigned hx, sx; local
45 sx = xx.i[0] & 0x80000000;
54 return (sx ? -0.0L : 0.0L);
71 if (sx)
82 int ex, sx, i; local
86 sx = xx.i[2] & 0x8000;
89 return (sx ? -0.0L : 0.0L);
H A Dllroundl.c53 unsigned hx, sx, frac; local
57 sx = xx.i[0] & 0x80000000;
63 tt.i = sx | 0x7f000000;
70 return (sx ? -1LL : 1LL);
105 !sx))) {
106 tt.i = sx | 0x7f000000;
111 if (sx) {
127 int ex, sx, i; local
131 sx = xx.i[2] & 0x8000;
137 return (sx
[all...]
H A Dlrintl.c51 unsigned int hx, sx, frac, l, fsr; local
56 sx = xx.i[0] & 0x80000000;
62 tt.i = sx | 0x7f000000;
72 if (sx)
81 return (sx ? -1L : 1L);
106 if (l > 0x80000000U || (l == 0x80000000U && !sx)) {
107 tt.i = sx | 0x7f000000;
118 if (sx)
H A Dnearbyintl.c49 unsigned hx, sx, i, frac; local
55 sx = xx.i[0] & 0x80000000;
65 xx.i[0] = sx | hx | 0x8000;
76 if (sx)
83 xx.i[0] = sx | 0x3fff0000;
85 xx.i[0] = sx;
/illumos-gate/usr/src/ucblib/libcurses/
H A Dtouchwin.c50 touchline(WINDOW *win, int y, int sx, int ex) argument
53 fprintf(outf, "TOUCHLINE(%0.2o, %d, %d, %d)\n", win, y, sx, ex);
57 sx += win->_ch_off;
60 win->_firstch[y] = (short)sx;
63 if (win->_firstch[y] > sx)
64 win->_firstch[y] = (short)sx;
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dcbrtl.c42 int n, m, m3, sx; local
48 sx = signbitl(x);
69 return (sx == 0 ? t : -t);
H A Dremainderl.c56 int sx; local
65 sx = signbitl(x);
87 return (sx == 0 ? x : -x);
/illumos-gate/usr/src/lib/libm/common/LD/
H A Dcbrtl.c42 int n, m, m3, n0, sx; local
51 sx = signbitl(x);
72 return (sx == 0 ? t : -t);
/illumos-gate/usr/src/lib/libm/common/C/
H A Dcbrt.c228 unsigned int hx, sx, ex, j, offset; local
232 sx = xx.i[HIWORD] & 0x80000000;
266 yy.i[HIWORD] = sx | (j + offset);

Completed in 104 milliseconds

12