dec               160 ext/date/lib/astro.c static void astro_sun_RA_dec(double d, double *RA, double *dec, double *r)
dec               180 ext/date/lib/astro.c 	*dec = atan2d(z, sqrt(x*x + y*y));
dec              1282 ext/standard/math.c PHPAPI zend_string *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep)
dec              1284 ext/standard/math.c 	return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1);
dec              1287 ext/standard/math.c PHPAPI zend_string *_php_math_number_format_ex(double d, int dec, char *dec_point,
dec              1304 ext/standard/math.c 	dec = MAX(0, dec);
dec              1305 ext/standard/math.c 	d = _php_math_round(d, dec, PHP_ROUND_HALF_UP);
dec              1306 ext/standard/math.c 	tmpbuf = strpprintf(0, "%.*F", dec, d);
dec              1314 ext/standard/math.c 	if (dec) {
dec              1335 ext/standard/math.c 	if (dec) {
dec              1336 ext/standard/math.c 		reslen += dec;
dec              1356 ext/standard/math.c 	if (dec) {
dec              1358 ext/standard/math.c 		int topad = dec > declen ? dec - declen : 0;
dec              1405 ext/standard/math.c 	zend_long dec = 0;
dec              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) {
dec              1418 ext/standard/math.c 		Z_PARAM_LONG(dec)
dec              1429 ext/standard/math.c 		RETURN_STR(_php_math_number_format(num, (int)dec, dec_point_chr, thousand_sep_chr));
dec              1442 ext/standard/math.c 		RETVAL_STR(_php_math_number_format_ex(num, (int)dec,
dec               918 win32/sendmail.c 			int dec = 0;
dec               922 win32/sendmail.c 					dec++;
dec               924 win32/sendmail.c 						dec++;
dec               929 win32/sendmail.c 			*server_response = estrndup(buf, Received - dec);