Searched refs:dec_point (Results 1 – 6 of 6) sorted by relevance
/php-src/ext/standard/ |
H A D | php_math.h | 22 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… 24 …*_php_math_number_format_long(zend_long num, zend_long dec, const char *dec_point, size_t dec_poin…
|
H A D | math.c | 1100 return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1); in _php_math_number_format() 1159 if (dec_point) { in _php_math_number_format_ex() 1195 if (dec_point) { in _php_math_number_format_ex() 1197 memcpy(t + 1, dec_point, dec_point_len); in _php_math_number_format_ex() 1293 if (dec_point) { in _php_math_number_format_long() 1314 if (dec_point) { in _php_math_number_format_long() 1316 memcpy(t + 1, dec_point, dec_point_len); in _php_math_number_format_long() 1345 char *thousand_sep = NULL, *dec_point = NULL; in PHP_FUNCTION() local 1352 Z_PARAM_STRING_OR_NULL(dec_point, dec_point_len) in PHP_FUNCTION() 1356 if (dec_point == NULL) { in PHP_FUNCTION() [all …]
|
/php-src/main/ |
H A D | snprintf.h | 78 PHPAPI char * php_0cvt(double value, int ndigit, char dec_point, char exponent, char *buf); 80 bool add_dp, int precision, char dec_point, bool * is_negative, char *buf, size_t *len);
|
H A D | snprintf.c | 272 bool add_dp, int precision, char dec_point, bool * is_negative, char *buf, size_t *len) in php_conv_fp() argument 303 *s++ = dec_point; in php_conv_fp() 308 *s++ = dec_point; in php_conv_fp() 321 *s++ = dec_point; in php_conv_fp()
|
/php-src/Zend/ |
H A D | zend_strtod.h | 35 ZEND_API char *zend_gcvt(double value, int ndigit, char dec_point, char exponent, char *buf);
|
H A D | zend_strtod.c | 4509 ZEND_API char *zend_gcvt(double value, int ndigit, char dec_point, char exponent, char *buf) in zend_gcvt() argument 4545 *dst++ = dec_point; in zend_gcvt() 4575 *dst++ = dec_point; in zend_gcvt() 4597 *dst++ = dec_point; in zend_gcvt()
|
Completed in 19 milliseconds