Lines Matching refs:newlength
2487 unsigned long newlength; in PHP_FUNCTION() local
2493 decode = (char *) rfc822_base64((unsigned char *) text, text_len, &newlength); in PHP_FUNCTION()
2499 RETVAL_STRINGL(decode, newlength, 1); in PHP_FUNCTION()
2510 unsigned long newlength; in PHP_FUNCTION() local
2516 decode = (char *) rfc822_qprint((unsigned char *) text, text_len, &newlength); in PHP_FUNCTION()
2522 RETVAL_STRINGL_CHECK(decode, newlength, 1); in PHP_FUNCTION()
2533 unsigned long newlength; in PHP_FUNCTION() local
2539 decode = (char *) rfc822_8bit((unsigned char *) text, text_len, &newlength); in PHP_FUNCTION()
2545 RETVAL_STRINGL_CHECK(decode, newlength, 1); in PHP_FUNCTION()
2556 unsigned long newlength; in PHP_FUNCTION() local
2562 decode = rfc822_binary(text, text_len, &newlength); in PHP_FUNCTION()
2568 RETVAL_STRINGL_CHECK(decode, newlength, 1); in PHP_FUNCTION()
4243 unsigned long newlength; in PHP_FUNCTION() local
4281 decode = (char *)rfc822_qprint((unsigned char *) text, strlen(text), &newlength); in PHP_FUNCTION()
4283 …decode = (char *)rfc822_base64((unsigned char *) text, strlen(text), &newlength); /* Decode 'B' en… in PHP_FUNCTION()