Home
last modified time | relevance | path

Searched refs:begy (Results 1 – 25 of 146) sorted by relevance

123456

/dports/editors/vigor/vigor-0.016/curses/
H A Dtoucholap.c53 starty = max(win1->begy, win2->begy);
55 endy = min(win1->maxy + win1->begy, win2->maxy + win2->begx);
61 win1->begy, win1->begx, win1->begy + win1->maxy,
64 win2->begy, win2->begx, win2->begy + win2->maxy,
69 starty -= win2->begy;
71 endy -= win2->begy;
H A Doverwrite.c56 starty = max(win1->begy, win2->begy);
58 endy = min(win1->maxy + win1->begy, win2->maxy + win2->begx);
69 &win2->lines[y - win2->begy]->line[startx - win2->begx],
70 &win1->lines[y - win1->begy]->line[startx - win1->begx],
H A Doverlay.c57 starty = max(win1->begy, win2->begy);
59 endy = min(win1->maxy + win1->begy, win2->maxy + win2->begx);
67 y1 = starty - win1->begy;
68 y2 = starty - win2->begy;
H A Dmvwin.c54 dy = by - win->begy;
60 win->begy += dy;
66 if (by < orig->begy || win->maxy + dy > orig->maxy)
70 win->begy = by;
H A Dnewwin.c102 if (by < orig->begy || bx < orig->begx
103 || by + nl > orig->maxy + orig->begy
107 nl = orig->maxy + orig->begy - by;
137 olp = orig->lines[i + win->begy];
218 win->begy = by;
226 __CTRACE("makenew: win->begy = %d\n", win->begy);
239 if (win->begx == 0 && win->maxy == LINES && win->begy == 0)
241 if (win->begy + win->maxy == LINES)
H A Did_subwins.c51 realy = orig->begy + orig->cury;
57 if (win->begy + win->maxy <= realy)
61 for (y = realy - win->begy; y < win->maxy; y++, oy++)
/dports/devel/ncurses/ncurses-6.3/ncurses/base/
H A Dlib_newwin.c147 begy, begx)); in NCURSES_SP_NAME()
149 if (begy < 0 in NCURSES_SP_NAME()
157 num_lines = SP_PARM->_lines_avail - begy; in NCURSES_SP_NAME()
188 num_lines, num_columns, begy, begx); in newwin()
205 begy, begx)); in derwin()
212 if (begy + num_lines > orig->_maxy + 1 in derwin()
217 num_lines = orig->_maxy + 1 - begy; in derwin()
226 orig->_begy + begy, in derwin()
231 win->_pary = begy; in derwin()
269 int begy, in NCURSES_SP_NAME()
[all …]
H A Dlib_refresh.c84 int begy; in wnoutrefresh() local
111 begy = win->_begy; in wnoutrefresh()
152 for (src_row = 0, dst_row = begy + win->_yoffset; in wnoutrefresh()
272 : (begy + oind + win->_yoffset)); in wnoutrefresh()
/dports/devel/interactive_rebase_tool/git-interactive-rebase-tool-1.2.1/cargo-crates/pdcurses-sys-0.7.0/src/PDCurses/pdcurses/
H A Dwindow.c144 nlines, ncols, begy, begx)); in PDC_makenew()
180 win->_begy = begy; in PDC_makenew()
237 WINDOW *newwin(int nlines, int ncols, int begy, int begx) in newwin() argument
242 nlines, ncols, begy, begx)); in newwin()
245 nlines = LINES - begy; in newwin()
302 int j = begy - orig->_begy; in subwin()
306 nlines, ncols, begy, begx)); in subwin()
311 (begy + nlines) > (orig->_begy + orig->_maxy) || in subwin()
380 int nlines, ncols, begy, begx, i; in dupwin() local
387 begy = win->_begy; in dupwin()
[all …]
H A Dpad.c106 WINDOW *subpad(WINDOW *orig, int nlines, int ncols, int begy, int begx) in subpad() argument
110 int j = begy; in subpad()
114 nlines, ncols, begy, begx)); in subpad()
121 if ((begy < orig->_begy) || (begx < orig->_begx) || in subpad()
122 (begy + nlines) > (orig->_begy + orig->_maxy) || in subpad()
132 if ( !(win = PDC_makenew(nlines, ncols, begy, begx)) ) in subpad()
H A Drefresh.c64 int begy, begx; /* window's place on screen */ in wnoutrefresh() local
72 begy = win->_begy; in wnoutrefresh()
75 for (i = 0, j = begy; i < win->_maxy; i++, j++) in wnoutrefresh()
123 curscr->_cury = win->_cury + begy; in wnoutrefresh()
/dports/devel/pdcurses/PDCurses-3.5/pdcurses/
H A Dwindow.c144 nlines, ncols, begy, begx)); in unctrl()
180 win->_begy = begy; in unctrl()
237 WINDOW *newwin(int nlines, int ncols, int begy, int begx)
242 nlines, ncols, begy, begx));
245 nlines = LINES - begy;
302 int j = begy - orig->_begy;
306 nlines, ncols, begy, begx));
311 (begy + nlines) > (orig->_begy + orig->_maxy) ||
380 int nlines, ncols, begy, begx, i;
387 begy = win->_begy;
[all …]
H A Dpad.c106 WINDOW *subpad(WINDOW *orig, int nlines, int ncols, int begy, int begx) in subpad() argument
112 nlines, ncols, begy, begx)); in subpad()
119 if (begy < 0 || begx < 0 || in subpad()
120 (begy + nlines) > orig->_maxy || in subpad()
125 nlines = orig->_maxy - begy; in subpad()
130 if ( !(win = PDC_makenew(nlines, ncols, begy, begx)) ) in subpad()
143 win->_y[i] = orig->_y[begy + i] + begx; in subpad()
H A Drefresh.c64 int begy, begx; /* window's place on screen */ in wnoutrefresh() local
72 begy = win->_begy; in wnoutrefresh()
75 for (i = 0, j = begy; i < win->_maxy; i++, j++) in wnoutrefresh()
123 curscr->_cury = win->_cury + begy; in wnoutrefresh()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/pdcurses-sys-0.7.1/src/PDCurses/pdcurses/
H A Dwindow.c144 nlines, ncols, begy, begx)); in PDC_makenew()
180 win->_begy = begy; in PDC_makenew()
237 WINDOW *newwin(int nlines, int ncols, int begy, int begx) in newwin() argument
242 nlines, ncols, begy, begx)); in newwin()
245 nlines = LINES - begy; in newwin()
302 int j = begy - orig->_begy; in subwin()
306 nlines, ncols, begy, begx)); in subwin()
311 (begy + nlines) > (orig->_begy + orig->_maxy) || in subwin()
380 int nlines, ncols, begy, begx, i; in dupwin() local
387 begy = win->_begy; in dupwin()
[all …]
H A Dpad.c106 WINDOW *subpad(WINDOW *orig, int nlines, int ncols, int begy, int begx) in subpad() argument
110 int j = begy; in subpad()
114 nlines, ncols, begy, begx)); in subpad()
121 if ((begy < orig->_begy) || (begx < orig->_begx) || in subpad()
122 (begy + nlines) > (orig->_begy + orig->_maxy) || in subpad()
132 if ( !(win = PDC_makenew(nlines, ncols, begy, begx)) ) in subpad()
/dports/devel/mingw32-pdcurses/PDCurses-3.4/pdcurses/
H A Dwindow.c140 nlines, ncols, begy, begx)); in PDC_makenew()
176 win->_begy = begy; in PDC_makenew()
233 WINDOW *newwin(int nlines, int ncols, int begy, int begx) in newwin() argument
238 nlines, ncols, begy, begx)); in newwin()
241 nlines = LINES - begy; in newwin()
298 int j = begy - orig->_begy; in subwin()
302 nlines, ncols, begy, begx)); in subwin()
307 (begy + nlines) > (orig->_begy + orig->_maxy) || in subwin()
375 int nlines, ncols, begy, begx, i; in dupwin() local
382 begy = win->_begy; in dupwin()
[all …]
H A Dpad.c103 WINDOW *subpad(WINDOW *orig, int nlines, int ncols, int begy, int begx) in subpad() argument
107 int j = begy; in subpad()
111 nlines, ncols, begy, begx)); in subpad()
118 if ((begy < orig->_begy) || (begx < orig->_begx) || in subpad()
119 (begy + nlines) > (orig->_begy + orig->_maxy) || in subpad()
129 if ( !(win = PDC_makenew(nlines, ncols, begy, begx)) ) in subpad()
/dports/multimedia/musikcube/musikcube-0.96.7/src/3rdparty/win32_src/pdcurses/
H A Dwindow.c142 nlines, ncols, begy, begx)); in PDC_makenew()
182 win->_begy = begy; in PDC_makenew()
245 nlines, ncols, begy, begx)); in newwin()
248 nlines = LINES - begy; in newwin()
256 win = PDC_makenew(nlines, ncols, begy, begx); in newwin()
311 nlines, ncols, begy, begx)); in subwin()
320 j = begy - orig->_begy; in subwin()
328 win = PDC_makenew(nlines, ncols, begy, begx); in subwin()
389 int nlines, ncols, begy, begx, i; in dupwin() local
396 begy = win->_begy; in dupwin()
[all …]
H A Dpad.c113 WINDOW *subpad(WINDOW *orig, int nlines, int ncols, int begy, int begx) in subpad() argument
119 nlines, ncols, begy, begx)); in subpad()
126 if (begy < 0 || begx < 0 || in subpad()
127 (begy + nlines) > orig->_maxy || in subpad()
132 nlines = orig->_maxy - begy; in subpad()
137 win = PDC_makenew(nlines, ncols, begy, begx); in subpad()
151 win->_y[i] = orig->_y[begy + i] + begx; in subpad()
/dports/science/dynare/dynare-4.6.4/contrib/ms-sbvar/TZcode/MatlabFiles/
H A Dgactual.m1 function actual = gactual(begy,begm,begq,finy,finm,finq,ylab,mqyIndx,idfile)
3 % actual = gactual(begy,begm,begq,finy,finm,finq,ylab,mqyIndx,idfile)
6 % begy: the beginning year for the graph
59 ibegy = find(myears==begy);
62 ibegy1 = find(myears==begy+1);
103 xlabel([ 'From ' num2str(begy) ':' num2str(begm) ' to ' ...
114 ibegy = find(qyears==begy);
117 ibegy1 = find(qyears==begy+1);
155 xlabel([ 'From ' num2str(begy) ':' num2str(begq) ' to ' ...
166 ibegy = find(yearsCal==begy);
[all …]
H A Dgshock.m1 function ExactSmyear = gshock(begy,begm,finy,finm,xlab,idfile,tlinput)
2 % ExactSmyear = gshock(begy,begm,finy,finm,xlab)
5 % begy: the beginning year for the graph
37 ibegy = find(myears==begy);
40 ibegy1 = find(myears==begy+1);
81 xlabel([ 'From ' num2str(begy) ':' num2str(begm) ' to ' ...
/dports/devel/notcurses/notcurses-3.0.1/src/lib/
H A Dblit.c75 int visy = bargs->begy; in tria_blit_ascii()
124 int visy = bargs->begy; in tria_blit()
133 if(visy < bargs->begy + leny - 1){ in tria_blit()
450 int visy = bargs->begy; in quadrant_blit()
463 if(visy < bargs->begy + leny - 1){ in quadrant_blit()
467 if(visy < bargs->begy + leny - 1){ in quadrant_blit()
664 int visy = bargs->begy; in sextant_blit()
675 if(visy < bargs->begy + leny - 1){ in sextant_blit()
682 if(visy < bargs->begy + leny - 1){ in sextant_blit()
732 int visy = bargs->begy; in braille_blit()
[all …]
H A Dsixel.c432 const int begy = bargs->begy; in extract_color_table() local
438 for(int visy = begy ; visy < (begy + leny) ; visy += 6){ // pixel row in extract_color_table()
446 bool lastrow = visy + 6 >= begy + leny; in extract_color_table()
522 unzip_color(const uint32_t* data, int linesize, int begy, int begx, in unzip_color() argument
536 for(int visy = begy ; visy < (begy + leny) ; visy += 6){ in unzip_color()
539 for(int sy = visy ; sy < (begy + leny) && sy < visy + 6 ; ++sy){ in unzip_color()
569 refine_color(const uint32_t* data, int linesize, int begy, int begx, in refine_color() argument
597 unzip_color(data, linesize, begy, begx, leny, lenx, stab, color, rgbmax); in refine_color()
604 refine_color_table(const uint32_t* data, int linesize, int begy, int begx, in refine_color_table() argument
615 if(refine_color(data, linesize, begy, begx, leny, lenx, stab, i)){ in refine_color_table()
[all …]
/dports/editors/fileobj/fileobj-0.7.91/src/
H A Dstdout.py71 def newwin(leny, lenx, begy, begx, ref=None): argument
72 scr = _window(leny, lenx, begy, begx, ref)
98 def __init__(self, leny, lenx, begy, begx, ref): argument
100 self.__pos = util.Pair(begy, begx)

123456