Lines Matching refs:dec
1115 PHPAPI zend_string *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep) in _php_math_number_format() argument
1117 return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1); in _php_math_number_format()
1120 PHPAPI zend_string *_php_math_number_format_ex(double d, int dec, char *dec_point, in _php_math_number_format_ex() argument
1137 dec = MAX(0, dec); in _php_math_number_format_ex()
1138 d = _php_math_round(d, dec, PHP_ROUND_HALF_UP); in _php_math_number_format_ex()
1139 tmpbuf = strpprintf(0, "%.*F", dec, d); in _php_math_number_format_ex()
1152 if (dec) { in _php_math_number_format_ex()
1173 if (dec) { in _php_math_number_format_ex()
1174 reslen += dec; in _php_math_number_format_ex()
1194 if (dec) { in _php_math_number_format_ex()
1196 size_t topad = dec > declen ? dec - declen : 0; in _php_math_number_format_ex()
1243 zend_long dec = 0; in PHP_FUNCTION() local
1251 Z_PARAM_LONG(dec) in PHP_FUNCTION()
1261 RETURN_STR(_php_math_number_format(num, (int)dec, dec_point_chr, thousand_sep_chr)); in PHP_FUNCTION()
1274 RETVAL_STR(_php_math_number_format_ex(num, (int)dec, in PHP_FUNCTION()