Home
last modified time | relevance | path

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

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

Completed in 5 milliseconds