Lines Matching refs:src_h

1465 	const int src_h = gdImageSY(src);  in gdImageScaleBicubicFixed()  local
1467 const gdFixed f_dy = gd_ftofx((float)src_h / (float)new_height); in gdImageScaleBicubicFixed()
1567 if ((m >= src_h - 1) || (n < 1)) { in gdImageScaleBicubicFixed()
1578 if ((m >= src_h-1) || (n >= src_w-1)) { in gdImageScaleBicubicFixed()
1586 if ((m >= src_h - 1) || (n >= src_w - 2)) { in gdImageScaleBicubicFixed()
1594 if ((m >= src_h - 2) || (n < 1)) { in gdImageScaleBicubicFixed()
1605 if ((m >= src_h - 2) || (n >= src_w - 1)) { in gdImageScaleBicubicFixed()
1613 if ((m >= src_h - 2) || (n >= src_w - 2)) { in gdImageScaleBicubicFixed()
1743 const int src_h = gdImageSY(src); in gdImageRotateNearestNeighbour() local
1745 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateNearestNeighbour()
1781 if ((m > 0) && (m < src_h-1) && (n > 0) && (n < src_w-1)) { in gdImageRotateNearestNeighbour()
1801 const int src_h = gdImageSY(src); in gdImageRotateGeneric() local
1803 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateGeneric()
1847 if ((n <= 0) || (m <= 0) || (m >= src_h) || (n >= src_w)) { in gdImageRotateGeneric()
1849 } else if ((n <= 1) || (m <= 1) || (m >= src_h - 1) || (n >= src_w - 1)) { in gdImageRotateGeneric()
1868 const unsigned int src_h = gdImageSY(src); in gdImageRotateBilinear() local
1871 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateBilinear()
1906 if ((m >= 0) && (m < src_h - 1) && (n >= 0) && (n < src_w - 1)) { in gdImageRotateBilinear()
1914 if (m < src_h-1) { in gdImageRotateBilinear()
1919 if (!((n >= src_w-1) || (m >= src_h-1))) { in gdImageRotateBilinear()
1927 if (src_offset_y + 1 >= src_h) { in gdImageRotateBilinear()
1983 const int src_h = gdImageSY(src); in gdImageRotateBicubicFixed() local
1986 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateBicubicFixed()
2024 if ((m > 0) && (m < src_h - 1) && (n > 0) && (n < src_w-1)) { in gdImageRotateBicubicFixed()
2085 if ((m >= src_h-1) || (n < 1)) { in gdImageRotateBicubicFixed()
2093 if (m >= src_h-1) { in gdImageRotateBicubicFixed()
2101 if ((m >= src_h-1) || (n >= src_w-1)) { in gdImageRotateBicubicFixed()
2109 if ((m >= src_h-1) || (n >= src_w-2)) { in gdImageRotateBicubicFixed()
2117 if ((m >= src_h-2) || (n < 1)) { in gdImageRotateBicubicFixed()
2125 if (m >= src_h-2) { in gdImageRotateBicubicFixed()
2133 if ((m >= src_h-2) || (n >= src_w - 1)) { in gdImageRotateBicubicFixed()
2141 if ((m >= src_h-2) || (n >= src_w-2)) { in gdImageRotateBicubicFixed()
2205 …if ((src_offset_x[_k] <= 0) || (src_offset_y[_k] <= 0) || (src_offset_y[_k] >= src_h) || (src_offs… in gdImageRotateBicubicFixed()
2207 …ffset_x[_k] <= 1) || (src_offset_y[_k] <= 1) || (src_offset_y[_k] >= (int)src_h - 1) || (src_offse… in gdImageRotateBicubicFixed()