Lines Matching refs:src_width
958 static inline void _gdScaleRow(gdImagePtr pSrc, unsigned int src_width, gdImagePtr dst, unsigned i… in _gdScaleRow() argument
984 static inline int _gdScaleHoriz(gdImagePtr pSrc, unsigned int src_width, unsigned int src_height, g… in _gdScaleHoriz() argument
990 if (dst_width == src_width) { in _gdScaleHoriz()
993 memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width); in _gdScaleHoriz()
997 …contrib = _gdContributionsCalc(dst_width, src_width, (double)dst_width / (double)src_width, pSrc->… in _gdScaleHoriz()
1003 _gdScaleRow(pSrc, src_width, pDst, dst_width, u, contrib); in _gdScaleHoriz()
1009 static inline void _gdScaleCol (gdImagePtr pSrc, unsigned int src_width, gdImagePtr pRes, unsigned… in _gdScaleCol() argument
1033 static inline int _gdScaleVert (const gdImagePtr pSrc, const unsigned int src_width, const unsigned… in _gdScaleVert() argument
1042 memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width); in _gdScaleVert()
1052 _gdScaleCol(pSrc, src_width, pDst, dst_width, dst_height, u, contrib); in _gdScaleVert()
1058 gdImagePtr gdImageScaleTwoPass(const gdImagePtr src, const unsigned int src_width, const unsigned i… in gdImageScaleTwoPass() argument
1078 scale_pass_res = _gdScaleHoriz(src, src_width, src_height, tmp_im, new_width, src_height); in gdImageScaleTwoPass()