Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/
H A Duuencode.c64 #define PHP_UU_DEC(c) (((c) - ' ') & 077) macro
142 if ((len = PHP_UU_DEC(*s++)) == 0) { in php_uudecode()
162 *p++ = PHP_UU_DEC(*s) << 2 | PHP_UU_DEC(*(s + 1)) >> 4; in php_uudecode()
163 *p++ = PHP_UU_DEC(*(s + 1)) << 4 | PHP_UU_DEC(*(s + 2)) >> 2; in php_uudecode()
164 *p++ = PHP_UU_DEC(*(s + 2)) << 6 | PHP_UU_DEC(*(s + 3)); in php_uudecode()
178 *p++ = PHP_UU_DEC(*s) << 2 | PHP_UU_DEC(*(s + 1)) >> 4; in php_uudecode()
180 *p++ = PHP_UU_DEC(*(s + 1)) << 4 | PHP_UU_DEC(*(s + 2)) >> 2; in php_uudecode()
182 *p++ = PHP_UU_DEC(*(s + 2)) << 6 | PHP_UU_DEC(*(s + 3)); in php_uudecode()

Completed in 5 milliseconds