Home
last modified time | relevance | path

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

/PHP-7.3/ext/standard/
H A Dbase64.h63 PHPAPI extern zend_string *(*php_base64_decode_ex)(const unsigned char *, size_t, zend_bool);
66 PHPAPI extern zend_string *php_base64_decode_ex(const unsigned char *, size_t, zend_bool);
74 return php_base64_decode_ex(str, len, 0); in php_base64_decode()
77 return php_base64_decode_ex((const unsigned char*)(ZSTR_VAL(str)), ZSTR_LEN(str), 0); in php_base64_decode_str()
H A Dbase64.c217 PHPAPI zend_string *php_base64_decode_ex(const unsigned char *str, size_t length, zend_bool strict)…
251 PHPAPI zend_string *(*php_base64_decode_ex)(const unsigned char *str, size_t length, zend_bool stri… variable
258 php_base64_decode_ex = php_base64_decode_ex_avx2; in PHP_MINIT_FUNCTION()
264 php_base64_decode_ex = php_base64_decode_ex_ssse3; in PHP_MINIT_FUNCTION()
269 php_base64_decode_ex = php_base64_decode_ex_default; in PHP_MINIT_FUNCTION()
632 PHPAPI zend_string *php_base64_decode_ex(const unsigned char *str, size_t length, zend_bool strict) in php_base64_decode_ex() function
762 PHPAPI zend_string *php_base64_decode_ex(const unsigned char *str, size_t length, zend_bool strict) in php_base64_decode_ex_default()
818 result = php_base64_decode_ex((unsigned char*)str, str_len, strict); in PHP_FUNCTION()
/PHP-7.3/main/streams/
H A Dmemory.c733 base64_comma = php_base64_decode_ex((const unsigned char *)comma, dlen, 1); in php_stream_url_wrap_rfc2397()

Completed in 9 milliseconds