MAX 571 Zend/zend.h #undef MAX MAX 572 Zend/zend.h #define MAX(a, b) (((a)>(b))?(a):(b)) MAX 74 ext/bcmath/libbcmath/src/bcmath.h #undef MAX MAX 76 ext/bcmath/libbcmath/src/bcmath.h #define MAX(a, b) ((a)>(b)?(a):(b)) MAX 125 ext/fileinfo/libmagic/file.h #define MAX(a,b) (((a) > (b)) ? (a) : (b)) MAX 312 ext/gd/libgd/gd.c #define MAX(a,b) ((a)<(b)?(b):(a)) MAX 8 ext/gd/libgd/gd_intern.h #define MAX(a,b) ((a)<(b)?(b):(a)) MAX 74 ext/gd/libgd/gd_interpolation.c #define MAX(a,b) ((a)<(b)?(b):(a)) MAX 110 ext/gd/libgd/gdft.c #define MAX(a,b) ((a)>(b)?(a):(b)) MAX 8 ext/gd/libgd/gdtestft.c #define MAX(x,y) ((x) > (y) ? (x) : (y)) MAX 204 ext/mbstring/oniguruma/regint.h #undef MAX MAX 207 ext/mbstring/oniguruma/regint.h #define MAX(a,b) (((a)<(b))?(b):(a)) MAX 8918 ext/sqlite3/libsqlite/sqlite3.c #define MAX(A,B) ((A)>(B)?(A):(B)) MAX 132760 ext/sqlite3/libsqlite/sqlite3.c # define MAX(x,y) ((x)>(y)?(x):(y)) MAX 151328 ext/sqlite3/libsqlite/sqlite3.c # define MAX(x,y) ((x) < (y) ? (y) : (x)) MAX 59 ext/standard/crypt_sha256.c # define MAX(a, b) (((a) > (b)) ? (a) : (b)) MAX 47 ext/standard/crypt_sha512.c # define MAX(a, b) (((a) > (b)) ? (a) : (b)) MAX 65 sapi/fpm/fpm/fpm_config.h # define MAX(a,b) (((a)>(b))?(a):(b))