Searched defs:dec_point (Results 1 - 2 of 2) sorted by relevance
| /PHP_TRUNK/ext/standard/ |
| H A D | math.c | 1095 PHPAPI char *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep) argument 1097 return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1); 1100 static char *_php_math_number_format_ex_len(double d, int dec, char *dec_point, argument 1155 if (dec_point) { 1191 if (dec_point) { 1193 memcpy(t + 1, dec_point, dec_point_len); 1221 PHPAPI char *_php_math_number_format_ex(double d, int dec, char *dec_point, argument 1224 return _php_math_number_format_ex_len(d, dec, dec_point, dec_point_len, 1235 char *thousand_sep = NULL, *dec_point = NULL; local 1239 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d|ls!s!", &num, &dec, &dec_point, [all...] |
| /PHP_TRUNK/main/ |
| H A D | snprintf.c | 137 PHPAPI char *php_gcvt(double value, int ndigit, char dec_point, char exponent, char *buf) /* {{{ */ argument 168 *dst++ = dec_point; 198 *dst++ = dec_point; 220 *dst++ = dec_point; 373 boolean_e add_dp, int precision, char dec_point, bool_int * is_negative, char *buf, int *len) 404 *s++ = dec_point; 409 *s++ = dec_point; 422 *s++ = dec_point; 372 php_conv_fp(register char format, register double num, boolean_e add_dp, int precision, char dec_point, bool_int * is_negative, char *buf, int *len) argument
|
Completed in 5 milliseconds