Lines Matching refs:result

430 	zend_string *result;  in php_formatted_print()  local
434 result = zend_string_alloc(size, 0); in php_formatted_print()
445 php_sprintf_appendchars(&result, &outpos, format, format_len); in php_formatted_print()
448 php_sprintf_appendchars(&result, &outpos, format, temppos - format); in php_formatted_print()
456 php_sprintf_appendchar(&result, &outpos, '%'); in php_formatted_print()
625 php_sprintf_appendstring(&result, &outpos, in php_formatted_print()
636 php_sprintf_appendint(&result, &outpos, in php_formatted_print()
643 php_sprintf_appenduint(&result, &outpos, in php_formatted_print()
656 php_sprintf_appenddouble(&result, &outpos, in php_formatted_print()
665 php_sprintf_appendchar(&result, &outpos, in php_formatted_print()
670 php_sprintf_append2n(&result, &outpos, in php_formatted_print()
677 php_sprintf_append2n(&result, &outpos, in php_formatted_print()
684 php_sprintf_append2n(&result, &outpos, in php_formatted_print()
691 php_sprintf_append2n(&result, &outpos, in php_formatted_print()
698 php_sprintf_appendchar(&result, &outpos, '%'); in php_formatted_print()
728 ZSTR_VAL(result)[outpos]=0; in php_formatted_print() local
729 ZSTR_LEN(result) = outpos; in php_formatted_print()
730 return result; in php_formatted_print()
733 zend_string_efree(result); in php_formatted_print()
760 zend_string *result; in PHP_FUNCTION() local
771 result = php_formatted_print(format, format_len, args, argc, 1); in PHP_FUNCTION()
772 if (result == NULL) { in PHP_FUNCTION()
775 RETVAL_STR(result); in PHP_FUNCTION()
782 zend_string *result; in PHP_FUNCTION() local
796 result = php_formatted_print(format, format_len, args, argc, -1); in PHP_FUNCTION()
798 if (result == NULL) { in PHP_FUNCTION()
801 RETVAL_STR(result); in PHP_FUNCTION()
808 zend_string *result; in PHP_FUNCTION() local
820 result = php_formatted_print(format, format_len, args, argc, 1); in PHP_FUNCTION()
821 if (result == NULL) { in PHP_FUNCTION()
824 rlen = PHPWRITE(ZSTR_VAL(result), ZSTR_LEN(result)); in PHP_FUNCTION()
825 zend_string_efree(result); in PHP_FUNCTION()
833 zend_string *result; in PHP_FUNCTION() local
848 result = php_formatted_print(format, format_len, args, argc, -1); in PHP_FUNCTION()
850 if (result == NULL) { in PHP_FUNCTION()
853 rlen = PHPWRITE(ZSTR_VAL(result), ZSTR_LEN(result)); in PHP_FUNCTION()
854 zend_string_efree(result); in PHP_FUNCTION()
867 zend_string *result; in PHP_FUNCTION() local
877 result = php_formatted_print(format, format_len, args, argc, 2); in PHP_FUNCTION()
878 if (result == NULL) { in PHP_FUNCTION()
882 php_stream_write(stream, ZSTR_VAL(result), ZSTR_LEN(result)); in PHP_FUNCTION()
884 RETVAL_LONG(ZSTR_LEN(result)); in PHP_FUNCTION()
885 zend_string_efree(result); in PHP_FUNCTION()
898 zend_string *result; in PHP_FUNCTION() local
910 result = php_formatted_print(format, format_len, args, argc, -1); in PHP_FUNCTION()
912 if (result == NULL) { in PHP_FUNCTION()
916 php_stream_write(stream, ZSTR_VAL(result), ZSTR_LEN(result)); in PHP_FUNCTION()
918 RETVAL_LONG(ZSTR_LEN(result)); in PHP_FUNCTION()
919 zend_string_efree(result); in PHP_FUNCTION()