Searched defs:MIN (Results 1 - 12 of 12) sorted by relevance
| /PHP_5_3/ext/bcmath/libbcmath/src/ |
| H A D | bcmath.h | 72 #ifdef MIN 73 #undef MIN macro 77 #define MIN(a, b) ((a)>(b)?(b):(a)) macro
|
| /PHP_5_3/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 55707 # define MIN macro 69658 # define MIN macro 111828 # define MIN macro 124696 # define MIN macro [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | crypt_sha256.c | 61 #ifndef MIN 62 # define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro 384 rounds = MAX(ROUNDS_MIN, MIN(srounds, ROUNDS_MAX)); 389 salt_len = MIN(strcspn(salt, "$"), SALT_LEN_MAX); 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 | 49 #ifndef MIN 50 # define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro 418 rounds = MAX(ROUNDS_MIN, MIN(srounds, ROUNDS_MAX)); 423 salt_len = MIN(strcspn(salt, "$"), SALT_LEN_MAX); 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_3/sapi/fpm/fpm/ |
| H A D | fpm_config.h | 60 #ifndef MIN 61 # define MIN(a,b) (((a)<(b))?(a):(b)) macro
|
| /PHP_5_3/ext/fileinfo/libmagic/ |
| H A D | file.h | 112 #ifndef MIN 113 #define MIN(a,b) (((a) < (b)) ? (a) : (b)) macro
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gd.c | 303 #ifndef MIN 304 #define MIN(a,b) ((a)<(b)?(a):(b)) macro 306 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c)))
|
| H A D | gd_intern.h | 3 #ifndef MIN 4 #define MIN(a,b) ((a)<(b)?(a):(b)) macro 6 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c)))
|
| H A D | gdft.c | 113 #ifndef MIN 114 #define MIN(a,b) ((a)<(b)?(a):(b)) macro
|
| H A D | gdtestft.c | 9 #define MIN(x,y) ((x) < (y) ? (x) : (y)) macro 14 ((MIN((x),(y))) < (MIN((z),(w))) ? (MIN((x),(y))) : (MIN((z),(w))))
|
| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | regint.h | 243 #ifdef MIN 244 #undef MIN macro 249 #define MIN(a,b) (((a)>(b))?(b):(a)) macro
|
| /PHP_5_3/Zend/ |
| H A D | zend.h | 498 #undef MIN macro 501 #define MIN(a, b) (((a)<(b))?(a):(b)) macro
|
Completed in 157 milliseconds