Searched refs:MAX_BASE (Results 1 – 1 of 1) sorted by relevance
/PHP-5.4/ext/gmp/ |
H A D | gmp.c | 322 # define MAX_BASE 62 macro 324 # define MAX_BASE 36 macro 738 if (base && (base < 2 || base > MAX_BASE)) { in ZEND_FUNCTION() 739 …TSRMLS_CC, E_WARNING, "Bad base for conversion: %ld (should be between 2 and %d)", base, MAX_BASE); in ZEND_FUNCTION() 788 #if MAX_BASE == 62 791 if ((base < 2 && base > -2) || base > MAX_BASE || base < -36) { 792 …ARNING, "Bad base for conversion: %ld (should be between 2 and %d or -2 and -36)", base, MAX_BASE); 794 if (base < 2 || base > MAX_BASE) { 795 …TSRMLS_CC, E_WARNING, "Bad base for conversion: %ld (should be between 2 and %d)", base, MAX_BASE);
|
Completed in 6 milliseconds