Home
last modified time | relevance | path

Searched defs:oldpix (Results 1 – 25 of 34) sorted by relevance

12

/dports/emulators/fs-uae/fs-uae-3.1.35/src/mame/tm34010/
H A Dtms34010.cpp437 UINT32 tms340x0_device::raster_op_1(UINT32 newpix, UINT32 oldpix) { return newpix & oldpix; } in raster_op_1()
439 UINT32 tms340x0_device::raster_op_3(UINT32 newpix, UINT32 oldpix) { return 0; } in raster_op_3()
442 UINT32 tms340x0_device::raster_op_6(UINT32 newpix, UINT32 oldpix) { return ~oldpix; } in raster_op_6()
444 UINT32 tms340x0_device::raster_op_8(UINT32 newpix, UINT32 oldpix) { return newpix | oldpix; } in raster_op_8()
445 UINT32 tms340x0_device::raster_op_9(UINT32 newpix, UINT32 oldpix) { return oldpix; } in raster_op_9()
446 UINT32 tms340x0_device::raster_op_10(UINT32 newpix, UINT32 oldpix) { return newpix ^ oldpix; } in raster_op_10()
448 UINT32 tms340x0_device::raster_op_12(UINT32 newpix, UINT32 oldpix) { return 0xffff; } in raster_op_12()
451 UINT32 tms340x0_device::raster_op_15(UINT32 newpix, UINT32 oldpix) { return ~newpix; } in raster_op_15()
452 UINT32 tms340x0_device::raster_op_16(UINT32 newpix, UINT32 oldpix) { return newpix + oldpix; } in raster_op_16()
453 UINT32 tms340x0_device::raster_op_17(UINT32 newpix, UINT32 oldpix) in raster_op_17()
[all …]
/dports/emulators/mess/mame-mame0226/src/devices/cpu/tms34010/
H A Dtms34010.cpp569 uint32_t tms340x0_device::raster_op_1(uint32_t newpix, uint32_t oldpix) { return newpix & oldpix; } in raster_op_1()
571 uint32_t tms340x0_device::raster_op_3(uint32_t newpix, uint32_t oldpix) { return 0; } in raster_op_3()
574 uint32_t tms340x0_device::raster_op_6(uint32_t newpix, uint32_t oldpix) { return ~oldpix; } in raster_op_6()
576 uint32_t tms340x0_device::raster_op_8(uint32_t newpix, uint32_t oldpix) { return newpix | oldpix; } in raster_op_8()
577 uint32_t tms340x0_device::raster_op_9(uint32_t newpix, uint32_t oldpix) { return oldpix; } in raster_op_9()
578 uint32_t tms340x0_device::raster_op_10(uint32_t newpix, uint32_t oldpix) { return newpix ^ oldpix; } in raster_op_10()
580 uint32_t tms340x0_device::raster_op_12(uint32_t newpix, uint32_t oldpix) { return 0xffff; } in raster_op_12()
583 uint32_t tms340x0_device::raster_op_15(uint32_t newpix, uint32_t oldpix) { return ~newpix; } in raster_op_15()
584 uint32_t tms340x0_device::raster_op_16(uint32_t newpix, uint32_t oldpix) { return newpix + oldpix; } in raster_op_16()
585 uint32_t tms340x0_device::raster_op_17(uint32_t newpix, uint32_t oldpix) in raster_op_17()
[all …]
/dports/emulators/mame/mame-mame0226/src/devices/cpu/tms34010/
H A Dtms34010.cpp569 uint32_t tms340x0_device::raster_op_1(uint32_t newpix, uint32_t oldpix) { return newpix & oldpix; } in raster_op_1()
571 uint32_t tms340x0_device::raster_op_3(uint32_t newpix, uint32_t oldpix) { return 0; } in raster_op_3()
574 uint32_t tms340x0_device::raster_op_6(uint32_t newpix, uint32_t oldpix) { return ~oldpix; } in raster_op_6()
576 uint32_t tms340x0_device::raster_op_8(uint32_t newpix, uint32_t oldpix) { return newpix | oldpix; } in raster_op_8()
577 uint32_t tms340x0_device::raster_op_9(uint32_t newpix, uint32_t oldpix) { return oldpix; } in raster_op_9()
578 uint32_t tms340x0_device::raster_op_10(uint32_t newpix, uint32_t oldpix) { return newpix ^ oldpix; } in raster_op_10()
580 uint32_t tms340x0_device::raster_op_12(uint32_t newpix, uint32_t oldpix) { return 0xffff; } in raster_op_12()
583 uint32_t tms340x0_device::raster_op_15(uint32_t newpix, uint32_t oldpix) { return ~newpix; } in raster_op_15()
584 uint32_t tms340x0_device::raster_op_16(uint32_t newpix, uint32_t oldpix) { return newpix + oldpix; } in raster_op_16()
585 uint32_t tms340x0_device::raster_op_17(uint32_t newpix, uint32_t oldpix) in raster_op_17()
[all …]
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/cpu/tms34/
H A Dtms34010.cpp504 static UINT32 raster_op_1(UINT32 newpix, UINT32 oldpix) { return newpix & oldpix; } in raster_op_1()
506 static UINT32 raster_op_3(UINT32 newpix, UINT32 oldpix) { return 0; } in raster_op_3()
509 static UINT32 raster_op_6(UINT32 newpix, UINT32 oldpix) { return ~oldpix; } in raster_op_6()
511 static UINT32 raster_op_8(UINT32 newpix, UINT32 oldpix) { return newpix | oldpix; } in raster_op_8()
512 static UINT32 raster_op_9(UINT32 newpix, UINT32 oldpix) { return oldpix; } in raster_op_9()
513 static UINT32 raster_op_10(UINT32 newpix, UINT32 oldpix) { return newpix ^ oldpix; } in raster_op_10()
515 static UINT32 raster_op_12(UINT32 newpix, UINT32 oldpix) { return 0xffff; } in raster_op_12()
518 static UINT32 raster_op_15(UINT32 newpix, UINT32 oldpix) { return ~newpix; } in raster_op_15()
519 static UINT32 raster_op_16(UINT32 newpix, UINT32 oldpix) { return newpix + oldpix; } in raster_op_16()
520 static UINT32 raster_op_17(UINT32 newpix, UINT32 oldpix) in raster_op_17()
[all …]
/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/cpu/tms34010/
H A Dtms34010.c765 static INT32 raster_op_1(INT32 newpix, INT32 oldpix) { return newpix & oldpix; } in raster_op_1()
767 static INT32 raster_op_3(INT32 newpix, INT32 oldpix) { return 0; } in raster_op_3()
770 static INT32 raster_op_6(INT32 newpix, INT32 oldpix) { return ~oldpix; } in raster_op_6()
772 static INT32 raster_op_8(INT32 newpix, INT32 oldpix) { return newpix | oldpix; } in raster_op_8()
773 static INT32 raster_op_9(INT32 newpix, INT32 oldpix) { return oldpix; } in raster_op_9()
774 static INT32 raster_op_10(INT32 newpix, INT32 oldpix) { return newpix ^ oldpix; } in raster_op_10()
776 static INT32 raster_op_12(INT32 newpix, INT32 oldpix) { return 0xffff; } in raster_op_12()
779 static INT32 raster_op_15(INT32 newpix, INT32 oldpix) { return ~newpix; } in raster_op_15()
780 static INT32 raster_op_16(INT32 newpix, INT32 oldpix) { return newpix + oldpix; } in raster_op_16()
781 static INT32 raster_op_17(INT32 newpix, INT32 oldpix) in raster_op_17()
[all …]
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/cpu/tms34010/
H A Dtms34010.c689 static INT32 raster_op_1(INT32 newpix, INT32 oldpix) { return newpix & oldpix; } in raster_op_1()
691 static INT32 raster_op_3(INT32 newpix, INT32 oldpix) { return 0; } in raster_op_3()
694 static INT32 raster_op_6(INT32 newpix, INT32 oldpix) { return ~oldpix; } in raster_op_6()
696 static INT32 raster_op_8(INT32 newpix, INT32 oldpix) { return newpix | oldpix; } in raster_op_8()
697 static INT32 raster_op_9(INT32 newpix, INT32 oldpix) { return oldpix; } in raster_op_9()
698 static INT32 raster_op_10(INT32 newpix, INT32 oldpix) { return newpix ^ oldpix; } in raster_op_10()
700 static INT32 raster_op_12(INT32 newpix, INT32 oldpix) { return 0xffff; } in raster_op_12()
703 static INT32 raster_op_15(INT32 newpix, INT32 oldpix) { return ~newpix; } in raster_op_15()
704 static INT32 raster_op_16(INT32 newpix, INT32 oldpix) { return newpix + oldpix; } in raster_op_16()
705 static INT32 raster_op_17(INT32 newpix, INT32 oldpix) in raster_op_17()
[all …]
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/cpu/tms34010/
H A Dtms34010.c703 static INT32 raster_op_1(INT32 newpix, INT32 oldpix) { return newpix & oldpix; } in raster_op_1()
705 static INT32 raster_op_3(INT32 newpix, INT32 oldpix) { return 0; } in raster_op_3()
708 static INT32 raster_op_6(INT32 newpix, INT32 oldpix) { return ~oldpix; } in raster_op_6()
710 static INT32 raster_op_8(INT32 newpix, INT32 oldpix) { return newpix | oldpix; } in raster_op_8()
711 static INT32 raster_op_9(INT32 newpix, INT32 oldpix) { return oldpix; } in raster_op_9()
712 static INT32 raster_op_10(INT32 newpix, INT32 oldpix) { return newpix ^ oldpix; } in raster_op_10()
714 static INT32 raster_op_12(INT32 newpix, INT32 oldpix) { return 0xffff; } in raster_op_12()
717 static INT32 raster_op_15(INT32 newpix, INT32 oldpix) { return ~newpix; } in raster_op_15()
718 static INT32 raster_op_16(INT32 newpix, INT32 oldpix) { return newpix + oldpix; } in raster_op_16()
719 static INT32 raster_op_17(INT32 newpix, INT32 oldpix) in raster_op_17()
[all …]
/dports/x11-toolkits/vdk/vdk-2.5.1/src/
H A Dpixmaps.cc184 VDKRawPixmap* oldpix; in SetPixmap() local
H A Dimage.cc263 VDKPixbuf* oldpix; in SetImage() local
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonzlib/
H A Dfill.cpp368 TPixelCM32 *pix, *limit, *pix0, *oldpix; in fill() local
485 TPixel32 *pix, *limit, *pix0, *oldpix; in fill() local
685 TPixel32 *pix, *limit, *pix0, *oldpix; in fullColorFill() local
/dports/emulators/mednafen/mednafen/src/video/
H A Dsurface.cpp207 void *oldpix; in SetFormat() local
/dports/games/zdoom/zdoom-2.8.1/src/textures/
H A Dpngtexture.cpp506 BYTE *oldpix = Pixels; in MakeTexture() local
H A Dpcxtexture.cpp517 BYTE *oldpix = Pixels; in MakeTexture() local
/dports/games/ecwolf/ecwolf-1.3.3-src/src/textures/
H A Dpngtexture.cpp525 BYTE *oldpix = Pixels; in MakeTexture() local
H A Dpcxtexture.cpp518 BYTE *oldpix = Pixels; in MakeTexture() local
/dports/games/barony/Barony-3.3.7/src/
H A Dopengl.cpp1451 static unsigned int oldpix = 0; variable
/dports/science/kst2/kst-plot-38eddb5322a1d557f9d86ea95d456d76272941e3/old_datasources/healpix/
H A Dhealpix_tools_pix.cpp582 int healpix_degrade_nest(size_t oldnside, size_t oldpix, size_t newnside, size_t * newpix) in healpix_degrade_nest()
609 int healpix_degrade_ring(size_t oldnside, size_t oldpix, size_t newnside, size_t * newpix) in healpix_degrade_ring()
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/connect/
H A Dha_connect.h73 PIXDEF oldpix; // The indexes before create/alter variable
/dports/databases/mariadb104-server/mariadb-10.4.24/storage/connect/
H A Dha_connect.h73 PIXDEF oldpix; // The indexes before create/alter variable
/dports/databases/mariadb104-client/mariadb-10.4.24/storage/connect/
H A Dha_connect.h73 PIXDEF oldpix; // The indexes before create/alter variable
/dports/databases/mariadb103-server/mariadb-10.3.34/storage/connect/
H A Dha_connect.h73 PIXDEF oldpix; // The indexes before create/alter variable
/dports/databases/mariadb103-client/mariadb-10.3.34/storage/connect/
H A Dha_connect.h73 PIXDEF oldpix; // The indexes before create/alter variable
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/connect/
H A Dha_connect.h73 PIXDEF oldpix; // The indexes before create/alter variable
/dports/graphics/xpaint/xpaint-2.9.10.3/
H A DbrushOp.c892 Pixmap oldpix = Global.brushpix; in selectBrush() local
/dports/devel/upp/upp/bazaar/PixRaster/lib/
H A Dtiffio.c374 PIX *oldpix = pix; in pixReadFromTiffStream() local

12