Lines Matching refs:strict
89 …(const unsigned char *in, size_t inl, unsigned char *out, size_t *outl, zend_bool strict) /* {{{ */ in php_base64_decode_impl() argument
103 if (!strict) { in php_base64_decode_impl()
139 if (strict && i % 4 == 1) { in php_base64_decode_impl()
145 if (strict && padding && (padding > 2 || (i + padding) % 4 != 0)) { in php_base64_decode_impl()
204 …zend_string *php_base64_decode_ex_avx2(const unsigned char *str, size_t length, zend_bool strict));
209 …end_string *php_base64_decode_ex_ssse3(const unsigned char *str, size_t length, zend_bool strict));
213 zend_string *php_base64_decode_ex_default(const unsigned char *str, size_t length, zend_bool strict…
217 PHPAPI zend_string *php_base64_decode_ex(const unsigned char *str, size_t length, zend_bool strict)…
251 …_string *(*php_base64_decode_ex)(const unsigned char *str, size_t length, zend_bool strict) = NULL;
632 PHPAPI zend_string *php_base64_decode_ex(const unsigned char *str, size_t length, zend_bool strict) in php_base64_decode_ex() argument
634 zend_string *php_base64_decode_ex_avx2(const unsigned char *str, size_t length, zend_bool strict) in php_base64_decode_ex()
636 zend_string *php_base64_decode_ex_ssse3(const unsigned char *str, size_t length, zend_bool strict) in php_base64_decode_ex()
702 if (!php_base64_decode_impl(c, length, (unsigned char*)ZSTR_VAL(result), &outl, strict)) { in php_base64_decode_ex()
713 zend_string *php_base64_decode_ex_ssse3(const unsigned char *str, size_t length, zend_bool strict) in php_base64_decode_ex_ssse3() argument
725 if (!php_base64_decode_impl(c, length, (unsigned char*)ZSTR_VAL(result), &outl, strict)) { in php_base64_decode_ex_ssse3()
760 zend_string *php_base64_decode_ex_default(const unsigned char *str, size_t length, zend_bool strict) in php_base64_decode_ex_default() argument
762 PHPAPI zend_string *php_base64_decode_ex(const unsigned char *str, size_t length, zend_bool strict) in php_base64_decode_ex_default()
770 if (!php_base64_decode_impl(str, length, (unsigned char*)ZSTR_VAL(result), &outl, strict)) { in php_base64_decode_ex_default()
808 zend_bool strict = 0; in PHP_FUNCTION() local
815 Z_PARAM_BOOL(strict) in PHP_FUNCTION()
818 result = php_base64_decode_ex((unsigned char*)str, str_len, strict); in PHP_FUNCTION()