Home
last modified time | relevance | path

Searched refs:currx (Results 1 – 25 of 79) sorted by relevance

1234

/dports/emulators/mess/mame-mame0226/src/mame/video/
H A Dbalsente.cpp142 int currx = xpos; in draw_one_sprite() local
155 if (left && currx >= 0 && currx < 256) in draw_one_sprite()
156 bitmap.pix(ypos, currx) = pens[left | old[0]]; in draw_one_sprite()
157 currx++; in draw_one_sprite()
160 if (right && currx >= 0 && currx < 256) in draw_one_sprite()
162 currx++; in draw_one_sprite()
179 if (left && currx >= 0 && currx < 256) in draw_one_sprite()
180 bitmap.pix(ypos, currx) = pens[left | old[0]]; in draw_one_sprite()
181 currx++; in draw_one_sprite()
184 if (right && currx >= 0 && currx < 256) in draw_one_sprite()
[all …]
H A Dgridlee.cpp178 int currx = xpos; in screen_update_gridlee() local
188 if (left && currx >= 0 && currx < 256) in screen_update_gridlee()
189 bitmap.pix(ypos, currx ^ currxor) = pens[left]; in screen_update_gridlee()
190 currx++; in screen_update_gridlee()
193 if (right && currx >= 0 && currx < 256) in screen_update_gridlee()
194 bitmap.pix(ypos, currx ^ currxor) = pens[right]; in screen_update_gridlee()
195 currx++; in screen_update_gridlee()
H A Dexidy440.cpp340 int currx = xoffs; in draw_sprites() local
351 if (left && currx >= HBEND && currx < HBSTART) in draw_sprites()
355 bitmap.pix(yoffs, currx) = pen; in draw_sprites()
359 m_collide_firq_timer->adjust(screen.time_until_pos(yoffs, currx), currx); in draw_sprites()
361 currx++; in draw_sprites()
364 if (right && currx >= HBEND && currx < HBSTART) in draw_sprites()
368 bitmap.pix(yoffs, currx) = pen; in draw_sprites()
372 m_collide_firq_timer->adjust(screen.time_until_pos(yoffs, currx), currx); in draw_sprites()
374 currx++; in draw_sprites()
H A Drealbrk.cpp259 int currx = (sx + x * xdim) / 0x10000; in draw_sprites() local
262 const int scalex = (sx + (x + 1) * xdim) / 0x10000 - currx; in draw_sprites()
293 currx = (sx - (y + 1) * ydim) / 0x10000; in draw_sprites()
307 currx = (sx - (x + 1) * xdim) / 0x10000; in draw_sprites()
321 currx = (sx + y * ydim) / 0x10000; in draw_sprites()
326 …prio_copybitmap_trans(bitmap, *m_tmpbitmap1, 0, 0, currx, curry, cliprect, priority, PRI_MAP[pri],… in draw_sprites()
334 currx, curry, in draw_sprites()
/dports/emulators/mame/mame-mame0226/src/mame/video/
H A Dbalsente.cpp142 int currx = xpos; in draw_one_sprite() local
155 if (left && currx >= 0 && currx < 256) in draw_one_sprite()
156 bitmap.pix(ypos, currx) = pens[left | old[0]]; in draw_one_sprite()
157 currx++; in draw_one_sprite()
160 if (right && currx >= 0 && currx < 256) in draw_one_sprite()
162 currx++; in draw_one_sprite()
179 if (left && currx >= 0 && currx < 256) in draw_one_sprite()
180 bitmap.pix(ypos, currx) = pens[left | old[0]]; in draw_one_sprite()
181 currx++; in draw_one_sprite()
184 if (right && currx >= 0 && currx < 256) in draw_one_sprite()
[all …]
H A Dgridlee.cpp178 int currx = xpos; in screen_update_gridlee() local
188 if (left && currx >= 0 && currx < 256) in screen_update_gridlee()
189 bitmap.pix(ypos, currx ^ currxor) = pens[left]; in screen_update_gridlee()
190 currx++; in screen_update_gridlee()
193 if (right && currx >= 0 && currx < 256) in screen_update_gridlee()
194 bitmap.pix(ypos, currx ^ currxor) = pens[right]; in screen_update_gridlee()
195 currx++; in screen_update_gridlee()
H A Dexidy440.cpp340 int currx = xoffs; in draw_sprites() local
351 if (left && currx >= HBEND && currx < HBSTART) in draw_sprites()
355 bitmap.pix(yoffs, currx) = pen; in draw_sprites()
359 m_collide_firq_timer->adjust(screen.time_until_pos(yoffs, currx), currx); in draw_sprites()
361 currx++; in draw_sprites()
364 if (right && currx >= HBEND && currx < HBSTART) in draw_sprites()
368 bitmap.pix(yoffs, currx) = pen; in draw_sprites()
372 m_collide_firq_timer->adjust(screen.time_until_pos(yoffs, currx), currx); in draw_sprites()
374 currx++; in draw_sprites()
H A Drealbrk.cpp259 int currx = (sx + x * xdim) / 0x10000; in draw_sprites() local
262 const int scalex = (sx + (x + 1) * xdim) / 0x10000 - currx; in draw_sprites()
293 currx = (sx - (y + 1) * ydim) / 0x10000; in draw_sprites()
307 currx = (sx - (x + 1) * xdim) / 0x10000; in draw_sprites()
321 currx = (sx + y * ydim) / 0x10000; in draw_sprites()
326 …prio_copybitmap_trans(bitmap, *m_tmpbitmap1, 0, 0, currx, curry, cliprect, priority, PRI_MAP[pri],… in draw_sprites()
334 currx, curry, in draw_sprites()
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/vidhrdw/
H A Dbalsente_vidhrdw.c209 int currx = xpos; in draw_one_sprite() local
222 if (left && currx >= finalclip.min_x && currx <= finalclip.max_x) in draw_one_sprite()
223 plot_pixel(bitmap, currx, ypos, pens[left | old[0]]); in draw_one_sprite()
224 currx++; in draw_one_sprite()
227 if (right && currx >= finalclip.min_x && currx <= finalclip.max_x) in draw_one_sprite()
229 currx++; in draw_one_sprite()
246 if (left && currx >= finalclip.min_x && currx <= finalclip.max_x) in draw_one_sprite()
247 plot_pixel(bitmap, currx, ypos, pens[left | old[0]]); in draw_one_sprite()
248 currx++; in draw_one_sprite()
251 if (right && currx >= finalclip.min_x && currx <= finalclip.max_x) in draw_one_sprite()
[all …]
H A Dgridlee_vidhrdw.c188 int currx = xpos; in VIDEO_UPDATE() local
198 if (left && currx >= 0 && currx < 256) in VIDEO_UPDATE()
199 plot_pixel(bitmap, currx ^ currxor, ypos, pens[left]); in VIDEO_UPDATE()
200 currx++; in VIDEO_UPDATE()
203 if (right && currx >= 0 && currx < 256) in VIDEO_UPDATE()
204 plot_pixel(bitmap, currx ^ currxor, ypos, pens[right]); in VIDEO_UPDATE()
205 currx++; in VIDEO_UPDATE()
H A Dexidy440_vidhrdw.c388 int currx = xoffs; in draw_sprites() local
399 if (left && currx >= 0 && currx < 320) in draw_sprites()
403 plot_pixel(bitmap, currx, yoffs, Machine->pens[pen]); in draw_sprites()
407 timer_set(compute_pixel_time(currx, yoffs), currx, collide_firq_callback); in draw_sprites()
409 currx++; in draw_sprites()
412 if (right && currx >= 0 && currx < 320) in draw_sprites()
416 plot_pixel(bitmap, currx, yoffs, Machine->pens[pen]); in draw_sprites()
420 timer_set(compute_pixel_time(currx, yoffs), currx, collide_firq_callback); in draw_sprites()
422 currx++; in draw_sprites()
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/vidhrdw/
H A Dbalsente_vidhrdw.c228 int currx = xpos; in draw_one_sprite() local
241 if (left && currx >= finalclip.min_x && currx <= finalclip.max_x) in draw_one_sprite()
242 plot_pixel(bitmap, currx, ypos, pens[left | old[0]]); in draw_one_sprite()
243 currx++; in draw_one_sprite()
246 if (right && currx >= finalclip.min_x && currx <= finalclip.max_x) in draw_one_sprite()
248 currx++; in draw_one_sprite()
265 if (left && currx >= finalclip.min_x && currx <= finalclip.max_x) in draw_one_sprite()
266 plot_pixel(bitmap, currx, ypos, pens[left | old[0]]); in draw_one_sprite()
267 currx++; in draw_one_sprite()
270 if (right && currx >= finalclip.min_x && currx <= finalclip.max_x) in draw_one_sprite()
[all …]
H A Dgridlee_vidhrdw.c188 int currx = xpos; in VIDEO_UPDATE() local
198 if (left && currx >= 0 && currx < 256) in VIDEO_UPDATE()
199 plot_pixel(bitmap, currx ^ currxor, ypos, pens[left]); in VIDEO_UPDATE()
200 currx++; in VIDEO_UPDATE()
203 if (right && currx >= 0 && currx < 256) in VIDEO_UPDATE()
204 plot_pixel(bitmap, currx ^ currxor, ypos, pens[right]); in VIDEO_UPDATE()
205 currx++; in VIDEO_UPDATE()
H A Dexidy440_vidhrdw.c388 int currx = xoffs; in draw_sprites() local
399 if (left && currx >= 0 && currx < 320) in draw_sprites()
403 plot_pixel(bitmap, currx, yoffs, Machine->pens[pen]); in draw_sprites()
407 timer_set(compute_pixel_time(currx, yoffs), currx, collide_firq_callback); in draw_sprites()
409 currx++; in draw_sprites()
412 if (right && currx >= 0 && currx < 320) in draw_sprites()
416 plot_pixel(bitmap, currx, yoffs, Machine->pens[pen]); in draw_sprites()
420 timer_set(compute_pixel_time(currx, yoffs), currx, collide_firq_callback); in draw_sprites()
422 currx++; in draw_sprites()
/dports/graphics/Coin/coin-Coin-4.0.0/src/vrml97/
H A DElevationGrid.cpp454 float currx = 0.0f; in GLRender() local
470 glVertex3f(currx, h[0], currz); in GLRender()
485 currx += xspace; in GLRender()
517 currx += xspace; in GLRender()
530 float currx = 0.0f; in GLRender() local
616 currx += xspace; in GLRender()
742 float currx = 0.0f; in generatePrimitives() local
824 SbVec3f v3(currx, h[x], currz); in generatePrimitives()
845 currx += xspace; in generatePrimitives()
931 float currx = 0.0f; in updateNormalCache() local
[all …]
/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/vidhrdw/
H A Dbalsente.c390 int currx = xpos, xadv = 1; in DRAW_FUNC() local
410 if (left && currx >= 0 && currx < 256) in DRAW_FUNC()
416 currx++; in DRAW_FUNC()
419 if (right && currx >= 0 && currx < 256) in DRAW_FUNC()
425 currx++; in DRAW_FUNC()
443 if (left && currx >= 0 && currx < 256) in DRAW_FUNC()
449 currx++; in DRAW_FUNC()
452 if (right && currx >= 0 && currx < 256) in DRAW_FUNC()
458 currx++; in DRAW_FUNC()
H A Dexidy440.c638 int currx = xoffs, xadv = 1; in DRAW_FUNC() local
655 if (left && currx >= 0 && currx < 320) in DRAW_FUNC()
663 timer_set(compute_pixel_time(currx, yoffs), currx, collide_firq_callback); in DRAW_FUNC()
665 currx++; in DRAW_FUNC()
668 if (right && currx >= 0 && currx < 320) in DRAW_FUNC()
676 timer_set(compute_pixel_time(currx, yoffs), currx, collide_firq_callback); in DRAW_FUNC()
678 currx++; in DRAW_FUNC()
/dports/graphics/opencv/opencv-4.5.3/3rdparty/carotene/src/
H A Dconvolution.cpp140 currx[3] = { 0, 0, 0 }, in convolution() local
171 currx[0] = srow0 ? srow0[x3] : borderValue; in convolution()
172 currx[1] = srow1[x3] ; in convolution()
173 currx[2] = srow2 ? srow2[x3] : borderValue; in convolution()
310 currx[_y] * kernelBase[(2 - _y) * 3 + 1] + in convolution()
316 prevx[0] = currx[0]; in convolution()
317 currx[0] = nextx[0]; in convolution()
319 prevx[1] = currx[1]; in convolution()
320 currx[1] = nextx[1]; in convolution()
322 prevx[2] = currx[2]; in convolution()
[all …]
/dports/print/scribus-devel/scribus-1.5.7/scribus/plugins/import/sml/
H A Dimportsml.cpp413 currx = 0.0; in processShapeNode()
564 currx = x; in processPointNode()
578 Coords.addPoint(currx, curry); in processPointNode()
579 Coords.addPoint(currx, curry); in processPointNode()
582 currx = x; in processPointNode()
591 Coords.addPoint(currx, curry); in processPointNode()
596 currx = x; in processPointNode()
602 Coords.addPoint(currx, curry); in processPointNode()
608 currx = x; in processPointNode()
615 Coords.addPoint(currx, curry); in processPointNode()
[all …]
/dports/games/golly/golly-3.3-src/gui-common/
H A Dstatus.cpp52 static bigint currx, curry; // cursor location in cell coords variable
126 bigint xpos = currx; xpos -= currlayer->originx; in UpdateStatusLines()
240 if ( xpos != currx || ypos != curry ) { in CheckMouseLocation()
242 currx = xpos; in CheckMouseLocation()
/dports/finance/xtrader/xtrader-0.99.9_10/util/fl/
H A DFl_Table.cpp432 int currx = x(); in ev_drag() local
434 currx += aWidth[f]; in ev_drag()
435 if (xpos - currx > 10) in ev_drag()
436 aWidth[aDragCol] = xpos - currx; in ev_drag()
562 int currx = x(); in ev_move() local
574 currx += aWidth[f]; in ev_move()
575 if (xpos > (currx - 3) && xpos < (currx + 4)) { in ev_move()
734 int currx = x(); in get_cell_pos() local
746 if (xpos > currx && xpos <= (currx + aWidth[c])) { in get_cell_pos()
748 xpos = currx; in get_cell_pos()
[all …]
/dports/devel/t1lib/t1lib-5.1.2/lib/type1/
H A Dt1chardump252 currx curry translate\n\
312 currx curry moveto\n\
315 /currx currx x2 add def\n\
380 currx curry moveto\n\
383 /currx currx x2 add def\n\
385 /startx currx def\n\
450 currx curry moveto\n\
459 currx curry moveto\n\
462 /currx currx x2 x3 x4 add add add def\n\
552 /currx sbx def\n\
[all …]
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/matplotlib/
H A Dtextpath.py87 def glyph_to_path(self, font, currx=0.): argument
92 if currx != 0.0:
93 verts[:, 0] += currx
180 currx = 0
213 currx += (kern / 64.0)
215 xpositions.append(currx)
218 currx += horiz_advance
256 currx, curry = 0, 0
/dports/mail/neomutt/neomutt-20211029/config/
H A Dregex.c261 struct Regex *currx = *(struct Regex **) var; in regex_reset() local
262 const char *curval = currx ? currx->pattern : NULL; in regex_reset()
265 if (!currx) in regex_reset()
/dports/net/vnstat/vnstat-2.8/src/
H A Ddaemon.c490 (*dc)->currx = 0; in initcachevalues()
493 (*dc)->currx = info.rxcounter; in initcachevalues()
511 (*dc)->currx = ifinfo.rx; in processifinfo()
533 if ((*dc)->currx > MAX32 || (*dc)->curtx > MAX32 || ifinfo.rx > MAX32 || ifinfo.tx > MAX32) { in processifinfo()
538 rxchange = countercalc(&(*dc)->currx, &ifinfo.rx, ifinfo.is64bit); in processifinfo()
546 rxchange = countercalc(&(*dc)->currx, &ifinfo.rx, 0); in processifinfo()
575 (*dc)->currx = ifinfo.rx; in processifinfo()
628 if (!db_setcounters(iterator->interface, iterator->currx, iterator->curtx)) { in flushcachetodisk()
636 if (!iterator->currx && !iterator->curtx) { in flushcachetodisk()
940 iterator->currx = 0; in interfacechangecheck()
[all …]

1234