Home
last modified time | relevance | path

Searched refs:wx (Results 1 – 16 of 16) sorted by relevance

/titanic_50/usr/src/lib/libcurses/screen/
H A Dwrefresh.c88 int wx, wy, nc, boty, clby, idby, *hs, curwin; in wrefresh() local
183 for (wx = nc; wx >= 0; --wx) in wrefresh()
184 marks[wy][wx] = 0; in wrefresh()
262 wx = _virtscr->_curx; in wrefresh()
263 if (wy != cy || wx != cx) { in wrefresh()
264 (void) mvcur(cy, cx, wy, wx); in wrefresh()
268 cx = (short) wx; in wrefresh()
373 int wx, lastx, x, mtch, idch, blnkx, idcx, video_attrx, in _updateln() local
391 wx = 0; in _updateln()
394 wx = _virtscr->_firstch[wy]; in _updateln()
[all …]
/titanic_50/usr/src/lib/libc/sparc/fp/
H A D_Q_sqrt.c99 unsigned int xm, fsr, lx, wx[3]; in _Qp_sqrt() local
170 wx[0] = x->l.frac2; in _Qp_sqrt()
171 wx[1] = x->l.frac3; in _Qp_sqrt()
172 wx[2] = x->l.frac4; in _Qp_sqrt()
175 wx[0] = x->l.frac2; in _Qp_sqrt()
176 wx[1] = x->l.frac3; in _Qp_sqrt()
177 wx[2] = x->l.frac4; in _Qp_sqrt()
181 wx[0] = x->l.frac3; in _Qp_sqrt()
182 wx[1] = x->l.frac4; in _Qp_sqrt()
183 wx[2] = 0; in _Qp_sqrt()
[all …]
H A D_Q_mul.c90 unsigned int xm, ym, fsr, lx, ly, wx[3], wy[3]; in _Qp_mul() local
206 wx[0] = x->l.frac2; in _Qp_mul()
207 wx[1] = x->l.frac3; in _Qp_mul()
208 wx[2] = x->l.frac4; in _Qp_mul()
211 wx[0] = x->l.frac2; in _Qp_mul()
212 wx[1] = x->l.frac3; in _Qp_mul()
213 wx[2] = x->l.frac4; in _Qp_mul()
217 wx[0] = x->l.frac3; in _Qp_mul()
218 wx[1] = x->l.frac4; in _Qp_mul()
219 wx[2] = 0; in _Qp_mul()
[all …]
H A D_Q_div.c108 unsigned int xm, ym, fsr, lx, ly, wx[3], wy[3]; in _Qp_div() local
238 wx[0] = x->l.frac2; in _Qp_div()
239 wx[1] = x->l.frac3; in _Qp_div()
240 wx[2] = x->l.frac4; in _Qp_div()
243 wx[0] = x->l.frac2; in _Qp_div()
244 wx[1] = x->l.frac3; in _Qp_div()
245 wx[2] = x->l.frac4; in _Qp_div()
249 wx[0] = x->l.frac3; in _Qp_div()
250 wx[1] = x->l.frac4; in _Qp_div()
251 wx[2] = 0; in _Qp_div()
[all …]
/titanic_50/usr/src/ucblib/libcurses/
H A Drefresh.c157 short wx, lch, y; in makech() local
160 wx = win->_firstch[wy] - win->_ch_off; in makech()
161 if (wx >= win->_maxx) in makech()
163 else if (wx < 0) in makech()
164 wx = 0; in makech()
175 csp = &curscr->_y[wy + win->_begy][wx + win->_begx]; in makech()
177 nsp = &win->_y[wy][wx]; in makech()
190 while (wx <= lch) { in makech()
192 domvcur(ly, lx, y, wx + win->_begx); in makech()
194 fprintf(outf, "MAKECH: 1: wx = %d, lx = %d\n", wx, lx); in makech()
[all …]
/titanic_50/usr/src/uts/common/os/
H A Dbitmap.c55 index_t wx; /* word index in map */ in bt_availbit() local
64 for (wx = 0; wx <= maxword; wx++) in bt_availbit()
65 if (bitmap[wx] != ~0) in bt_availbit()
68 if (wx <= maxword) { in bt_availbit()
77 maxbit = wx == maxword ? nbits & BT_ULMASK : BT_NBIPUL - 1; in bt_availbit()
78 word = bitmap[wx]; in bt_availbit()
82 return (wx << BT_ULSHIFT | bx); in bt_availbit()
95 bt_gethighbit(ulong_t *mapp, int wx) in bt_gethighbit() argument
99 while ((word = mapp[wx]) == 0) { in bt_gethighbit()
100 wx--; in bt_gethighbit()
[all …]
/titanic_50/usr/src/lib/libdtrace/common/
H A Ddt_regset.c99 ulong_t wx; in dt_regset_alloc() local
101 for (wx = 0; wx <= maxw; wx++) { in dt_regset_alloc()
102 if (drp->dr_bitmap[wx] != ~0UL) in dt_regset_alloc()
106 if (wx <= maxw) { in dt_regset_alloc()
107 ulong_t maxb = (wx == maxw) ? nbits & BT_ULMASK : BT_NBIPUL - 1; in dt_regset_alloc()
108 ulong_t word = drp->dr_bitmap[wx]; in dt_regset_alloc()
114 reg = (int)((wx << BT_ULSHIFT) | bx); in dt_regset_alloc()
/titanic_50/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwrefresh.c82 int wy, wx, ny, nx, dx, value; in wnoutrefresh() local
102 wx = w->_first[wy]; in wnoutrefresh()
103 nx = w->_begx + wx; in wnoutrefresh()
104 dx = w->_last[wy] - wx; in wnoutrefresh()
111 (void) memcpy(&ns->_line[ny][nx], &w->_line[wy][wx], in wnoutrefresh()
/titanic_50/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],
/titanic_50/usr/src/cmd/mandoc/
H A Dterm_ps.c47 unsigned short wx; /* WX in AFM */ member
1020 p->ps->pscol += (size_t)fonts[f].gly[c].wx; in ps_pletter()
1076 size_t savecol, wx; in ps_letter() local
1155 wx = fonts[p->ps->lastf].gly[(int)p->ps->last-32].wx; in ps_letter()
1156 if (p->ps->pscol + wx < p->ps->pscolnext) in ps_letter()
1158 p->ps->pscolnext - wx) / 2; in ps_letter()
1286 return((size_t)fonts[(int)TERMFONT_NONE].gly[c].wx); in ps_width()
1314 fonts[(int)TERMFONT_NONE].gly[109 - 32].wx; in ps_hspan()
1318 fonts[(int)TERMFONT_NONE].gly[110 - 32].wx; in ps_hspan()
1325 fonts[(int)TERMFONT_NONE].gly[109 - 32].wx / 100.0; in ps_hspan()
/titanic_50/usr/src/psm/stand/boot/common/
H A Dheap_kmem.c369 size_t wx; in demote() local
374 wx = weight(x); in demote()
376 while (weight(left_branch) > wx || weight(right_branch) > wx) { in demote()
/titanic_50/usr/src/uts/common/sys/
H A Dbitmap.h148 extern int bt_gethighbit(ulong_t *mapp, int wx);
/titanic_50/usr/src/uts/common/disp/
H A Ddisp.c2104 int wx; in disp_fix_unbound_pri() local
2115 wx = pri >> BT_ULSHIFT; /* index of word in map */ in disp_fix_unbound_pri()
2120 mapword = dqactmap[wx] & (BT_BIW(pri) - 1); in disp_fix_unbound_pri()
2126 pri = (wx << BT_ULSHIFT) + highbit(mapword) - 1; in disp_fix_unbound_pri()
2127 } else if (wx > 0) { in disp_fix_unbound_pri()
2128 pri = bt_gethighbit(dqactmap, wx - 1); /* sign extend */ in disp_fix_unbound_pri()
/titanic_50/usr/src/tools/scripts/
H A Dwebrev.sh2044 [[ -z $WX ]] && WX=`look_for_prog wx`
2309 if [[ -r $CODEMGR_WS/wx/active ]]; then
2310 wxfile=$CODEMGR_WS/wx/active
/titanic_50/usr/src/lib/libshell/common/tests/
H A Dbasic.sh46 uo-wx 0303 \
/titanic_50/usr/src/tools/
H A DREADME.tools115 Primarily used by wx
253 manually-generated list; knows how to use wx's active file for