Home
last modified time | relevance | path

Searched refs:endx (Results 1 – 25 of 1126) sorted by relevance

12345678910>>...46

/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/tools/gnu/classpath/tools/gjdoc/
H A DExecutableMemberDocImpl.java191 int endx; in createFromSource() local
194 for (endx=ndx; endx<endIndex; ++endx) { in createFromSource()
201 if (source[endx]=='*' && source[endx+1]=='/') { in createFromSource()
206 else if (source[endx]=='/' && source[endx+1]=='*') { in createFromSource()
210 else if (source[endx]=='/' && source[endx+1]=='/') { in createFromSource()
214 else if (source[endx]==',' || source[endx]==')') { in createFromSource()
292 ++endx; in createFromSource()
299 for (; endx<endIndex; ++endx) { in createFromSource()
304 if (source[endx]=='*' && source[endx+1]=='/') { in createFromSource()
325 else if (source[endx]=='[' || source[endx]==']') { in createFromSource()
[all …]
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/tools/gnu/classpath/tools/gjdoc/
H A DExecutableMemberDocImpl.java191 int endx; in createFromSource() local
194 for (endx=ndx; endx<endIndex; ++endx) { in createFromSource()
201 if (source[endx]=='*' && source[endx+1]=='/') { in createFromSource()
206 else if (source[endx]=='/' && source[endx+1]=='*') { in createFromSource()
210 else if (source[endx]=='/' && source[endx+1]=='/') { in createFromSource()
214 else if (source[endx]==',' || source[endx]==')') { in createFromSource()
292 ++endx; in createFromSource()
299 for (; endx<endIndex; ++endx) { in createFromSource()
304 if (source[endx]=='*' && source[endx+1]=='/') { in createFromSource()
325 else if (source[endx]=='[' || source[endx]==']') { in createFromSource()
[all …]
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/tools/gnu/classpath/tools/gjdoc/
H A DExecutableMemberDocImpl.java191 int endx; in createFromSource() local
194 for (endx=ndx; endx<endIndex; ++endx) { in createFromSource()
201 if (source[endx]=='*' && source[endx+1]=='/') { in createFromSource()
206 else if (source[endx]=='/' && source[endx+1]=='*') { in createFromSource()
210 else if (source[endx]=='/' && source[endx+1]=='/') { in createFromSource()
214 else if (source[endx]==',' || source[endx]==')') { in createFromSource()
292 ++endx; in createFromSource()
299 for (; endx<endIndex; ++endx) { in createFromSource()
304 if (source[endx]=='*' && source[endx+1]=='/') { in createFromSource()
325 else if (source[endx]=='[' || source[endx]==']') { in createFromSource()
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/tools/gnu/classpath/tools/gjdoc/
H A DExecutableMemberDocImpl.java191 int endx; in createFromSource() local
194 for (endx=ndx; endx<endIndex; ++endx) { in createFromSource()
201 if (source[endx]=='*' && source[endx+1]=='/') { in createFromSource()
206 else if (source[endx]=='/' && source[endx+1]=='*') { in createFromSource()
210 else if (source[endx]=='/' && source[endx+1]=='/') { in createFromSource()
214 else if (source[endx]==',' || source[endx]==')') { in createFromSource()
292 ++endx; in createFromSource()
299 for (; endx<endIndex; ++endx) { in createFromSource()
304 if (source[endx]=='*' && source[endx+1]=='/') { in createFromSource()
325 else if (source[endx]=='[' || source[endx]==']') { in createFromSource()
[all …]
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/tools/gnu/classpath/tools/gjdoc/
H A DExecutableMemberDocImpl.java191 int endx; in createFromSource() local
194 for (endx=ndx; endx<endIndex; ++endx) { in createFromSource()
201 if (source[endx]=='*' && source[endx+1]=='/') { in createFromSource()
206 else if (source[endx]=='/' && source[endx+1]=='*') { in createFromSource()
210 else if (source[endx]=='/' && source[endx+1]=='/') { in createFromSource()
214 else if (source[endx]==',' || source[endx]==')') { in createFromSource()
292 ++endx; in createFromSource()
299 for (; endx<endIndex; ++endx) { in createFromSource()
304 if (source[endx]=='*' && source[endx+1]=='/') { in createFromSource()
325 else if (source[endx]=='[' || source[endx]==']') { in createFromSource()
[all …]
/dports/editors/vigor/vigor-0.016/curses/
H A Dbox.c50 register int endy, endx, i; local
53 endx = win->maxx;
57 for (i = 0; i < endx; i++) {
62 endx--;
65 win->lines[i]->line[endx].ch = vert;
67 win->lines[i]->line[endx].attr &= ~__STANDOUT;
70 fp[0].ch = fp[endx].ch = lp[0].ch = lp[endx].ch = ' ';
72 fp[endx].attr &= ~__STANDOUT;
74 lp[endx].attr &= ~__STANDOUT;
H A Dtoucholap.c48 register int y, endy, endx, starty, startx; local
56 endx = min(win1->maxx + win1->begx, win2->maxx + win2->begx);
59 starty, startx, endy, endx);
67 if (starty >= endy || startx >= endx)
72 endx -= win2->begx;
73 for (--endx, y = starty; y < endy; y++)
74 __touchline(win2, y, startx, endx, 0);
H A Doverwrite.c51 register int x, y, endy, endx, starty, startx; local
59 endx = min(win1->maxx + win1->begx, win2->maxx + win2->begx);
60 if (starty >= endy || startx >= endx)
64 starty, startx, endy, endx);
66 x = endx - startx;
72 __touchline(win2, y, startx - win2->begx, endx - win2->begx,
H A Doverlay.c51 register int x, y, y1, y2, endy, endx, starty, startx; local
60 endx = min(win1->maxx + win1->begx, win2->maxx + win2->begx);
63 starty, startx, endy, endx);
65 if (starty >= endy || startx >= endx)
70 end = &win1->lines[y1]->line[endx - win1->begx];
/dports/devel/goffice/goffice-0.10.50/goffice/canvas/
H A Dgoc-line.c163 if (line->startx < line->endx) { in goc_line_update_bounds()
188 dx = line->endx - line->startx; in goc_line_distance()
217 cairo_translate (cr, *endx, *endy); in draw_arrow()
220 *endx += dx; in draw_arrow()
231 double endx = (line->endx - line->startx) * sign, endy = line->endy - line->starty; in goc_line_draw() local
244 if (line->startx != line->endx) in goc_line_draw()
253 endx = (endx > 0.)? ceil (endx): floor (endx); in goc_line_draw()
256 phi = atan2 (endy, endx); in goc_line_draw()
260 &endx, &endy, phi); in goc_line_draw()
266 cairo_line_to (cr, endx, endy); in goc_line_draw()
[all …]
/dports/finance/weberp/webERP/includes/
H A DPDFGLJournalHeaderCN.inc59 …tartx, $Page_Height - $FormDesign->Column1->starty, $FormDesign->Column1->endx,$Page_Height - $For…
60 …tartx, $Page_Height - $FormDesign->Column2->starty, $FormDesign->Column2->endx,$Page_Height - $For…
61 …tartx, $Page_Height - $FormDesign->Column3->starty, $FormDesign->Column3->endx,$Page_Height - $For…
62 …tartx, $Page_Height - $FormDesign->Column4->starty, $FormDesign->Column4->endx,$Page_Height - $For…
63 …tartx, $Page_Height - $FormDesign->Column5->starty, $FormDesign->Column5->endx,$Page_Height - $For…
66 …tartx, $Page_Height - $FormDesign->Column6->starty, $FormDesign->Column6->endx,$Page_Height - $For…
69 …tartx, $Page_Height - $FormDesign->Column7->starty, $FormDesign->Column7->endx,$Page_Height - $For…
70 …tartx, $Page_Height - $FormDesign->Column8->starty, $FormDesign->Column8->endx,$Page_Height - $For…
73 …tartx, $Page_Height - $FormDesign->Column9->starty, $FormDesign->Column9->endx,$Page_Height - $For…
76 …rtx, $Page_Height - $FormDesign->Column10->starty, $FormDesign->Column10->endx,$Page_Height - $For…
[all …]
/dports/math/gnumeric/gnumeric-1.12.50/src/widgets/
H A Dgnm-dashed-canvas-line.c27 double endx = (line->endx - line->startx) * sign, endy = line->endy - line->starty; in line_draw() local
29 if (line->startx == line->endx && line->starty == line->endy) in line_draw()
35 if (line->startx != line->endx) in line_draw()
39 if ((endx != 0. || endy!= 0.) && go_styled_object_set_cairo_line (GO_STYLED_OBJECT (item), cr)) { in line_draw()
43 endx = (endx > 0.)? ceil (endx): floor (endx); in line_draw()
45 cairo_line_to (cr, endx, endy); in line_draw()
100 coords[2] = line->endx; in double_line_draw()
111 line->endx = coords[2] + xoffs; in double_line_draw()
117 line->endx = coords[2] - xoffs; in double_line_draw()
123 line->endx = coords[2]; in double_line_draw()
/dports/misc/vxl/vxl-3.3.2/core/vgl/tests/
H A Dtest_polygon_scan_iterator.cxx49 << it.startx() << ") to " << it.fendx() << " (" << it.endx() << ")\n"; in test_without_boundary()
52 TEST("iteration without boundary: last x value", it.endx(), 2); in test_without_boundary()
53 count += it.endx() - it.startx() + 1; in test_without_boundary()
77 << it.startx() << ") to " << it.fendx() << " (" << it.endx() << ")\n"; in test_with_boundary()
80 TEST("iteration with boundary: last x value", it.endx(), 13); in test_with_boundary()
81 count += it.endx() - it.startx() + 1; in test_with_boundary()
109 << it.startx() << ") to " << it.fendx() << " (" << it.endx() << ")\n"; in test_degenerate_polygon()
112 TEST("zero-length edges: last x value", it.endx(), 39); in test_degenerate_polygon()
113 count += it.endx() - it.startx() + 1; in test_degenerate_polygon()
130 count += it.endx() - it.startx() + 1; in test_empty_polygon()
[all …]
/dports/devel/ncurses/ncurses-6.3/ncurses/base/
H A Dlib_box.c71 NCURSES_SIZE_T endx, endy; in wborder() local
107 endx = win->_maxx; in wborder()
110 for (i = 0; i <= endx; i++) { in wborder()
115 win->_line[endy].lastchar = win->_line[0].lastchar = endx; in wborder()
119 if (endx > 0 && isWidecExt(win->_line[i].text[endx])) { in wborder()
120 SetChar2(win->_line[i].text[endx - 1], ' '); in wborder()
124 SetChar2(win->_line[i].text[endx], wrs); in wborder()
126 win->_line[i].lastchar = endx; in wborder()
134 SetChar2(win->_line[0].text[endx], wtr); in wborder()
136 SetChar2(win->_line[endy].text[endx], wbr); in wborder()
/dports/devel/notcurses/notcurses-3.0.1/src/demo/
H A Danimate.c107 int* endy, int* endx, phase_e* endphase){ in get_next_end() argument
108 get_next_head(std, left, right, endy, endx, endphase); in get_next_end()
123 get_next_end(std, left, right, &endy, &endx, &endphase); in determine_totalmoves()
126 }while(endy != heady || endx != headx); in determine_totalmoves()
169 &endy, &endx, &endphase); in drawcycles()
170 free(ncplane_at_yx(std, endy, endx, NULL, channels)); in drawcycles()
174 if(ncplane_putegc_yx(std, endy, endx, cstr + offset, &sbytes) < 0){ in drawcycles()
200 int endx = -1; in animate() local
230 &endy, &endx, &endphase); in animate()
232 ncplane_putwc_yx(std, endy, endx, L'▄'); in animate()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Segmentation/Voronoi/include/
H A DitkVoronoiSegmentationImageFilterBase.hxx118 double endx = currP[0]; in GetPixelIndexFromPolygon() local
173 endx = rightP[0]; in GetPixelIndexFromPolygon()
198 endx += rightDx; in GetPixelIndexFromPolygon()
215 endx = currP[0]; in GetPixelIndexFromPolygon()
285 endx += rightDx; in GetPixelIndexFromPolygon()
317 endx = rightP[0]; in GetPixelIndexFromPolygon()
343 endx += rightDx; in GetPixelIndexFromPolygon()
735 endx = rightP[0]; in FillPolygon()
760 endx += rightDx; in FillPolygon()
777 endx = currP[0]; in FillPolygon()
[all …]
/dports/cad/magic/magic-8.3.245/graphics/
H A DgrTk5.c95 int startx, endx; local
100 startx = endx + 1) {
104 endx = MIN(bBox.r_xtop, grCurClip.r_xtop);
112 else if (ob->r_r.r_xbot <= endx)
113 endx = MIN(endx, ob->r_r.r_xbot - 1);
121 if (startx > endx) continue;
126 for ( ; startx <= endx; startx++) {
136 startx = endx + 1;
H A DgrTCairo5.c115 int startx, endx; local
120 startx = endx + 1) {
124 endx = MIN(bBox.r_xtop, grCurClip.r_xtop);
132 else if (ob->r_r.r_xbot <= endx)
133 endx = MIN(endx, ob->r_r.r_xbot - 1);
141 if (startx > endx) continue;
146 for ( ; startx <= endx; startx++) {
160 startx = endx + 1;
H A DgrTOGL5.c113 int startx, endx; local
118 startx = endx + 1) {
122 endx = MIN(bBox.r_xtop, grCurClip.r_xtop);
130 else if (ob->r_r.r_xbot <= endx)
131 endx = MIN(endx, ob->r_r.r_xbot - 1);
139 if (startx > endx) continue;
144 for ( ; startx <= endx; startx++) {
159 startx = endx + 1;
/dports/devel/ncurses/ncurses-6.3/ncurses/widechar/
H A Dlib_box_set.c53 NCURSES_SIZE_T endx, endy; in NCURSES_EXPORT() local
91 endx = win->_maxx; in NCURSES_EXPORT()
94 for (i = 0; i <= endx; i++) { in NCURSES_EXPORT()
99 win->_line[endy].lastchar = win->_line[0].lastchar = endx; in NCURSES_EXPORT()
103 win->_line[i].text[endx] = wrs; in NCURSES_EXPORT()
105 win->_line[i].lastchar = endx; in NCURSES_EXPORT()
108 win->_line[0].text[endx] = wtr; in NCURSES_EXPORT()
110 win->_line[endy].text[endx] = wbr; in NCURSES_EXPORT()
/dports/cad/magic/magic-8.3.245/graphics/cairo_new/
H A DgrTCairo5.c115 int startx, endx; local
120 startx = endx + 1) {
124 endx = MIN(bBox.r_xtop, grCurClip.r_xtop);
132 else if (ob->r_r.r_xbot <= endx)
133 endx = MIN(endx, ob->r_r.r_xbot - 1);
141 if (startx > endx) continue;
146 for ( ; startx <= endx; startx++) {
160 startx = endx + 1;
/dports/cad/magic/magic-8.3.245/graphics/cairo_orig/
H A DgrTCairo5.c116 int startx, endx; local
121 startx = endx + 1) {
125 endx = MIN(bBox.r_xtop, grCurClip.r_xtop);
133 else if (ob->r_r.r_xbot <= endx)
134 endx = MIN(endx, ob->r_r.r_xbot - 1);
142 if (startx > endx) continue;
147 for ( ; startx <= endx; startx++) {
161 startx = endx + 1;
/dports/games/openlierox/OpenLieroX/src/client/
H A DGuiPrimitives.cpp79 int endx = x + w / 2 - 1; in DrawCheck() local
81 DrawLine(bmpDest, startx, starty, endx, endy, col); in DrawCheck()
82 DrawLine(bmpDest, startx, starty + 1, endx - 1, endy, col); in DrawCheck()
85 startx = endx; in DrawCheck()
87 endx = x + w - 1; in DrawCheck()
89 DrawLine(bmpDest, startx, starty, endx, endy, col); in DrawCheck()
90 DrawLine(bmpDest, startx - 1, starty, endx - 1, endy, col); in DrawCheck()
/dports/textproc/p5-Text-Graphics/Text-Graphics-1.0001/lib/Text/
H A DGraphics.pm529 my $endx = $startx + shift;
534 $endx = min ($endx, $this->{x1});
537 return if $startx >= $endx or $starty >= $endy;
540 $this->{charmap}->[$starty]->[$endx] = "+";
542 $this->{charmap}->[$endy]->[$endx] = "+";
544 foreach my $x ($startx + 1 .. $endx - 1) {
550 $this->{charmap}->[$y]->[$endx] = "|";
562 my $endx = $startx + shift;
567 $endx = min ($endx, $this->{x1});
570 return if $startx >= $endx or $starty >= $endy;
[all …]
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dsidscale.c93 int endx; in idownscale_x() local
94 dda_next_assign(ss->dda_x, endx); in idownscale_x()
98 while (i < endx) { in idownscale_x()
107 int endx; in idownscale_x() local
112 while (i < endx) { in idownscale_x()
132 int endx; in idownscale_x() local
133 dda_next_assign(ss->dda_x,endx); in idownscale_x()
137 while (i < endx) { in idownscale_x()
146 int endx; in idownscale_x() local
147 dda_next_assign(ss->dda_x,endx); in idownscale_x()
[all …]

12345678910>>...46