Lines Matching refs:MAX
74 #ifndef MAX
75 #define MAX(a,b) ((a)<(b)?(b):(a)) macro
77 #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c)))
887 register int iLeft = MAX(0, (int)floor (dCenter - width_d)); in _gdContributionsCalc()
1099 const unsigned long new_width = MAX(1, width); in gdImageScaleNearestNeighbour()
1100 const unsigned long new_height = MAX(1, height); in gdImageScaleNearestNeighbour()
1154 long _width = MAX(1, new_width); in gdImageScaleBilinearPalette()
1155 long _height = MAX(1, new_height); in gdImageScaleBilinearPalette()
1256 long dst_w = MAX(1, new_width); in gdImageScaleBilinearTC()
1257 long dst_h = MAX(1, new_height); in gdImageScaleBilinearTC()
1354 const long new_width = MAX(1, width); in gdImageScaleBicubicFixed()
1355 const long new_height = MAX(1, height); in gdImageScaleBicubicFixed()