Lines Matching refs:format_len

379 int php_sprintf_get_argnum(char **format, size_t *format_len) {  in php_sprintf_get_argnum()  argument
386 int argnum = php_sprintf_getnumber(format, format_len); in php_sprintf_get_argnum()
393 (*format_len)--; in php_sprintf_get_argnum()
425 php_formatted_print(char *format, size_t format_len, zval *args, int argc, int nb_additional_parame… in php_formatted_print() argument
439 while (format_len) { in php_formatted_print()
443 temppos = memchr(format, '%', format_len); in php_formatted_print()
445 php_sprintf_appendchars(&result, &outpos, format, format_len); in php_formatted_print()
449 format_len -= temppos - format; in php_formatted_print()
453 format_len--; in php_formatted_print()
458 format_len--; in php_formatted_print()
474 argnum = php_sprintf_get_argnum(&format, &format_len); in php_formatted_print()
483 for (;; format++, format_len--) { in php_formatted_print()
492 if (format_len > 1) { in php_formatted_print()
494 format_len--; in php_formatted_print()
513 format_len--; in php_formatted_print()
515 int width_argnum = php_sprintf_get_argnum(&format, &format_len); in php_formatted_print()
540 if ((width = php_sprintf_getnumber(&format, &format_len)) < 0) { in php_formatted_print()
553 format_len--; in php_formatted_print()
557 format_len--; in php_formatted_print()
559 int prec_argnum = php_sprintf_get_argnum(&format, &format_len); in php_formatted_print()
584 if ((precision = php_sprintf_getnumber(&format, &format_len)) < 0) { in php_formatted_print()
601 format_len--; in php_formatted_print()
703 if (!format_len) { in php_formatted_print()
714 format_len--; in php_formatted_print()
762 size_t format_len; in PHP_FUNCTION() local
767 Z_PARAM_STRING(format, format_len) in PHP_FUNCTION()
771 result = php_formatted_print(format, format_len, args, argc, 1); in PHP_FUNCTION()
784 size_t format_len; in PHP_FUNCTION() local
790 Z_PARAM_STRING(format, format_len) in PHP_FUNCTION()
796 result = php_formatted_print(format, format_len, args, argc, -1); in PHP_FUNCTION()
811 size_t format_len; in PHP_FUNCTION() local
816 Z_PARAM_STRING(format, format_len) in PHP_FUNCTION()
820 result = php_formatted_print(format, format_len, args, argc, 1); in PHP_FUNCTION()
836 size_t format_len; in PHP_FUNCTION() local
842 Z_PARAM_STRING(format, format_len) in PHP_FUNCTION()
848 result = php_formatted_print(format, format_len, args, argc, -1); in PHP_FUNCTION()
864 size_t format_len; in PHP_FUNCTION() local
871 Z_PARAM_STRING(format, format_len) in PHP_FUNCTION()
877 result = php_formatted_print(format, format_len, args, argc, 2); in PHP_FUNCTION()
894 size_t format_len; in PHP_FUNCTION() local
902 Z_PARAM_STRING(format, format_len) in PHP_FUNCTION()
910 result = php_formatted_print(format, format_len, args, argc, -1); in PHP_FUNCTION()