thousand_sep     1282 ext/standard/math.c PHPAPI zend_string *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep)
thousand_sep     1284 ext/standard/math.c 	return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1);
thousand_sep     1288 ext/standard/math.c 		size_t dec_point_len, char *thousand_sep, size_t thousand_sep_len)
thousand_sep     1329 ext/standard/math.c 	if (thousand_sep) {
thousand_sep     1384 ext/standard/math.c 		if (thousand_sep && (++count%3)==0 && s >= ZSTR_VAL(tmpbuf)) {
thousand_sep     1386 ext/standard/math.c 			memcpy(t + 1, thousand_sep, thousand_sep_len);
thousand_sep     1406 ext/standard/math.c 	char *thousand_sep = NULL, *dec_point = NULL;
thousand_sep     1411 ext/standard/math.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "d|ls!s!", &num, &dec, &dec_point, &dec_point_len, &thousand_sep, &thousand_sep_len) == FAILURE) {
thousand_sep     1420 ext/standard/math.c 		Z_PARAM_STRING_EX(thousand_sep, thousand_sep_len, 1, 0)
thousand_sep     1437 ext/standard/math.c 		if (thousand_sep == NULL) {
thousand_sep     1438 ext/standard/math.c 			thousand_sep = &thousand_sep_chr;
thousand_sep     1443 ext/standard/math.c 				dec_point, dec_point_len, thousand_sep, thousand_sep_len));