Searched refs:ret_length (Results 1 – 4 of 4) sorted by relevance
/PHP-5.4/ext/standard/ |
H A D | base64.c | 63 if (ret_length != NULL) { in php_base64_encode() 64 *ret_length = 0; in php_base64_encode() 95 if (ret_length != NULL) { in php_base64_encode() 96 *ret_length = (int)(p - result); in php_base64_encode() 139 return php_base64_decode_ex(str, length, ret_length, 0); in php_base64_decode() 210 if(ret_length) { in php_base64_decode_ex() 211 *ret_length = j; in php_base64_decode_ex() 224 int str_len, ret_length; in PHP_FUNCTION() local 231 RETVAL_STRINGL((char*)result, ret_length, 0); in PHP_FUNCTION() 245 int str_len, ret_length; in PHP_FUNCTION() local [all …]
|
H A D | quot_print.h | 24 …php_quot_print_decode(const unsigned char *str, size_t length, size_t *ret_length, int replace_us_… 25 … unsigned char *php_quot_print_encode(const unsigned char *str, size_t length, size_t *ret_length);
|
H A D | quot_print.c | 54 …php_quot_print_decode(const unsigned char *str, size_t length, size_t *ret_length, int replace_us_… in php_quot_print_decode() argument 141 *ret_length = decoded_len; in php_quot_print_decode() 148 … char *php_quot_print_encode(const unsigned char *str, size_t length, size_t *ret_length) /* {{{ */ in php_quot_print_encode() argument 189 *ret_length = d - ret; in php_quot_print_encode() 191 ret = erealloc(ret, *ret_length + 1); in php_quot_print_encode()
|
/PHP-5.4/main/streams/ |
H A D | memory.c | 25 PHPAPI unsigned char *php_base64_decode(const unsigned char *str, int length, int *ret_length);
|
Completed in 15 milliseconds