Home
last modified time | relevance | path

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

/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/vidhrdw/
H A Dmole.c16 #define NUM_TILES (NUM_ROWS*NUM_COLS) macro
29 tile_data = (UINT16 *)malloc( NUM_TILES*sizeof(UINT16) ); in moleattack_vh_start()
31 dirtybuffer = (unsigned char*)malloc( NUM_TILES ); in moleattack_vh_start()
33 memset( dirtybuffer, 1, NUM_TILES ); in moleattack_vh_start()
47 if( offset<NUM_TILES ){ in WRITE_HANDLER()
54 memset( dirtybuffer, 1, NUM_TILES ); in WRITE_HANDLER()
55 memset( tile_data, 0, NUM_TILES*sizeof(UINT16) ); in WRITE_HANDLER()
67 memset( dirtybuffer, 1, NUM_TILES ); in moleattack_vh_screenrefresh()
70 for( offs=0; offs<NUM_TILES; offs++ ){ in moleattack_vh_screenrefresh()
/dports/graphics/krita/krita-4.4.8/libs/image/tiles3/tests/
H A Dkis_swapped_data_store_test.cpp38 const qint32 NUM_TILES = 10000; in testRoundTrip() local
49 for(qint32 i = 0; i < NUM_TILES; i++) in testRoundTrip()
52 for(qint32 i = 0; i < NUM_TILES; i++) { in testRoundTrip()
65 for(qint32 i = 0; i < NUM_TILES; i++) { in testRoundTrip()
77 for(qint32 i = 0; i < NUM_TILES; i++) in testRoundTrip()
104 const qint32 NUM_TILES = 10000; in testRandomAccess() local
115 for(qint32 i = 0; i < NUM_TILES; i++) in testRandomAccess()
122 qint32 col = qrand() % NUM_TILES; in testRandomAccess()
130 for(qint32 i = 0; i < NUM_TILES; i++) in testRandomAccess()
H A Dkis_low_memory_tests.cpp132 const int NUM_TILES = 10; in readWriteOnSharedTiles() local
144 srcDM, dstDM, NUM_TILES, NUM_CYCLES)); in readWriteOnSharedTiles()
148 srcDM, dstDM, NUM_TILES, NUM_CYCLES)); in readWriteOnSharedTiles()
150 srcDM, dstDM, NUM_TILES, NUM_CYCLES)); in readWriteOnSharedTiles()
/dports/devel/z88dk/z88dk/libsrc/_DEVELOPMENT/EXAMPLES/zx/demo_bifrosth/advanced_1/
H A Dbifrost_h1.c49 #define NUM_TILES 5 macro
60 } tiles[NUM_TILES];
73 for (tptr = tiles; tptr != tiles + NUM_TILES; ++tptr) in main()
124 for (tptr = tiles; tptr != tiles + NUM_TILES; ++tptr) in main()
144 for (tptr = tiles; tptr != tiles + NUM_TILES; ++tptr) in main()
149 for (tptr = tiles; tptr != tiles + NUM_TILES; ++tptr) in main()
/dports/games/ace-of-penguins/ace-1.4/games/
H A Dtaipei.c132 #define NUM_TILE_SETS (NUM_TILES/4)
166 static XYZ xyz[NUM_TILES];
168 static int shuffle[NUM_TILES];
169 static XYZ backup[NUM_TILES];
402 for (x=4; x<NUM_TILES; x++) in start_again()
405 shuffle_set(shuffle+NUM_TILES-8); in start_again()
406 shuffle_set(shuffle+NUM_TILES-12); in start_again()
411 for (x=0; x<NUM_TILES-4; x+=2) in start_again()
413 y = (rand() % (NUM_TILES-4)) & ~1; in start_again()
425 for (x=0; x<NUM_TILES-4; x+=4) in start_again()
[all …]
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/vidhrdw/
H A Dmole_vidhrdw.c19 #define NUM_TILES (NUM_ROWS * NUM_COLS) macro
42 tile_data = (UINT16 *)auto_malloc(NUM_TILES * sizeof(UINT16)); in VIDEO_START()
58 if (offset < NUM_TILES) { in WRITE_HANDLER()
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/vidhrdw/
H A Dmole_vidhrdw.c19 #define NUM_TILES (NUM_ROWS * NUM_COLS) macro
42 tile_data = (UINT16 *)auto_malloc(NUM_TILES * sizeof(UINT16)); in VIDEO_START()
58 if (offset < NUM_TILES) { in WRITE_HANDLER()
/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/drivers/
H A Dsuperman.c258 #define NUM_TILES 16384 macro
262 NUM_TILES, /* 16384 of them */
264 { 64*8*NUM_TILES + 8, 64*8*NUM_TILES + 0, 8, 0 },
272 #undef NUM_TILES
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/activitystream/homepanel/topsites/
H A DTopSitesPagerAdapter.java23 import static org.mozilla.gecko.activitystream.homepanel.topsites.TopSitesPage.NUM_TILES;
94 count = (cursor.getCount() - 1) / TopSitesPage.NUM_TILES + 1; in swapCursor()
129 startIndex += NUM_TILES; in swapCursor()
H A DTopSitesPageAdapter.java61 for (int i = 0; i < TopSitesPage.NUM_TILES && startIndex + i < cursor.getCount(); i++) { in swapCursor()
123 if (relativePosition < 0 || relativePosition > TopSitesPage.NUM_TILES) { in getTopSiteAbsolutePosition()
126 return relativePosition + pageNumber * TopSitesPage.NUM_TILES; in getTopSiteAbsolutePosition()
H A DTopSitesPage.java17 public static final int NUM_TILES = NUM_COLUMNS * NUM_ROWS; field in TopSitesPage
/dports/games/bstone/bstone-1.1.9/src/
H A D3d_debug.cpp430 CeilingTile = DecRange(CeilingTile, static_cast<uint16_t>(NUM_TILES - 1)); in DebugKeys()
439 CeilingTile = IncRange(CeilingTile, static_cast<uint16_t>(NUM_TILES - 1)); in DebugKeys()
448 FloorTile = DecRange(FloorTile, static_cast<uint16_t>(NUM_TILES - 1)); in DebugKeys()
457 FloorTile = IncRange(FloorTile, static_cast<uint16_t>(NUM_TILES - 1)); in DebugKeys()
H A D3d_game.cpp374 if (CeilingTile > NUM_TILES - 1) { in ScanInfoPlane()
379 if (FloorTile > NUM_TILES - 1) { in ScanInfoPlane()
H A D3d_def.h218 #define NUM_TILES (PMSpriteStart) macro
/dports/astro/xphoon/xphoon-20000613/
H A Dxphoon.c339 #define NUM_TILES 20 macro
343 static Pixmap star_tile[NUM_TILES];
361 for ( i = 0; i < NUM_TILES; ++i ) in make_star_tiles()
607 display, star_tile[random() % NUM_TILES], root_pixmap, copygc,
615 display, star_tile[random() % NUM_TILES], root_pixmap, copygc,
660 for ( i = 0; i < NUM_TILES; ++i ) in cleanup()
/dports/games/easyrpg-player/Player-0.7.0/src/
H A Dmap_data.h60 static constexpr int NUM_TILES = NUM_LOWER_TILES + NUM_UPPER_TILES; variable
/dports/emulators/cannonball/cannonball-0.34/src/main/hwvideo/
H A Dhwtiles.hpp48 static const uint16_t NUM_TILES = 0x2000; // Length of graphic rom / 24 member in hwtiles
H A Dhwtiles.cpp241 Code &= (NUM_TILES - 1); in render_tile_layer()
295 Code &= (NUM_TILES - 1); in render_text_layer()
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/drivers/
H A Dtaito_x.c981 #define NUM_TILES 16384 macro
985 NUM_TILES, /* 16384 of them */
987 { 64*8*NUM_TILES + 8, 64*8*NUM_TILES + 0, 8, 0 },
995 #undef NUM_TILES
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/drivers/
H A Dtaito_x.c981 #define NUM_TILES 16384 macro
985 NUM_TILES, /* 16384 of them */
987 { 64*8*NUM_TILES + 8, 64*8*NUM_TILES + 0, 8, 0 },
995 #undef NUM_TILES
/dports/games/mirrormagic/mirrormagic-2.0.2/src/
H A Dmain.c23 Pixmap tile_clipmask[NUM_TILES];
H A Dinit.c248 for(i=0; i<NUM_TILES; i++) in InitGfx()
H A Dmain.h922 #define NUM_TILES 512 macro
/dports/games/powder/powder118_src/
H A Dgfxengine.cpp109 u16 glb_tileidx[NUM_TILES];
770 memset(glb_tileidx, 0xff, sizeof(u16) * NUM_TILES); in gfx_setmode()
3997 for (tile = 0; tile < NUM_TILES; tile++) in gfx_switchtilesets()
H A Dmain.cpp3962 buf.sprintf("%d Tiles", NUM_TILES); in processOptions()