Lines Matching refs:dst_offset_y

1166 	unsigned long  dst_offset_y = 0;  in gdImageScaleNearestNeighbour()  local
1191 dst_img->tpixels[dst_offset_y][dst_offset_x++] = im->tpixels[m][n]; in gdImageScaleNearestNeighbour()
1202 dst_img->tpixels[dst_offset_y][dst_offset_x++] = colorIndex2RGBA(im->pixels[m][n]); in gdImageScaleNearestNeighbour()
1205 dst_offset_y++; in gdImageScaleNearestNeighbour()
1476 unsigned int dst_offset_y = 0; in gdImageScaleBicubicFixed() local
1512 int *dst_row = dst->tpixels[dst_offset_y]; in gdImageScaleBicubicFixed()
1680 dst_offset_y++; in gdImageScaleBicubicFixed()
1751 unsigned int dst_offset_y = 0; in gdImageRotateNearestNeighbour() local
1782 if (dst_offset_y < new_height) { in gdImageRotateNearestNeighbour()
1783 dst->tpixels[dst_offset_y][dst_offset_x++] = src->tpixels[m][n]; in gdImageRotateNearestNeighbour()
1786 if (dst_offset_y < new_height) { in gdImageRotateNearestNeighbour()
1787 dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor; in gdImageRotateNearestNeighbour()
1791 dst_offset_y++; in gdImageRotateNearestNeighbour()
1809 unsigned int dst_offset_y = 0; in gdImageRotateGeneric() local
1848 dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor; in gdImageRotateGeneric()
1854 dst->tpixels[dst_offset_y][dst_offset_x++] = _color_blend(bgColor, c); in gdImageRotateGeneric()
1856 dst->tpixels[dst_offset_y][dst_offset_x++] = getPixelInterpolated(src, n, m, bgColor); in gdImageRotateGeneric()
1859 dst_offset_y++; in gdImageRotateGeneric()
1878 unsigned int dst_offset_y = 0; in gdImageRotateBilinear() local
1967 dst->tpixels[dst_offset_y][dst_offset_x++] = gdTrueColorAlpha(red, green, blue, alpha); in gdImageRotateBilinear()
1971 dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor; in gdImageRotateBilinear()
1974 dst_offset_y++; in gdImageRotateBilinear()
1997 unsigned int dst_offset_y = 0; in gdImageRotateBicubicFixed() local
2233 dst->tpixels[dst_offset_y][dst_offset_x] = gdTrueColorAlpha(red, green, blue, alpha); in gdImageRotateBicubicFixed()
2235 dst->tpixels[dst_offset_y][dst_offset_x] = bgColor; in gdImageRotateBicubicFixed()
2240 dst_offset_y++; in gdImageRotateBicubicFixed()