Lines Matching refs:dec
1073 PHPAPI char *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep) in _php_math_number_format() argument
1075 return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1); in _php_math_number_format()
1078 static char *_php_math_number_format_ex_len(double d, int dec, char *dec_point, in _php_math_number_format_ex_len() argument
1095 dec = MAX(0, dec); in _php_math_number_format_ex_len()
1096 d = _php_math_round(d, dec, PHP_ROUND_HALF_UP); in _php_math_number_format_ex_len()
1098 tmplen = spprintf(&tmpbuf, 0, "%.*F", dec, d); in _php_math_number_format_ex_len()
1109 if (dec) { in _php_math_number_format_ex_len()
1134 if (dec) { in _php_math_number_format_ex_len()
1135 reslen += dec; in _php_math_number_format_ex_len()
1159 if (dec) { in _php_math_number_format_ex_len()
1161 int topad = dec > declen ? dec - declen : 0; in _php_math_number_format_ex_len()
1207 PHPAPI char *_php_math_number_format_ex(double d, int dec, char *dec_point, in _php_math_number_format_ex() argument
1210 return _php_math_number_format_ex_len(d, dec, dec_point, dec_point_len, in _php_math_number_format_ex()
1220 long dec = 0; in PHP_FUNCTION() local
1227 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d|ls!s!", &num, &dec, &dec_point, &dec_point… in PHP_FUNCTION()
1237 formatted = _php_math_number_format(num, dec, dec_point_chr, thousand_sep_chr); in PHP_FUNCTION()
1251 formatted = _php_math_number_format_ex_len(num, dec, in PHP_FUNCTION()