Lines Matching refs:len

76 						   int alignment, int len, int neg, int expprec, int always_sign)  in php_sprintf_appendstring()  argument
83 copy_len = (expprec ? MIN(max_width, len) : len); in php_sprintf_appendstring()
114 len--; in php_sprintf_appendstring()
389 php_formatted_print(int ht, int *len, int use_array, int format_offset TSRMLS_DC) in php_formatted_print() argument
678 *len = outpos; in php_formatted_print()
688 int len; in PHP_FUNCTION() local
690 if ((result=php_formatted_print(ht, &len, 0, 0 TSRMLS_CC))==NULL) { in PHP_FUNCTION()
693 RETVAL_STRINGL(result, len, 0); in PHP_FUNCTION()
702 int len; in PHP_FUNCTION() local
704 if ((result=php_formatted_print(ht, &len, 1, 0 TSRMLS_CC))==NULL) { in PHP_FUNCTION()
707 RETVAL_STRINGL(result, len, 0); in PHP_FUNCTION()
716 int len, rlen; in PHP_FUNCTION() local
718 if ((result=php_formatted_print(ht, &len, 0, 0 TSRMLS_CC))==NULL) { in PHP_FUNCTION()
721 rlen = PHPWRITE(result, len); in PHP_FUNCTION()
732 int len, rlen; in PHP_FUNCTION() local
734 if ((result=php_formatted_print(ht, &len, 1, 0 TSRMLS_CC))==NULL) { in PHP_FUNCTION()
737 rlen = PHPWRITE(result, len); in PHP_FUNCTION()
750 int len; in PHP_FUNCTION() local
762 if ((result=php_formatted_print(ht, &len, 0, 1 TSRMLS_CC))==NULL) { in PHP_FUNCTION()
766 php_stream_write(stream, result, len); in PHP_FUNCTION()
770 RETURN_LONG(len); in PHP_FUNCTION()
781 int len; in PHP_FUNCTION() local
793 if ((result=php_formatted_print(ht, &len, 1, 1 TSRMLS_CC))==NULL) { in PHP_FUNCTION()
797 php_stream_write(stream, result, len); in PHP_FUNCTION()
801 RETURN_LONG(len); in PHP_FUNCTION()