Lines Matching refs:src_width

1000 static inline void _gdScaleRow(gdImagePtr pSrc,  unsigned int src_width, gdImagePtr dst, unsigned i…  in _gdScaleRow()  argument
1024 static inline void _gdScaleHoriz(gdImagePtr pSrc, unsigned int src_width, unsigned int src_height, … in _gdScaleHoriz() argument
1030 if (dst_width == src_width) { in _gdScaleHoriz()
1033 memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width); in _gdScaleHoriz()
1037 …contrib = _gdContributionsCalc(dst_width, src_width, (double)dst_width / (double)src_width, pSrc->… in _gdScaleHoriz()
1043 _gdScaleRow(pSrc, src_width, pDst, dst_width, u, contrib); in _gdScaleHoriz()
1048 static inline void _gdScaleCol (gdImagePtr pSrc, unsigned int src_width, gdImagePtr pRes, unsigned… in _gdScaleCol() argument
1071 static inline void _gdScaleVert (const gdImagePtr pSrc, const unsigned int src_width, const unsigne… in _gdScaleVert() argument
1080 memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width); in _gdScaleVert()
1090 _gdScaleCol(pSrc, src_width, pDst, dst_width, dst_height, u, contrib); in _gdScaleVert()
1095 gdImagePtr gdImageScaleTwoPass(const gdImagePtr src, const unsigned int src_width, const unsigned i… in gdImageScaleTwoPass() argument
1114 _gdScaleHoriz(src, src_width, src_height, tmp_im, new_width, src_height); in gdImageScaleTwoPass()
1128 gdImagePtr Scale(const gdImagePtr src, const unsigned int src_width, const unsigned int src_height,… in Scale() argument
1142 _gdScaleHoriz(src, src_width, src_height, tmp_im, new_width, src_height); in Scale()