Searched defs:wx (Results 1 - 12 of 12) sorted by relevance

/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dwrefresh.c82 int wy, wx, ny, nx, dx, value; local
101 wx = w->_first[wy];
102 nx = w->_begx + wx;
103 dx = w->_last[wy] - wx;
113 &ns->_line[ny][nx], &w->_line[wy][wx],
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwrefresh.c82 int wy, wx, ny, nx, dx, value; local
102 wx = w->_first[wy];
103 nx = w->_begx + wx;
104 dx = w->_last[wy] - wx;
111 (void) memcpy(&ns->_line[ny][nx], &w->_line[wy][wx],
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_regset.c99 ulong_t wx; local
101 for (wx = 0; wx <= maxw; wx++) {
102 if (drp->dr_bitmap[wx] != ~0UL)
106 if (wx <= maxw) {
107 ulong_t maxb = (wx == maxw) ? nbits & BT_ULMASK : BT_NBIPUL - 1;
108 ulong_t word = drp->dr_bitmap[wx];
114 reg = (int)((wx << BT_ULSHIFT) | bx);
/illumos-gate/usr/src/ucblib/libcurses/
H A Drefresh.c157 short wx, lch, y; local
160 wx = win->_firstch[wy] - win->_ch_off;
161 if (wx >= win->_maxx)
163 else if (wx < 0)
164 wx = 0;
175 csp = &curscr->_y[wy + win->_begy][wx + win->_begx];
177 nsp = &win->_y[wy][wx];
190 while (wx <= lch) {
192 domvcur(ly, lx, y, wx + win->_begx);
194 fprintf(outf, "MAKECH: 1: wx
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Dbitmap.c55 index_t wx; /* word index in map */ local
64 for (wx = 0; wx <= maxword; wx++)
65 if (bitmap[wx] != ~0)
68 if (wx <= maxword) {
77 maxbit = wx == maxword ? nbits & BT_ULMASK : BT_NBIPUL - 1;
78 word = bitmap[wx];
82 return (wx << BT_ULSHIFT | bx);
92 * the word specified by wx
95 bt_gethighbit(ulong_t *mapp, int wx) argument
[all...]
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_Q_div.c108 unsigned int xm, ym, fsr, lx, ly, wx[3], wy[3]; local
238 wx[0] = x->l.frac2;
239 wx[1] = x->l.frac3;
240 wx[2] = x->l.frac4;
243 wx[0] = x->l.frac2;
244 wx[1] = x->l.frac3;
245 wx[2] = x->l.frac4;
249 wx[0] = x->l.frac3;
250 wx[1] = x->l.frac4;
251 wx[
[all...]
H A D_Q_mul.c90 unsigned int xm, ym, fsr, lx, ly, wx[3], wy[3]; local
206 wx[0] = x->l.frac2;
207 wx[1] = x->l.frac3;
208 wx[2] = x->l.frac4;
211 wx[0] = x->l.frac2;
212 wx[1] = x->l.frac3;
213 wx[2] = x->l.frac4;
217 wx[0] = x->l.frac3;
218 wx[1] = x->l.frac4;
219 wx[
[all...]
H A D_Q_sqrt.c99 unsigned int xm, fsr, lx, wx[3]; local
170 wx[0] = x->l.frac2;
171 wx[1] = x->l.frac3;
172 wx[2] = x->l.frac4;
175 wx[0] = x->l.frac2;
176 wx[1] = x->l.frac3;
177 wx[2] = x->l.frac4;
181 wx[0] = x->l.frac3;
182 wx[1] = x->l.frac4;
183 wx[
[all...]
/illumos-gate/usr/src/psm/stand/boot/common/
H A Dheap_kmem.c369 size_t wx; local
374 wx = weight(x);
376 while (weight(left_branch) > wx || weight(right_branch) > wx) {
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dwrefresh.c88 int wx, wy, nc, boty, clby, idby, *hs, curwin; local
183 for (wx = nc; wx >= 0; --wx)
184 marks[wy][wx] = 0;
262 wx = _virtscr->_curx;
263 if (wy != cy || wx != cx) {
264 (void) mvcur(cy, cx, wy, wx);
268 cx = (short) wx;
373 int wx, last local
1039 _rmargin(int wx) argument
[all...]
/illumos-gate/usr/src/cmd/mandoc/
H A Dterm_ps.c51 unsigned short wx; /* WX in AFM */ member in struct:glyph
1004 p->ps->pscol += (size_t)fonts[f].gly[c].wx;
1060 size_t savecol, wx; local
1139 wx = fonts[p->ps->lastf].gly[(int)p->ps->last-32].wx;
1140 if (p->ps->pscol + wx < p->ps->pscolnext)
1142 p->ps->pscolnext - wx) / 2;
1270 return (size_t)fonts[(int)TERMFONT_NONE].gly[c].wx;
1298 fonts[(int)TERMFONT_NONE].gly[109 - 32].wx;
1302 fonts[(int)TERMFONT_NONE].gly[110 - 32].wx;
[all...]
/illumos-gate/usr/src/uts/common/disp/
H A Ddisp.c2088 int wx; local
2099 wx = pri >> BT_ULSHIFT; /* index of word in map */
2104 mapword = dqactmap[wx] & (BT_BIW(pri) - 1);
2110 pri = (wx << BT_ULSHIFT) + highbit(mapword) - 1;
2111 } else if (wx > 0) {
2112 pri = bt_gethighbit(dqactmap, wx - 1); /* sign extend */

Completed in 78 milliseconds