HomeSort by: relevance | last modified time | path
    Searched defs:endx (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libcurses/
toucholap.c 51 int y, endy, endx, starty, startx; local in function:touchoverlap
61 endx = min(win1->maxx + win1->begx, win2->maxx + win2->begx);
63 starty, startx, endy, endx);
70 if (starty >= endy || startx >= endx)
75 endx -= win2->begx;
76 for (--endx, y = starty; y < endy; y++)
77 __touchline(win2, y, startx, endx);
border.c 70 int endy, endx, i; local in function:wborder
129 endx = win->maxx - 1;
138 win->alines[i]->line[endx].ch = (wchar_t) right & __CHARTEXT;
139 win->alines[i]->line[endx].attr = (attr_t) right & __ATTRIBUTES;
141 for (i = 1; i < endx; i++) {
153 fp[endx].ch = (wchar_t) topright & __CHARTEXT;
154 fp[endx].attr = (attr_t) topright & __ATTRIBUTES;
157 lp[endx].ch = (wchar_t) botright & __CHARTEXT;
158 lp[endx].attr = (attr_t) botright & __ATTRIBUTES;
207 int endy, endx, i, j, k, cw, pcw, tlcw, blcw, trcw, brcw
    [all...]

Completed in 11 milliseconds