Lines Matching refs:dst_offset_y

1089 	unsigned long  dst_offset_y = 0;  in gdImageScaleNearestNeighbour()  local
1114 dst_img->tpixels[dst_offset_y][dst_offset_x++] = im->tpixels[m][n]; in gdImageScaleNearestNeighbour()
1125 dst_img->tpixels[dst_offset_y][dst_offset_x++] = colorIndex2RGBA(im->pixels[m][n]); in gdImageScaleNearestNeighbour()
1128 dst_offset_y++; in gdImageScaleNearestNeighbour()
1349 unsigned int dst_offset_y = 0; in gdImageScaleBicubicFixed() local
1385 int *dst_row = dst->tpixels[dst_offset_y]; in gdImageScaleBicubicFixed()
1553 dst_offset_y++; in gdImageScaleBicubicFixed()
1624 unsigned int dst_offset_y = 0; in gdImageRotateNearestNeighbour() local
1655 if (dst_offset_y < new_height) { in gdImageRotateNearestNeighbour()
1656 dst->tpixels[dst_offset_y][dst_offset_x++] = src->tpixels[m][n]; in gdImageRotateNearestNeighbour()
1659 if (dst_offset_y < new_height) { in gdImageRotateNearestNeighbour()
1660 dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor; in gdImageRotateNearestNeighbour()
1664 dst_offset_y++; in gdImageRotateNearestNeighbour()
1681 unsigned int dst_offset_y = 0; in gdImageRotateGeneric() local
1720 dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor; in gdImageRotateGeneric()
1725 dst->tpixels[dst_offset_y][dst_offset_x++] = _color_blend(bgColor, c); in gdImageRotateGeneric()
1727 dst->tpixels[dst_offset_y][dst_offset_x++] = getPixelInterpolated(src, n, m, bgColor); in gdImageRotateGeneric()
1730 dst_offset_y++; in gdImageRotateGeneric()
1749 unsigned int dst_offset_y = 0; in gdImageRotateBilinear() local
1838 dst->tpixels[dst_offset_y][dst_offset_x++] = gdTrueColorAlpha(red, green, blue, alpha); in gdImageRotateBilinear()
1842 dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor; in gdImageRotateBilinear()
1845 dst_offset_y++; in gdImageRotateBilinear()
1868 unsigned int dst_offset_y = 0; in gdImageRotateBicubicFixed() local
2104 dst->tpixels[dst_offset_y][dst_offset_x] = gdTrueColorAlpha(red, green, blue, alpha); in gdImageRotateBicubicFixed()
2106 dst->tpixels[dst_offset_y][dst_offset_x] = bgColor; in gdImageRotateBicubicFixed()
2111 dst_offset_y++; in gdImageRotateBicubicFixed()