Home
last modified time | relevance | path

Searched refs:MAX_BASE (Results 1 – 1 of 1) sorted by relevance

/PHP-5.3/ext/gmp/
H A Dgmp.c322 # define MAX_BASE 62 macro
324 # define MAX_BASE 36 macro
764 if (base && (base < 2 || base > MAX_BASE)) { in ZEND_FUNCTION()
765 …TSRMLS_CC, E_WARNING, "Bad base for conversion: %ld (should be between 2 and %d)", base, MAX_BASE); in ZEND_FUNCTION()
814 #if MAX_BASE == 62
817 if ((base < 2 && base > -2) || base > MAX_BASE || base < -36) {
818 …ARNING, "Bad base for conversion: %ld (should be between 2 and %d or -2 and -36)", base, MAX_BASE);
820 if (base < 2 || base > MAX_BASE) {
821 …TSRMLS_CC, E_WARNING, "Bad base for conversion: %ld (should be between 2 and %d)", base, MAX_BASE);

Completed in 6 milliseconds