Home
last modified time | relevance | path

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

/PHP-8.3/ext/standard/
H A Dquot_print.c142 #define PHP_QPRINT_MAXL 75 macro
151 ret = zend_string_safe_alloc(3, (length + (((3 * length)/(PHP_QPRINT_MAXL-9)) + 1)), 0, 0); in php_quot_print_encode()
162 if ((((lp+= 3) > PHP_QPRINT_MAXL) && (c <= 0x7f)) in php_quot_print_encode()
163 || ((c > 0x7f) && (c <= 0xdf) && ((lp + 3) > PHP_QPRINT_MAXL)) in php_quot_print_encode()
164 || ((c > 0xdf) && (c <= 0xef) && ((lp + 6) > PHP_QPRINT_MAXL)) in php_quot_print_encode()
165 || ((c > 0xef) && (c <= 0xf4) && ((lp + 9) > PHP_QPRINT_MAXL))) { in php_quot_print_encode()
175 if ((++lp) > PHP_QPRINT_MAXL) { in php_quot_print_encode()

Completed in 4 milliseconds