Home
last modified time | relevance | path

Searched refs:dec_point (Results 1 – 4 of 4) sorted by relevance

/PHP-7.4/main/
H A Dsnprintf.h85 PHPAPI char * php_gcvt(double value, int ndigit, char dec_point, char exponent, char *buf);
86 PHPAPI char * php_0cvt(double value, int ndigit, char dec_point, char exponent, char *buf);
88 boolean_e add_dp, int precision, char dec_point, bool_int * is_negative, char *buf, size_t *len);
H A Dsnprintf.c136 PHPAPI char *php_gcvt(double value, int ndigit, char dec_point, char exponent, char *buf) /* {{{ */ in php_gcvt() argument
171 *dst++ = dec_point; in php_gcvt()
200 *dst++ = dec_point; in php_gcvt()
222 *dst++ = dec_point; in php_gcvt()
375 boolean_e add_dp, int precision, char dec_point, bool_int * is_negative, char *buf, size_t *len) in php_conv_fp() argument
406 *s++ = dec_point; in php_conv_fp()
411 *s++ = dec_point; in php_conv_fp()
424 *s++ = dec_point; in php_conv_fp()
/PHP-7.4/ext/standard/
H A Dmath.c1136 PHPAPI zend_string *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep) in _php_math_number_format() argument
1138 return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1); in _php_math_number_format()
1141 PHPAPI zend_string *_php_math_number_format_ex(double d, int dec, char *dec_point, in _php_math_number_format_ex() argument
1197 if (dec_point) { in _php_math_number_format_ex()
1233 if (dec_point) { in _php_math_number_format_ex()
1235 memcpy(t + 1, dec_point, dec_point_len); in _php_math_number_format_ex()
1265 char *thousand_sep = NULL, *dec_point = NULL; in PHP_FUNCTION() local
1273 Z_PARAM_STRING_EX(dec_point, dec_point_len, 1, 0) in PHP_FUNCTION()
1285 if (dec_point == NULL) { in PHP_FUNCTION()
1286 dec_point = &dec_point_chr; in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/standard/tests/strings/
H A Dnumber_format_basic.phpt6 …* string number_format ( float $number , int $decimals , string $dec_point , string …

Completed in 15 milliseconds