Lines Matching refs:tpixels
651 register int c = src->tpixels[y][x]; in _setEdgePixel()
659 const int c = im->tpixels[y][x]; in getPixelOverflowTC()
668 border = im->tpixels[0][im->cx1]; in getPixelOverflowTC()
673 border = im->tpixels[0][im->cx1]; in getPixelOverflowTC()
679 border = im->tpixels[im->cy2][x]; in getPixelOverflowTC()
688 border = im->tpixels[y][im->cx1]; in getPixelOverflowTC()
693 border = im->tpixels[y][im->cx2]; in getPixelOverflowTC()
1002 int *p_src_row = pSrc->tpixels[row]; in _gdScaleRow()
1003 int *p_dst_row = dst->tpixels[row]; in _gdScaleRow()
1033 memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width); in _gdScaleHoriz()
1056 int *row = pRes->tpixels[y]; in _gdScaleCol()
1060 const int pCurSrc = pSrc->tpixels[i][uCol]; in _gdScaleCol()
1067 pRes->tpixels[y][uCol] = gdTrueColorAlpha(r, g, b, a); in _gdScaleCol()
1080 memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width); in _gdScaleVert()
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()
1213 const int c = im->tpixels[y][x]; in getPixelOverflowColorTC()
1221 border = im->tpixels[0][im->cx1]; in getPixelOverflowColorTC()
1226 border = im->tpixels[0][im->cx1]; in getPixelOverflowColorTC()
1232 border = im->tpixels[im->cy2][x]; in getPixelOverflowColorTC()
1241 border = im->tpixels[y][im->cx1]; in getPixelOverflowColorTC()
1246 border = im->tpixels[y][im->cx2]; in getPixelOverflowColorTC()
1349 new_img->tpixels[dst_offset_v][dst_offset_h] = gdTrueColorAlpha(red, green, blue, alpha); in gdImageScaleBilinearPalette()
1440 new_img->tpixels[dst_offset_v][dst_offset_h] = gdTrueColorAlpha(red, green, blue, alpha); in gdImageScaleBilinearTC()
1512 int *dst_row = dst->tpixels[dst_offset_y]; in gdImageScaleBicubicFixed()
1658 c = src->tpixels[*(src_offset_y + _k)][*(src_offset_x + _k)]; in gdImageScaleBicubicFixed()
1783 dst->tpixels[dst_offset_y][dst_offset_x++] = src->tpixels[m][n]; in gdImageRotateNearestNeighbour()
1787 dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor; in gdImageRotateNearestNeighbour()
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()
1924 const int pixel1 = src->tpixels[src_offset_y][src_offset_x]; in gdImageRotateBilinear()
1936 pixel2 = src->tpixels[src_offset_y][src_offset_x + 1]; in gdImageRotateBilinear()
1937 pixel3 = src->tpixels[src_offset_y + 1][src_offset_x]; in gdImageRotateBilinear()
1938 pixel4 = src->tpixels[src_offset_y + 1][src_offset_x + 1]; in gdImageRotateBilinear()
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()
2209 c = src->tpixels[src_offset_y[_k]][src_offset_x[_k]]; in gdImageRotateBicubicFixed()
2213 c = src->tpixels[src_offset_y[_k]][src_offset_x[_k]]; in gdImageRotateBicubicFixed()
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()
2500 dst_p = dst->tpixels[dst_y + y] + dst_x; in gdTransformAffineCopy()