Searched refs:MAX_BASE (Results 1 – 1 of 1) sorted by relevance
/PHP-5.6/ext/gmp/ |
H A D | gmp.c | 247 # define MAX_BASE 62 macro 249 # define MAX_BASE 36 macro 1072 if (base && (base < 2 || base > MAX_BASE)) { in ZEND_FUNCTION() 1073 …TSRMLS_CC, E_WARNING, "Bad base for conversion: %ld (should be between 2 and %d)", base, MAX_BASE); in ZEND_FUNCTION() 1228 #if MAX_BASE == 62 1231 if ((base < 2 && base > -2) || base > MAX_BASE || base < -36) { 1232 …ARNING, "Bad base for conversion: %ld (should be between 2 and %d or -2 and -36)", base, MAX_BASE); 1234 if (base < 2 || base > MAX_BASE) { 1235 …TSRMLS_CC, E_WARNING, "Bad base for conversion: %ld (should be between 2 and %d)", base, MAX_BASE);
|
Completed in 12 milliseconds