Home
last modified time | relevance | path

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

/PHP-8.0/main/
H A Dsnprintf.h83 PHPAPI char * php_gcvt(double value, int ndigit, char dec_point, char exponent, char *buf);
84 PHPAPI char * php_0cvt(double value, int ndigit, char dec_point, char exponent, char *buf);
86 boolean_e add_dp, int precision, char dec_point, bool_int * is_negative, char *buf, size_t *len);
H A Dsnprintf.c131 PHPAPI char *php_gcvt(double value, int ndigit, char dec_point, char exponent, char *buf) /* {{{ */ in php_gcvt() argument
166 *dst++ = dec_point; in php_gcvt()
195 *dst++ = dec_point; in php_gcvt()
217 *dst++ = dec_point; in php_gcvt()
370 boolean_e add_dp, int precision, char dec_point, bool_int * is_negative, char *buf, size_t *len) in php_conv_fp() argument
401 *s++ = dec_point; in php_conv_fp()
406 *s++ = dec_point; in php_conv_fp()
419 *s++ = dec_point; in php_conv_fp()
/PHP-8.0/ext/standard/
H A Dphp_math.h22 PHPAPI zend_string *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep);
23 PHPAPI zend_string *_php_math_number_format_ex(double d, int dec, const char *dec_point, size_t dec…
H A Dmath.c1011 PHPAPI zend_string *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep) in _php_math_number_format() argument
1013 return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1); in _php_math_number_format()
1016 PHPAPI zend_string *_php_math_number_format_ex(double d, int dec, const char *dec_point, in _php_math_number_format_ex() argument
1072 if (dec_point) { in _php_math_number_format_ex()
1108 if (dec_point) { in _php_math_number_format_ex()
1110 memcpy(t + 1, dec_point, dec_point_len); in _php_math_number_format_ex()
1139 char *thousand_sep = NULL, *dec_point = NULL; in PHP_FUNCTION() local
1146 Z_PARAM_STRING_OR_NULL(dec_point, dec_point_len) in PHP_FUNCTION()
1150 if (dec_point == NULL) { in PHP_FUNCTION()
1151 dec_point = "."; in PHP_FUNCTION()
[all …]

Completed in 23 milliseconds