Lines Matching refs:outlen
4847 int i=0, outlen, keylen; in PHP_FUNCTION() local
4875 outlen = data_len + EVP_CIPHER_block_size(cipher_type); in PHP_FUNCTION()
4876 outbuf = emalloc(outlen + 1); in PHP_FUNCTION()
4889 outlen = i; in PHP_FUNCTION()
4891 outlen += i; in PHP_FUNCTION()
4893 outbuf[outlen] = '\0'; in PHP_FUNCTION()
4894 RETVAL_STRINGL((char *)outbuf, outlen, 0); in PHP_FUNCTION()
4899 base64_str = (char*)php_base64_encode(outbuf, outlen, &base64_str_len); in PHP_FUNCTION()
4926 int i, outlen, keylen; in PHP_FUNCTION() local
4968 outlen = data_len + EVP_CIPHER_block_size(cipher_type); in PHP_FUNCTION()
4969 outbuf = emalloc(outlen + 1); in PHP_FUNCTION()
4980 outlen = i; in PHP_FUNCTION()
4982 outlen += i; in PHP_FUNCTION()
4983 outbuf[outlen] = '\0'; in PHP_FUNCTION()
4984 RETVAL_STRINGL((char *)outbuf, outlen, 0); in PHP_FUNCTION()