Lines Matching refs:src
64 PHPAPI zend_string *php_uuencode(const char *src, size_t src_len) /* {{{ */ in php_uuencode() argument
76 s = (unsigned char *) src; in php_uuencode()
129 PHPAPI zend_string *php_uudecode(const char *src, size_t src_len) /* {{{ */ in php_uudecode() argument
142 s = src; in php_uudecode()
143 e = src + src_len; in php_uudecode()
206 zend_string *src; in PHP_FUNCTION() local
209 Z_PARAM_STR(src) in PHP_FUNCTION()
212 RETURN_STR(php_uuencode(ZSTR_VAL(src), ZSTR_LEN(src))); in PHP_FUNCTION()
219 zend_string *src; in PHP_FUNCTION() local
223 Z_PARAM_STR(src) in PHP_FUNCTION()
226 if ((dest = php_uudecode(ZSTR_VAL(src), ZSTR_LEN(src))) == NULL) { in PHP_FUNCTION()