Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Duuencode.c62 #define PHP_UU_DEC(c) (((c) - ' ') & 077) macro
146 if ((len = PHP_UU_DEC(*s++)) == 0) { in php_uudecode()
166 *p++ = PHP_UU_DEC(*s) << 2 | PHP_UU_DEC(*(s + 1)) >> 4; in php_uudecode()
167 *p++ = PHP_UU_DEC(*(s + 1)) << 4 | PHP_UU_DEC(*(s + 2)) >> 2; in php_uudecode()
168 *p++ = PHP_UU_DEC(*(s + 2)) << 6 | PHP_UU_DEC(*(s + 3)); in php_uudecode()
182 *p++ = PHP_UU_DEC(*s) << 2 | PHP_UU_DEC(*(s + 1)) >> 4; in php_uudecode()
184 *p++ = PHP_UU_DEC(*(s + 1)) << 4 | PHP_UU_DEC(*(s + 2)) >> 2; in php_uudecode()
186 *p++ = PHP_UU_DEC(*(s + 2)) << 6 | PHP_UU_DEC(*(s + 3)); in php_uudecode()

Completed in 5 milliseconds