Lines Matching refs:src_h

1367 	const int src_h = gdImageSY(src);  in gdImageScaleBicubicFixed()  local
1369 const gdFixed f_dy = gd_ftofx((float)src_h / (float)new_height); in gdImageScaleBicubicFixed()
1469 if ((m >= src_h - 1) || (n < 1)) { in gdImageScaleBicubicFixed()
1480 if ((m >= src_h-1) || (n >= src_w-1)) { in gdImageScaleBicubicFixed()
1488 if ((m >= src_h - 1) || (n >= src_w - 2)) { in gdImageScaleBicubicFixed()
1496 if ((m >= src_h - 2) || (n < 1)) { in gdImageScaleBicubicFixed()
1507 if ((m >= src_h - 2) || (n >= src_w - 1)) { in gdImageScaleBicubicFixed()
1515 if ((m >= src_h - 2) || (n >= src_w - 2)) { in gdImageScaleBicubicFixed()
1645 const int src_h = gdImageSY(src); in gdImageRotateNearestNeighbour() local
1647 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateNearestNeighbour()
1683 if ((m > 0) && (m < src_h-1) && (n > 0) && (n < src_w-1)) { in gdImageRotateNearestNeighbour()
1702 const int src_h = gdImageSY(src); in gdImageRotateGeneric() local
1704 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateGeneric()
1748 if ((n <= 0) || (m <= 0) || (m >= src_h) || (n >= src_w)) { in gdImageRotateGeneric()
1750 } else if ((n <= 1) || (m <= 1) || (m >= src_h - 1) || (n >= src_w - 1)) { in gdImageRotateGeneric()
1768 const unsigned int src_h = gdImageSY(src); in gdImageRotateBilinear() local
1771 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateBilinear()
1806 if ((m >= 0) && (m < src_h - 1) && (n >= 0) && (n < src_w - 1)) { in gdImageRotateBilinear()
1814 if (m < src_h-1) { in gdImageRotateBilinear()
1819 if (!((n >= src_w-1) || (m >= src_h-1))) { in gdImageRotateBilinear()
1827 if (src_offset_y + 1 >= src_h) { in gdImageRotateBilinear()
1883 const int src_h = gdImageSY(src); in gdImageRotateBicubicFixed() local
1886 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateBicubicFixed()
1924 if ((m > 0) && (m < src_h - 1) && (n > 0) && (n < src_w-1)) { in gdImageRotateBicubicFixed()
1985 if ((m >= src_h-1) || (n < 1)) { in gdImageRotateBicubicFixed()
1993 if (m >= src_h-1) { in gdImageRotateBicubicFixed()
2001 if ((m >= src_h-1) || (n >= src_w-1)) { in gdImageRotateBicubicFixed()
2009 if ((m >= src_h-1) || (n >= src_w-2)) { in gdImageRotateBicubicFixed()
2017 if ((m >= src_h-2) || (n < 1)) { in gdImageRotateBicubicFixed()
2025 if (m >= src_h-2) { in gdImageRotateBicubicFixed()
2033 if ((m >= src_h-2) || (n >= src_w - 1)) { in gdImageRotateBicubicFixed()
2041 if ((m >= src_h-2) || (n >= src_w-2)) { in gdImageRotateBicubicFixed()
2105 …if ((src_offset_x[_k] <= 0) || (src_offset_y[_k] <= 0) || (src_offset_y[_k] >= src_h) || (src_offs… in gdImageRotateBicubicFixed()
2107 …ffset_x[_k] <= 1) || (src_offset_y[_k] <= 1) || (src_offset_y[_k] >= (int)src_h - 1) || (src_offse… in gdImageRotateBicubicFixed()