Lines Matching refs:src_width
948 static inline void _gdScaleRow(gdImagePtr pSrc, unsigned int src_width, gdImagePtr dst, unsigned i… in _gdScaleRow() argument
974 static inline int _gdScaleHoriz(gdImagePtr pSrc, unsigned int src_width, unsigned int src_height, g… in _gdScaleHoriz() argument
980 if (dst_width == src_width) { in _gdScaleHoriz()
983 memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width); in _gdScaleHoriz()
987 …contrib = _gdContributionsCalc(dst_width, src_width, (double)dst_width / (double)src_width, pSrc->… in _gdScaleHoriz()
993 _gdScaleRow(pSrc, src_width, pDst, dst_width, u, contrib); in _gdScaleHoriz()
999 static inline void _gdScaleCol (gdImagePtr pSrc, unsigned int src_width, gdImagePtr pRes, unsigned… in _gdScaleCol() argument
1023 static inline int _gdScaleVert (const gdImagePtr pSrc, const unsigned int src_width, const unsigned… in _gdScaleVert() argument
1032 memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width); in _gdScaleVert()
1042 _gdScaleCol(pSrc, src_width, pDst, dst_width, dst_height, u, contrib); in _gdScaleVert()
1048 gdImagePtr gdImageScaleTwoPass(const gdImagePtr src, const unsigned int src_width, const unsigned i… in gdImageScaleTwoPass() argument
1068 scale_pass_res = _gdScaleHoriz(src, src_width, src_height, tmp_im, new_width, src_height); in gdImageScaleTwoPass()