Home
last modified time | relevance | path

Searched refs:sby (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libcurses/screen/
H A Doverlap.c53 int sby, sbx, sey, sex, dby, dbx, dey, dex, in _overlap() local
61 sby = Srcwin->_begy; dby = Dstwin->_begy; in _overlap()
63 sey = sby + Srcwin->_maxy; dey = dby + Dstwin->_maxy; in _overlap()
66 if (sey < dby || sby > dey || sex < dbx || sbx > dex) in _overlap()
69 top = _MAX(sby, dby); bottom = _MIN(sey, dey); in _overlap()
72 sby = top - sby; sbx = left - sbx; in _overlap()
76 return (copywin(Srcwin, Dstwin, sby, sbx, dby, dbx, dey, dex, Overlay)); in _overlap()
H A Dpnoutref.c48 pnoutrefresh(WINDOW *pad, int pby, int pbx, int sby, int sbx, int sey, int sex) in pnoutrefresh() argument
50 return (_prefresh(wnoutrefresh, pad, pby, pbx, sby, sbx, sey, sex)); in pnoutrefresh()
/illumos-gate/usr/src/lib/libm/common/C/
H A Dpow.c164 int sbx, sby, j, k, yisint; in pow() local
191 sby = (unsigned) hy >> 31; in pow()
229 return (sby == 0 ? y : zero); in pow()
231 return (sby != 0 ? -y : zero); in pow()
234 if (sby != 0) { /* y is -1 */ in pow()
267 if (sby == 1) { in pow()
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dpowl.c137 int sbx, sby, j, k, yisint, m; in powl() local
160 sby = (unsigned) hy >> 31; in powl()
206 return (sby == 0 ? y : zero); in powl()
208 return (sby != 0 ? -y : zero); in powl()
210 if (sby != 0) in powl()
228 if (sby == 1) in powl()