Lines Matching refs:dst_offset_y

1088 	unsigned long  dst_offset_y = 0;  in gdImageScaleNearestNeighbour()  local
1113 dst_img->tpixels[dst_offset_y][dst_offset_x++] = im->tpixels[m][n]; in gdImageScaleNearestNeighbour()
1124 dst_img->tpixels[dst_offset_y][dst_offset_x++] = colorIndex2RGBA(im->pixels[m][n]); in gdImageScaleNearestNeighbour()
1127 dst_offset_y++; in gdImageScaleNearestNeighbour()
1348 unsigned int dst_offset_y = 0; in gdImageScaleBicubicFixed() local
1384 int *dst_row = dst->tpixels[dst_offset_y]; in gdImageScaleBicubicFixed()
1552 dst_offset_y++; in gdImageScaleBicubicFixed()
1623 unsigned int dst_offset_y = 0; in gdImageRotateNearestNeighbour() local
1654 if (dst_offset_y < new_height) { in gdImageRotateNearestNeighbour()
1655 dst->tpixels[dst_offset_y][dst_offset_x++] = src->tpixels[m][n]; in gdImageRotateNearestNeighbour()
1658 if (dst_offset_y < new_height) { in gdImageRotateNearestNeighbour()
1659 dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor; in gdImageRotateNearestNeighbour()
1663 dst_offset_y++; in gdImageRotateNearestNeighbour()
1680 unsigned int dst_offset_y = 0; in gdImageRotateGeneric() local
1719 dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor; in gdImageRotateGeneric()
1724 dst->tpixels[dst_offset_y][dst_offset_x++] = _color_blend(bgColor, c); in gdImageRotateGeneric()
1726 dst->tpixels[dst_offset_y][dst_offset_x++] = getPixelInterpolated(src, n, m, bgColor); in gdImageRotateGeneric()
1729 dst_offset_y++; in gdImageRotateGeneric()
1748 unsigned int dst_offset_y = 0; in gdImageRotateBilinear() local
1837 dst->tpixels[dst_offset_y][dst_offset_x++] = gdTrueColorAlpha(red, green, blue, alpha); in gdImageRotateBilinear()
1841 dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor; in gdImageRotateBilinear()
1844 dst_offset_y++; in gdImageRotateBilinear()
1867 unsigned int dst_offset_y = 0; in gdImageRotateBicubicFixed() local
2103 dst->tpixels[dst_offset_y][dst_offset_x] = gdTrueColorAlpha(red, green, blue, alpha); in gdImageRotateBicubicFixed()
2105 dst->tpixels[dst_offset_y][dst_offset_x] = bgColor; in gdImageRotateBicubicFixed()
2110 dst_offset_y++; in gdImageRotateBicubicFixed()