Home
last modified time | relevance | path

Searched refs:QMINSIZE (Results 1 – 2 of 2) sorted by relevance

/dports/graphics/rgbpaint/rgbpaint-0.8.7/src/
H A Dmemory.c1388 #define QMINSIZE 32 macro
1406 i = ((mem_width + mem_height) * 3 + QMINSIZE * QMINSIZE) * 2 * sizeof(short); in wjfloodfill()
1409 farq = nearq + QMINSIZE * QMINSIZE; in wjfloodfill()
1452 corners[0] = x & ~(QMINSIZE - 1); in wjfloodfill()
1453 corners[1] = corners[0] + QMINSIZE; in wjfloodfill()
1454 corners[2] = y & ~(QMINSIZE - 1); in wjfloodfill()
1455 corners[3] = corners[2] + QMINSIZE; in wjfloodfill()
/dports/graphics/mtpaint/mtPaint-4ea607e/src/
H A Dmemory.c4506 #define QMINSIZE 32 macro
4517 short nearq[QMINSIZE * QMINSIZE * 2]; in wjfloodfill()
4568 corners[0] = x & ~(QMINSIZE - 1); in wjfloodfill()
4569 corners[2] = y & ~(QMINSIZE - 1); in wjfloodfill()
4574 corners[1] = corners[0] + QMINSIZE; in wjfloodfill()
4575 corners[3] = corners[2] + QMINSIZE; in wjfloodfill()
4680 if (coords[i] & (QMINSIZE - 1)) in wjfloodfill()
4687 j = coords[(i & 2) ^ 3] & (QMINSIZE - 1); in wjfloodfill()
4706 x = (k >> 1) + ((i & 1) << QMINLEVEL) - QMINSIZE; in wjfloodfill()