Lines Matching refs:p

71 	char *p, *s, *e, *ee;  in php_uuencode()  local
74 p = *dest = safe_emalloc((size_t) ceil(src_len * 1.38), 1, 46); in php_uuencode()
87 *p++ = PHP_UU_ENC(len); in php_uuencode()
90 *p++ = PHP_UU_ENC(*s >> 2); in php_uuencode()
91 *p++ = PHP_UU_ENC_C2(s); in php_uuencode()
92 *p++ = PHP_UU_ENC_C3(s); in php_uuencode()
93 *p++ = PHP_UU_ENC(*(s + 2) & 077); in php_uuencode()
99 *p++ = '\n'; in php_uuencode()
105 *p++ = PHP_UU_ENC(e - s); in php_uuencode()
109 *p++ = PHP_UU_ENC(*s >> 2); in php_uuencode()
110 *p++ = PHP_UU_ENC_C2(s); in php_uuencode()
111 *p++ = ((e - s) > 1) ? PHP_UU_ENC_C3(s) : PHP_UU_ENC('\0'); in php_uuencode()
112 *p++ = ((e - s) > 2) ? PHP_UU_ENC(*(s + 2) & 077) : PHP_UU_ENC('\0'); in php_uuencode()
116 *p++ = '\n'; in php_uuencode()
119 *p++ = PHP_UU_ENC('\0'); in php_uuencode()
120 *p++ = '\n'; in php_uuencode()
121 *p = '\0'; in php_uuencode()
123 return (p - *dest); in php_uuencode()
130 char *s, *e, *p, *ee; in php_uudecode() local
132 p = *dest = safe_emalloc((size_t) ceil(src_len * 0.75), 1, 1); in php_uudecode()
157 *p++ = PHP_UU_DEC(*s) << 2 | PHP_UU_DEC(*(s + 1)) >> 4; in php_uudecode()
158 *p++ = PHP_UU_DEC(*(s + 1)) << 4 | PHP_UU_DEC(*(s + 2)) >> 2; in php_uudecode()
159 *p++ = PHP_UU_DEC(*(s + 2)) << 6 | PHP_UU_DEC(*(s + 3)); in php_uudecode()
171 if ((len = total_len > (p - *dest))) { in php_uudecode()
172 *p++ = PHP_UU_DEC(*s) << 2 | PHP_UU_DEC(*(s + 1)) >> 4; in php_uudecode()
174 *p++ = PHP_UU_DEC(*(s + 1)) << 4 | PHP_UU_DEC(*(s + 2)) >> 2; in php_uudecode()
176 *p++ = PHP_UU_DEC(*(s + 2)) << 6 | PHP_UU_DEC(*(s + 3)); in php_uudecode()