Lines Matching refs:src
68 PHPAPI int php_uuencode(char *src, int src_len, char **dest) /* {{{ */ in php_uuencode() argument
75 s = src; in php_uuencode()
76 e = src + src_len; in php_uuencode()
127 PHPAPI int php_uudecode(char *src, int src_len, char **dest) /* {{{ */ in php_uudecode() argument
133 s = src; in php_uudecode()
134 e = src + src_len; in php_uudecode()
195 char *src, *dst; in PHP_FUNCTION() local
198 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &src, &src_len) == FAILURE || src_len < … in PHP_FUNCTION()
202 dst_len = php_uuencode(src, src_len, &dst); in PHP_FUNCTION()
217 char *src, *dst; in PHP_FUNCTION() local
220 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &src, &src_len) == FAILURE || src_len < … in PHP_FUNCTION()
224 dst_len = php_uudecode(src, src_len, &dst); in PHP_FUNCTION()