Lines Matching refs:contrib

1000 … int src_width, gdImagePtr dst, unsigned int dst_width, unsigned int row, LineContribType *contrib)  in _gdScaleRow()  argument
1008 const int left = contrib->ContribRow[x].Left; in _gdScaleRow()
1009 const int right = contrib->ContribRow[x].Right; in _gdScaleRow()
1015 …r += (unsigned char)(contrib->ContribRow[x].Weights[left_channel] * (double)(gdTrueColorGetRed(p_s… in _gdScaleRow()
1016 …g += (unsigned char)(contrib->ContribRow[x].Weights[left_channel] * (double)(gdTrueColorGetGreen(p… in _gdScaleRow()
1017 …b += (unsigned char)(contrib->ContribRow[x].Weights[left_channel] * (double)(gdTrueColorGetBlue(p_… in _gdScaleRow()
1018 …a += (unsigned char)(contrib->ContribRow[x].Weights[left_channel] * (double)(gdTrueColorGetAlpha(p… in _gdScaleRow()
1027 LineContribType * contrib; in _gdScaleHoriz() local
1037contrib = _gdContributionsCalc(dst_width, src_width, (double)dst_width / (double)src_width, pSrc->… in _gdScaleHoriz()
1038 if (contrib == NULL) { in _gdScaleHoriz()
1043 _gdScaleRow(pSrc, src_width, pDst, dst_width, u, contrib); in _gdScaleHoriz()
1045 _gdContributionsFree (contrib); in _gdScaleHoriz()
1048 …pRes, unsigned int dst_width, unsigned int dst_height, unsigned int uCol, LineContribType *contrib) in _gdScaleCol() argument
1053 const int iLeft = contrib->ContribRow[y].Left; in _gdScaleCol()
1054 const int iRight = contrib->ContribRow[y].Right; in _gdScaleCol()
1062 …r += (unsigned char)(contrib->ContribRow[y].Weights[i_iLeft] * (double)(gdTrueColorGetRed(pCurSrc)… in _gdScaleCol()
1063 …g += (unsigned char)(contrib->ContribRow[y].Weights[i_iLeft] * (double)(gdTrueColorGetGreen(pCurSr… in _gdScaleCol()
1064 …b += (unsigned char)(contrib->ContribRow[y].Weights[i_iLeft] * (double)(gdTrueColorGetBlue(pCurSrc… in _gdScaleCol()
1065 …a += (unsigned char)(contrib->ContribRow[y].Weights[i_iLeft] * (double)(gdTrueColorGetAlpha(pCurSr… in _gdScaleCol()
1074 LineContribType * contrib; in _gdScaleVert() local
1084contrib = _gdContributionsCalc(dst_height, src_height, (double)(dst_height) / (double)(src_height)… in _gdScaleVert()
1085 if (contrib == NULL) { in _gdScaleVert()
1090 _gdScaleCol(pSrc, src_width, pDst, dst_width, dst_height, u, contrib); in _gdScaleVert()
1092 _gdContributionsFree(contrib); in _gdScaleVert()