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               393 ext/gd/libgd/webpimg.c   vpx_codec_ctx_t dec;
dec               402 ext/gd/libgd/webpimg.c   if (vpx_codec_dec_init(&dec,
dec               408 ext/gd/libgd/webpimg.c   vpx_codec_control(&dec, VP8_SET_POSTPROC, &ppcfg);
dec               411 ext/gd/libgd/webpimg.c   if (vpx_codec_decode(&dec, data, data_size, NULL, 0) == VPX_CODEC_OK) {
dec               413 ext/gd/libgd/webpimg.c     vpx_image_t* const img = vpx_codec_get_frame(&dec, &iter);
dec               447 ext/gd/libgd/webpimg.c   vpx_codec_destroy(&dec);
dec              1073 ext/standard/math.c PHPAPI char *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep)
dec              1075 ext/standard/math.c 	return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1);
dec              1078 ext/standard/math.c static char *_php_math_number_format_ex_len(double d, int dec, char *dec_point,
dec              1095 ext/standard/math.c 	dec = MAX(0, dec);
dec              1096 ext/standard/math.c 	d = _php_math_round(d, dec, PHP_ROUND_HALF_UP);
dec              1098 ext/standard/math.c 	tmplen = spprintf(&tmpbuf, 0, "%.*F", dec, d);
dec              1109 ext/standard/math.c 	if (dec) {
dec              1130 ext/standard/math.c 	if (dec) {
dec              1131 ext/standard/math.c 		reslen += dec;
dec              1151 ext/standard/math.c 	if (dec) {
dec              1153 ext/standard/math.c 		int topad = dec > declen ? dec - declen : 0;
dec              1199 ext/standard/math.c PHPAPI char *_php_math_number_format_ex(double d, int dec, char *dec_point,
dec              1202 ext/standard/math.c 	return _php_math_number_format_ex_len(d, dec, dec_point, dec_point_len,
dec              1212 ext/standard/math.c 	long dec = 0;
dec              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              1226 ext/standard/math.c 		RETURN_STRING(_php_math_number_format(num, dec, dec_point_chr, thousand_sep_chr), 0);
dec              1240 ext/standard/math.c 		Z_STRVAL_P(return_value) = _php_math_number_format_ex_len(num, dec,
dec               908 win32/sendmail.c 			int dec = 0;
dec               912 win32/sendmail.c 					dec++;
dec               914 win32/sendmail.c 						dec++;
dec               919 win32/sendmail.c 			*server_response = estrndup(buf, Received - dec);