Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dquot_print.c146 #define PHP_QPRINT_MAXL 75 macro
154 ret = safe_emalloc(3, length + (((3 * length)/(PHP_QPRINT_MAXL-9)) + 1), 1); in php_quot_print_encode()
165 if ((((lp+= 3) > PHP_QPRINT_MAXL) && (c <= 0x7f)) in php_quot_print_encode()
166 || ((c > 0x7f) && (c <= 0xdf) && ((lp + 3) > PHP_QPRINT_MAXL)) in php_quot_print_encode()
167 || ((c > 0xdf) && (c <= 0xef) && ((lp + 6) > PHP_QPRINT_MAXL)) in php_quot_print_encode()
168 || ((c > 0xef) && (c <= 0xf4) && ((lp + 9) > PHP_QPRINT_MAXL))) { in php_quot_print_encode()
178 if ((++lp) > PHP_QPRINT_MAXL) { in php_quot_print_encode()

Completed in 7 milliseconds