dec_point        1073 ext/standard/math.c PHPAPI char *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep)
dec_point        1075 ext/standard/math.c 	return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1);
dec_point        1078 ext/standard/math.c static char *_php_math_number_format_ex_len(double d, int dec, char *dec_point,
dec_point        1133 ext/standard/math.c 		if (dec_point) {
dec_point        1169 ext/standard/math.c 		if (dec_point) {
dec_point        1171 ext/standard/math.c 			memcpy(t + 1, dec_point, dec_point_len);
dec_point        1199 ext/standard/math.c PHPAPI char *_php_math_number_format_ex(double d, int dec, char *dec_point,
dec_point        1202 ext/standard/math.c 	return _php_math_number_format_ex_len(d, dec, dec_point, dec_point_len,
dec_point        1213 ext/standard/math.c 	char *thousand_sep = NULL, *dec_point = NULL;
dec_point        1217 ext/standard/math.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d|ls!s!", &num, &dec, &dec_point, &dec_point_len, &thousand_sep, &thousand_sep_len) == FAILURE) {
dec_point        1229 ext/standard/math.c 		if (dec_point == NULL) {
dec_point        1230 ext/standard/math.c 			dec_point = &dec_point_chr;
dec_point        1241 ext/standard/math.c 				dec_point, dec_point_len, thousand_sep, thousand_sep_len,
dec_point         142 main/snprintf.c PHPAPI char *php_gcvt(double value, int ndigit, char dec_point, char exponent, char *buf) /* {{{ */
dec_point         173 main/snprintf.c 		*dst++ = dec_point;
dec_point         203 main/snprintf.c 		*dst++ = dec_point;
dec_point         225 main/snprintf.c 			*dst++ = dec_point;
dec_point         378 main/snprintf.c 		 boolean_e add_dp, int precision, char dec_point, bool_int * is_negative, char *buf, int *len)
dec_point         409 main/snprintf.c 					*s++ = dec_point;
dec_point         414 main/snprintf.c 					*s++ = dec_point;
dec_point         427 main/snprintf.c 				*s++ = dec_point;
dec_point          88 main/snprintf.h PHPAPI char * php_gcvt(double value, int ndigit, char dec_point, char exponent, char *buf);
dec_point          90 main/snprintf.h 		 boolean_e add_dp, int precision, char dec_point, bool_int * is_negative, char *buf, int *len);