Lines Matching refs:dec_point

1064 PHPAPI zend_string *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep)  in _php_math_number_format()  argument
1066 return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1); in _php_math_number_format()
1069 PHPAPI zend_string *_php_math_number_format_ex(double d, int dec, const char *dec_point, in _php_math_number_format_ex() argument
1125 if (dec_point) { in _php_math_number_format_ex()
1161 if (dec_point) { in _php_math_number_format_ex()
1163 memcpy(t + 1, dec_point, dec_point_len); in _php_math_number_format_ex()
1187 …PAPI zend_string *_php_math_number_format_long(zend_long num, zend_long dec, const char *dec_point, in _php_math_number_format_long() argument
1259 if (dec_point) { in _php_math_number_format_long()
1280 if (dec_point) { in _php_math_number_format_long()
1282 memcpy(t + 1, dec_point, dec_point_len); in _php_math_number_format_long()
1311 char *thousand_sep = NULL, *dec_point = NULL; in PHP_FUNCTION() local
1318 Z_PARAM_STRING_OR_NULL(dec_point, dec_point_len) in PHP_FUNCTION()
1322 if (dec_point == NULL) { in PHP_FUNCTION()
1323 dec_point = "."; in PHP_FUNCTION()
1333 …RETURN_STR(_php_math_number_format_long(Z_LVAL_P(num), dec, dec_point, dec_point_len, thousand_sep… in PHP_FUNCTION()
1343 …RETURN_STR(_php_math_number_format_long((zend_long)Z_DVAL_P(num), dec, dec_point, dec_point_len, t… in PHP_FUNCTION()
1352 …RETURN_STR(_php_math_number_format_ex(Z_DVAL_P(num), dec_int, dec_point, dec_point_len, thousand_s… in PHP_FUNCTION()