Lines Matching refs:src_width

991 static inline void _gdScaleRow(gdImagePtr pSrc,  unsigned int src_width, gdImagePtr dst, unsigned i…  in _gdScaleRow()  argument
1015 static inline void _gdScaleHoriz(gdImagePtr pSrc, unsigned int src_width, unsigned int src_height, … in _gdScaleHoriz() argument
1021 if (dst_width == src_width) { in _gdScaleHoriz()
1024 memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width); in _gdScaleHoriz()
1028 …contrib = _gdContributionsCalc(dst_width, src_width, (double)dst_width / (double)src_width, pSrc->… in _gdScaleHoriz()
1034 _gdScaleRow(pSrc, src_width, pDst, dst_width, u, contrib); in _gdScaleHoriz()
1039 static inline void _gdScaleCol (gdImagePtr pSrc, unsigned int src_width, gdImagePtr pRes, unsigned… in _gdScaleCol() argument
1062 static inline void _gdScaleVert (const gdImagePtr pSrc, const unsigned int src_width, const unsigne… in _gdScaleVert() argument
1071 memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width); in _gdScaleVert()
1081 _gdScaleCol(pSrc, src_width, pDst, dst_width, dst_height, u, contrib); in _gdScaleVert()
1086 gdImagePtr gdImageScaleTwoPass(const gdImagePtr src, const unsigned int src_width, const unsigned i… in gdImageScaleTwoPass() argument
1096 _gdScaleHoriz(src, src_width, src_height, tmp_im, new_width, src_height); in gdImageScaleTwoPass()
1110 gdImagePtr Scale(const gdImagePtr src, const unsigned int src_width, const unsigned int src_height,… in Scale() argument
1120 _gdScaleHoriz(src, src_width, src_height, tmp_im, new_width, src_height); in Scale()