MIN 570 Zend/zend.h #undef MIN MIN 573 Zend/zend.h #define MIN(a, b) (((a)<(b))?(a):(b)) MIN 73 ext/bcmath/libbcmath/src/bcmath.h #undef MIN MIN 77 ext/bcmath/libbcmath/src/bcmath.h #define MIN(a, b) ((a)>(b)?(b):(a)) MIN 121 ext/fileinfo/libmagic/file.h #define MIN(a,b) (((a) < (b)) ? (a) : (b)) MIN 308 ext/gd/libgd/gd.c #define MIN(a,b) ((a)<(b)?(a):(b)) MIN 4 ext/gd/libgd/gd_intern.h #define MIN(a,b) ((a)<(b)?(a):(b)) MIN 70 ext/gd/libgd/gd_interpolation.c #define MIN(a,b) ((a)<(b)?(a):(b)) MIN 114 ext/gd/libgd/gdft.c #define MIN(a,b) ((a)<(b)?(a):(b)) MIN 9 ext/gd/libgd/gdtestft.c #define MIN(x,y) ((x) < (y) ? (x) : (y)) MIN 201 ext/mbstring/oniguruma/regint.h #undef MIN MIN 206 ext/mbstring/oniguruma/regint.h #define MIN(a,b) (((a)>(b))?(b):(a)) MIN 43 ext/opcache/shared_alloc_shm.c # define MIN(x, y) ((x) > (y)? (y) : (x)) MIN 8917 ext/sqlite3/libsqlite/sqlite3.c #define MIN(A,B) ((A)<(B)?(A):(B)) MIN 132757 ext/sqlite3/libsqlite/sqlite3.c # define MIN(x,y) ((x)<(y)?(x):(y)) MIN 151331 ext/sqlite3/libsqlite/sqlite3.c # define MIN(x,y) ((x) > (y) ? (y) : (x)) MIN 56 ext/standard/crypt_sha256.c # define MIN(a, b) (((a) < (b)) ? (a) : (b)) MIN 44 ext/standard/crypt_sha512.c # define MIN(a, b) (((a) < (b)) ? (a) : (b)) MIN 27 sapi/cli/php_http_parser.c # define MIN(a,b) ((a) < (b) ? (a) : (b)) MIN 61 sapi/fpm/fpm/fpm_config.h # define MIN(a,b) (((a)<(b))?(a):(b))