Lines Matching refs:thousand_sep

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()
1070 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()
1188 size_t dec_point_len, const char *thousand_sep, size_t thousand_sep_len) in _php_math_number_format_long() argument
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()
1327 thousand_sep = ","; in PHP_FUNCTION()
1333 …math_number_format_long(Z_LVAL_P(num), dec, dec_point, dec_point_len, thousand_sep, thousand_sep_l… in PHP_FUNCTION()
1343 …_format_long((zend_long)Z_DVAL_P(num), dec, dec_point, dec_point_len, thousand_sep, thousand_sep_l… in PHP_FUNCTION()
1352 …th_number_format_ex(Z_DVAL_P(num), dec_int, dec_point, dec_point_len, thousand_sep, thousand_sep_l… in PHP_FUNCTION()