Lines Matching refs:MAX
84 #ifndef MAX
85 #define MAX(a,b) ((a)<(b)?(b):(a)) macro
87 #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c)))
897 register int iLeft = MAX(0, (int)floor (dCenter - width_d)); in _gdContributionsCalc()
1109 const unsigned long new_width = MAX(1, width); in gdImageScaleNearestNeighbour()
1110 const unsigned long new_height = MAX(1, height); in gdImageScaleNearestNeighbour()
1164 long _width = MAX(1, new_width); in gdImageScaleBilinearPalette()
1165 long _height = MAX(1, new_height); in gdImageScaleBilinearPalette()
1266 long dst_w = MAX(1, new_width); in gdImageScaleBilinearTC()
1267 long dst_h = MAX(1, new_height); in gdImageScaleBilinearTC()
1364 const long new_width = MAX(1, width); in gdImageScaleBicubicFixed()
1365 const long new_height = MAX(1, height); in gdImageScaleBicubicFixed()