Lines Matching refs:maxx

969     int minx = 0, maxx = 0, miny = 0, maxy = 0;  in rect_testEnclosePoints()  local
982 maxx = newx; in rect_testEnclosePoints()
987 if (newx > maxx) maxx = newx; in rect_testEnclosePoints()
1016 …SDLTest_AssertCheck(result.x==minx && result.y==miny && result.w==(maxx - minx + 1) && result.h==(… in rect_testEnclosePoints()
1018 … minx, miny, maxx, maxy, result.x, result.y, result.x + result.w - 1, result.y + result.h - 1); in rect_testEnclosePoints()
1040 int minx = 0, maxx = 0, miny = 0, maxy = 0; in rect_testEnclosePointsRepeatedInput() local
1058 maxx = newx; in rect_testEnclosePointsRepeatedInput()
1063 if (newx > maxx) maxx = newx; in rect_testEnclosePointsRepeatedInput()
1092 …SDLTest_AssertCheck(result.x==minx && result.y==miny && result.w==(maxx - minx + 1) && result.h==(… in rect_testEnclosePointsRepeatedInput()
1094 … minx, miny, maxx, maxy, result.x, result.y, result.x + result.w - 1, result.y + result.h - 1); in rect_testEnclosePointsRepeatedInput()
1117 int minx = 0, maxx = 0, miny = 0, maxy = 0; in rect_testEnclosePointsWithClipping() local
1138 maxx = newx; in rect_testEnclosePointsWithClipping()
1143 if (newx > maxx) maxx = newx; in rect_testEnclosePointsWithClipping()
1180 …SDLTest_AssertCheck(result.x==minx && result.y==miny && result.w==(maxx - minx + 1) && result.h==(… in rect_testEnclosePointsWithClipping()
1182 … minx, miny, maxx, maxy, result.x, result.y, result.x + result.w - 1, result.y + result.h - 1); in rect_testEnclosePointsWithClipping()
1238 int minx, maxx, miny, maxy; in rect_testUnionRectOutside() local
1254 maxx = (refRectA.x>refRectB.x) ? refRectA.x : refRectB.x; in rect_testUnionRectOutside()
1259 expectedResult.w = maxx - minx + 1; in rect_testUnionRectOutside()