Home
last modified time | relevance | path

Searched refs:thousand_sep (Results 1 – 2 of 2) sorted by relevance

/php-src/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 … d, int dec, const char *dec_point, size_t dec_point_len, const char *thousand_sep, size_t thousan…
24 …nd_long dec, const char *dec_point, size_t dec_point_len, const char *thousand_sep, size_t thousan…
H A Dmath.c1070 size_t dec_point_len, const char *thousand_sep, size_t thousand_sep_len) in _php_math_number_format_ex() argument
1116 if (thousand_sep) { in _php_math_number_format_ex()
1171 if (thousand_sep && (++count%3)==0 && s >= ZSTR_VAL(tmpbuf)) { in _php_math_number_format_ex()
1173 memcpy(t + 1, thousand_sep, thousand_sep_len); in _php_math_number_format_ex()
1250 if (thousand_sep) { in _php_math_number_format_long()
1290 if (thousand_sep && (++count % 3) == 0 && s >= ZSTR_VAL(tmpbuf)) { in _php_math_number_format_long()
1292 memcpy(t + 1, thousand_sep, thousand_sep_len); in _php_math_number_format_long()
1311 char *thousand_sep = NULL, *dec_point = NULL; in PHP_FUNCTION() local
1319 Z_PARAM_STRING_OR_NULL(thousand_sep, thousand_sep_len) in PHP_FUNCTION()
1326 if (thousand_sep == NULL) { in PHP_FUNCTION()
[all …]

Completed in 7 milliseconds