| /PHP_5_5/ext/bcmath/libbcmath/src/ |
| H A D | bcmath.h | 74 #undef MAX macro 76 #define MAX(a, b) ((a)>(b)?(a):(b)) macro
|
| /PHP_5_5/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 124693 # define MAX macro [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | crypt_sha256.c | 64 #ifndef MAX 65 # define MAX(a, b) (((a) > (b)) ? (a) : (b)) macro 384 rounds = MAX(ROUNDS_MIN, MIN(srounds, ROUNDS_MAX)); 524 cp = __php_stpncpy(buffer, sha256_salt_prefix, MAX(0, buflen)); 529 int n = _snprintf(cp, MAX(0, buflen), "%s%u$", sha256_rounds_prefix, rounds); 531 int n = snprintf(cp, MAX(0, buflen), "%s%zu$", sha256_rounds_prefix, rounds); 537 cp = __php_stpncpy(cp, salt, MIN ((size_t) MAX (0, buflen), salt_len)); 538 buflen -= MIN((size_t) MAX (0, buflen), salt_len);
|
| H A D | crypt_sha512.c | 52 #ifndef MAX 53 # define MAX(a, b) (((a) > (b)) ? (a) : (b)) macro 418 rounds = MAX(ROUNDS_MIN, MIN(srounds, ROUNDS_MAX)); 559 cp = __php_stpncpy(buffer, sha512_salt_prefix, MAX(0, buflen)); 564 int n = _snprintf(cp, MAX(0, buflen), "%s%u$", sha512_rounds_prefix, rounds); 566 int n = snprintf(cp, MAX(0, buflen), "%s%zu$", sha512_rounds_prefix, rounds); 572 cp = __php_stpncpy(cp, salt, MIN((size_t) MAX(0, buflen), salt_len)); 573 buflen -= (int) MIN((size_t) MAX(0, buflen), salt_len);
|
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_config.h | 64 #ifndef MAX 65 # define MAX(a,b) (((a)>(b))?(a):(b)) macro
|
| /PHP_5_5/ext/gd/libgd/ |
| H A D | gd_intern.h | 7 #ifndef MAX 8 #define MAX(a,b) ((a)<(b)?(b):(a)) macro 10 #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c)))
|
| H A D | gdft.c | 109 #ifndef MAX 110 #define MAX(a,b) ((a)>(b)?(a):(b)) macro
|
| H A D | gdtestft.c | 8 #define MAX(x,y) ((x) > (y) ? (x) : (y)) macro 12 ((MAX((x),(y))) > (MAX((z),(w))) ? (MAX((x),(y))) : (MAX((z),(w))))
|
| H A D | gd.c | 311 #ifndef MAX 312 #define MAX(a,b) ((a)<(b)?(b):(a)) macro 314 #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c)))
|
| H A D | gd_interpolation.c | 71 #ifndef MAX 72 #define MAX(a,b) ((a)<(b)?(b):(a)) macro 74 #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c))) 932 register int iLeft = MAX(0, (int)floor (dCenter - width_d)); 1105 const unsigned long new_width = MAX(1, width); 1106 const unsigned long new_height = MAX(1, height); 1204 long _width = MAX(1, new_width); 1205 long _height = MAX(1, new_height); 1296 long dst_w = MAX( [all...] |
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regint.h | 203 #ifdef MAX 204 #undef MAX macro 207 #define MAX(a,b) (((a)<(b))?(b):(a)) macro
|
| /PHP_5_5/Zend/ |
| H A D | zend.h | 568 #undef MAX macro 569 #define MAX(a, b) (((a)>(b))?(a):(b)) macro
|
| /PHP_5_5/ext/fileinfo/libmagic/ |
| H A D | file.h | 124 #ifndef MAX 125 #define MAX(a,b) (((a) > (b)) ? (a) : (b)) macro
|