d                 328 Zend/zend_API.c 		double d;
d                 331 Zend/zend_API.c 		if (UNEXPECTED((type = is_numeric_str_function(Z_STR_P(arg), dest, &d)) != IS_LONG)) {
d                 333 Zend/zend_API.c 				if (UNEXPECTED(zend_isnan(d))) {
d                 336 Zend/zend_API.c 				if (UNEXPECTED(!ZEND_DOUBLE_FITS_LONG(d))) {
d                 339 Zend/zend_API.c 					*dest = zend_dval_to_lval(d);
d                 377 Zend/zend_API.c 		double d;
d                 380 Zend/zend_API.c 		if (UNEXPECTED((type = is_numeric_str_function(Z_STR_P(arg), dest, &d)) != IS_LONG)) {
d                 382 Zend/zend_API.c 				if (UNEXPECTED(zend_isnan(d))) {
d                 385 Zend/zend_API.c 				if (UNEXPECTED(!ZEND_DOUBLE_FITS_LONG(d))) {
d                 386 Zend/zend_API.c 					*dest = (d > 0) ? ZEND_LONG_MAX : ZEND_LONG_MIN;
d                 388 Zend/zend_API.c 					*dest = zend_dval_to_lval(d);
d                1366 Zend/zend_API.c ZEND_API int add_assoc_double_ex(zval *arg, const char *key, size_t key_len, double d) /* {{{ */
d                1370 Zend/zend_API.c 	ZVAL_DOUBLE(&tmp, d);
d                1451 Zend/zend_API.c ZEND_API int add_index_double(zval *arg, zend_ulong index, double d) /* {{{ */
d                1455 Zend/zend_API.c 	ZVAL_DOUBLE(&tmp, d);
d                1529 Zend/zend_API.c ZEND_API int add_next_index_double(zval *arg, double d) /* {{{ */
d                1533 Zend/zend_API.c 	ZVAL_DOUBLE(&tmp, d);
d                1600 Zend/zend_API.c ZEND_API zval *add_get_index_double(zval *arg, zend_ulong index, double d) /* {{{ */
d                1604 Zend/zend_API.c 	ZVAL_DOUBLE(&tmp, d);
d                1735 Zend/zend_API.c ZEND_API int add_property_double_ex(zval *arg, const char *key, size_t key_len, double d) /* {{{ */
d                1740 Zend/zend_API.c 	ZVAL_DOUBLE(&tmp, d);
d                 394 Zend/zend_API.h ZEND_API int add_assoc_double_ex(zval *arg, const char *key, size_t key_len, double d);
d                 420 Zend/zend_API.h ZEND_API int add_index_double(zval *arg, zend_ulong idx, double d);
d                 430 Zend/zend_API.h ZEND_API int add_next_index_double(zval *arg, double d);
d                 443 Zend/zend_API.h ZEND_API zval *add_get_index_double(zval *arg, zend_ulong idx, double d);
d                 454 Zend/zend_API.h ZEND_API int add_property_double_ex(zval *arg, const char *key, size_t key_len, double d);
d                 614 Zend/zend_API.h #define RETVAL_DOUBLE(d) 				ZVAL_DOUBLE(return_value, d)
d                 632 Zend/zend_API.h #define RETURN_DOUBLE(d) 				{ RETVAL_DOUBLE(d); return; }
d                 363 Zend/zend_operators.c 				double d = (double) Z_RES_HANDLE_P(op);
d                 365 Zend/zend_operators.c 				ZVAL_DOUBLE(op, d);
d                2255 Zend/zend_operators.c 							double d = (double)lval;
d                2256 Zend/zend_operators.c 							ZVAL_DOUBLE(op1, d+1);
d                2328 Zend/zend_operators.c 						double d = (double)lval;
d                2329 Zend/zend_operators.c 						ZVAL_DOUBLE(op1, d-1);
d                2974 Zend/zend_operators.c ZEND_API zend_long ZEND_FASTCALL zend_dval_to_lval_slow(double d)
d                2979 Zend/zend_operators.c 	dmod = fmod(d, two_pow_32);
d                2988 Zend/zend_operators.c ZEND_API zend_long ZEND_FASTCALL zend_dval_to_lval_slow(double d)
d                2993 Zend/zend_operators.c 	dmod = fmod(d, two_pow_64);
d                  97 Zend/zend_operators.h #	define ZEND_DOUBLE_FITS_LONG(d) (!((d) > ZEND_LONG_MAX || (d) < ZEND_LONG_MIN))
d                 100 Zend/zend_operators.h #	define ZEND_DOUBLE_FITS_LONG(d) (!((d) >= ZEND_LONG_MAX || (d) < ZEND_LONG_MIN))
d                 104 Zend/zend_operators.h static zend_always_inline zend_long zend_dval_to_lval(double d)
d                 106 Zend/zend_operators.h     if (EXPECTED(zend_finite(d)) && EXPECTED(!zend_isnan(d))) {
d                 107 Zend/zend_operators.h         return (zend_long)d;
d                 113 Zend/zend_operators.h ZEND_API zend_long ZEND_FASTCALL zend_dval_to_lval_slow(double d);
d                 115 Zend/zend_operators.h static zend_always_inline zend_long zend_dval_to_lval(double d)
d                 117 Zend/zend_operators.h 	if (UNEXPECTED(!zend_finite(d)) || UNEXPECTED(zend_isnan(d))) {
d                 119 Zend/zend_operators.h 	} else if (!ZEND_DOUBLE_FITS_LONG(d)) {
d                 120 Zend/zend_operators.h 		return zend_dval_to_lval_slow(d);
d                 122 Zend/zend_operators.h 	return (zend_long)d;
d                 122 Zend/zend_sort.c static void zend_sort_4(void *a, void *b, void *c, void *d, compare_func_t cmp, swap_func_t swp) /* {{{ */ {
d                 124 Zend/zend_sort.c 	if (cmp(c, d) > 0) {
d                 125 Zend/zend_sort.c 		swp(c, d);
d                 136 Zend/zend_sort.c static void zend_sort_5(void *a, void *b, void *c, void *d, void *e, compare_func_t cmp, swap_func_t swp) /* {{{ */ {
d                 137 Zend/zend_sort.c 	zend_sort_4(a, b, c, d, cmp, swp);
d                 138 Zend/zend_sort.c 	if (cmp(d, e) > 0) {
d                 139 Zend/zend_sort.c 		swp(d, e);
d                 140 Zend/zend_sort.c 		if (cmp(c, d) > 0) {
d                 141 Zend/zend_sort.c 			swp(c, d);
d                 311 Zend/zend_strtod.c typedef union { double d; ULong L[2]; } U;
d                 320 Zend/zend_strtod.c #define dval(x) (x)->d
d                 533 Zend/zend_strtod.c extern "C" char *dtoa(double d, int mode, int ndigits,
d                1256 Zend/zend_strtod.c 	U d;
d                1260 Zend/zend_strtod.c #define d0 word0(&d)
d                1261 Zend/zend_strtod.c #define d1 word1(&d)
d                1307 Zend/zend_strtod.c 	word0(&d) = d0 >> 16 | d0 << 16;
d                1308 Zend/zend_strtod.c 	word1(&d) = d1 >> 16 | d1 << 16;
d                1313 Zend/zend_strtod.c 	return dval(&d);
d                1319 Zend/zend_strtod.c 	(d, e, bits) U *d; int *e, *bits;
d                1321 Zend/zend_strtod.c 	(U *d, int *e, int *bits)
d                1332 Zend/zend_strtod.c 	d0 = word0(d) >> 16 | word0(d) << 16;
d                1333 Zend/zend_strtod.c 	d1 = word1(d) >> 16 | word1(d) << 16;
d                1335 Zend/zend_strtod.c #define d0 word0(d)
d                1336 Zend/zend_strtod.c #define d1 word1(d)
d                1429 Zend/zend_strtod.c 		*bits = 4*P + 8 - k - hi0bits(word0(d) & Frac_mask);
d                1602 Zend/zend_strtod.c 	int c, d;
d                1605 Zend/zend_strtod.c 	while((d = *t++)) {
d                1608 Zend/zend_strtod.c 		if (c != d)
d                2069 Zend/zend_strtod.c 			rvp->d = 0.;
d                2317 Zend/zend_strtod.c 	return rv * u.d;
d                2331 Zend/zend_strtod.c 	Bigint *b, *d;
d                2340 Zend/zend_strtod.c 	if (rv->d == 0.) {	/* special case: value near underflow-to-zero */
d                2403 Zend/zend_strtod.c 	d = i2b(1);
d                2408 Zend/zend_strtod.c 		d = pow5mult(d, p5);
d                2419 Zend/zend_strtod.c 	i = dshift(d, d2);
d                2423 Zend/zend_strtod.c 		d = lshift(d, d2);
d                2428 Zend/zend_strtod.c 	if (!(dig = quorem(b,d))) {
d                2430 Zend/zend_strtod.c 		dig = quorem(b,d);
d                2444 Zend/zend_strtod.c 		dig = quorem(b,d);
d                2455 Zend/zend_strtod.c 		dig = quorem(b,d);
d                2461 Zend/zend_strtod.c 	Bfree(d);
d                2492 Zend/zend_strtod.c 			rv->d = 0.;
d                2790 Zend/zend_strtod.c 					rv.d = -rv.d;
d                2806 Zend/zend_strtod.c 					rv.d = -rv.d;
d                2834 Zend/zend_strtod.c 				rv.d = -rv.d;
d                3144 Zend/zend_strtod.c 						adj.d = 1.;
d                3149 Zend/zend_strtod.c 					adj.d = -1.;
d                3161 Zend/zend_strtod.c 							adj.d = -0.5;
d                3174 Zend/zend_strtod.c 						dval(&rv) += adj.d*ulp(dval(&rv));
d                3180 Zend/zend_strtod.c 					dval(&rv) += adj.d*ulp(&rv);
d                3184 Zend/zend_strtod.c 			adj.d = ratio(delta, bs);
d                3185 Zend/zend_strtod.c 			if (adj.d < 1.)
d                3186 Zend/zend_strtod.c 				adj.d = 1.;
d                3187 Zend/zend_strtod.c 			if (adj.d <= 0x7ffffffe) {
d                3189 Zend/zend_strtod.c 				y = adj.d;
d                3190 Zend/zend_strtod.c 				if (y != adj.d) {
d                3193 Zend/zend_strtod.c 					adj.d = y;
d                3203 Zend/zend_strtod.c 				adj.d *= ulp(dval(&rv));
d                3205 Zend/zend_strtod.c 					dval(&rv) += adj.d;
d                3207 Zend/zend_strtod.c 					dval(&rv) -= adj.d;
d                3213 Zend/zend_strtod.c 			adj.d *= ulp(&rv);
d                3217 Zend/zend_strtod.c 				dval(&rv) += adj.d;
d                3220 Zend/zend_strtod.c 				dval(&rv) -= adj.d;
d                3429 Zend/zend_strtod.c 			adj.d = aadj1 * ulp(&rv);
d                3430 Zend/zend_strtod.c 			dval(&rv) += adj.d;
d                3454 Zend/zend_strtod.c 				adj.d = aadj1 * ulp(&rv);
d                3455 Zend/zend_strtod.c 				dval(&rv) += adj.d;
d                3456 Zend/zend_strtod.c 				if (rv.d == 0.)
d                3467 Zend/zend_strtod.c 				adj.d = aadj1 * ulp(&rv);
d                3468 Zend/zend_strtod.c 				dval(&rv) += adj.d;
d                3475 Zend/zend_strtod.c 				adj.d = aadj1 * ulp(&rv);
d                3476 Zend/zend_strtod.c 				dval(&rv) += adj.d;
d                3499 Zend/zend_strtod.c 				adj.d = aadj1 * ulp(&rv);
d                3500 Zend/zend_strtod.c 				dval(&rv) += adj.d;
d                3515 Zend/zend_strtod.c 			adj.d = aadj1 * ulp(&rv);
d                3516 Zend/zend_strtod.c 			dval(&rv) += adj.d;
d                3559 Zend/zend_strtod.c 		if (y == 0 && rv.d == 0.)
d                3786 Zend/zend_strtod.c 	u.d = dd;
d                4027 Zend/zend_strtod.c 				eps1.d = 1.01e256; /* 1.01 allows roundoff in the next few lines */
d                4033 Zend/zend_strtod.c 				if (eps.d < eps1.d)
d                4034 Zend/zend_strtod.c 					eps.d = eps1.d;
d                  33 Zend/zend_types.h # define ZEND_ENDIAN_LOHI_4(a, b, c, d)    d; c; b; a;
d                  36 Zend/zend_types.h # define ZEND_ENDIAN_LOHI_C_4(a, b, c, d)  d, c, b, a
d                  40 Zend/zend_types.h # define ZEND_ENDIAN_LOHI_4(a, b, c, d)    a; b; c; d;
d                  43 Zend/zend_types.h # define ZEND_ENDIAN_LOHI_C_4(a, b, c, d)  a, b, c, d
d                 614 Zend/zend_types.h #define ZVAL_DOUBLE(z, d) {				\
d                 616 Zend/zend_types.h 		Z_DVAL_P(__z) = d;				\
d                 138 Zend/zend_virtual_cwd.c #define CWD_STATE_COPY(d, s)				\
d                 139 Zend/zend_virtual_cwd.c 	(d)->cwd_length = (s)->cwd_length;		\
d                 140 Zend/zend_virtual_cwd.c 	(d)->cwd = (char *) emalloc((s)->cwd_length+1);	\
d                 141 Zend/zend_virtual_cwd.c 	memcpy((d)->cwd, (s)->cwd, (s)->cwd_length+1);
d                  70 ext/bcmath/libbcmath/src/bcmath.h #define BCD_CHAR(d)   (d + '0')
d                 398 ext/com_dotnet/com_handlers.c 	static zend_internal_function c, d, v;
d                 413 ext/com_dotnet/com_handlers.c 			POPULATE_CTOR(d, com_dotnet_create_instance);
d                 508 ext/curl/interface.c 	curl_version_info_data *d;
d                 513 ext/curl/interface.c 	d = curl_version_info(CURLVERSION_NOW);
d                 516 ext/curl/interface.c 	php_info_print_table_row(2, "cURL Information", d->version);
d                 517 ext/curl/interface.c 	sprintf(str, "%d", d->age);
d                 521 ext/curl/interface.c 	if (d->features) {
d                 577 ext/curl/interface.c 				php_info_print_table_row(2, feats[i].name, d->features & feats[i].bitmask ? "Yes" : "No");
d                 583 ext/curl/interface.c 	p = (char **) d->protocols;
d                 590 ext/curl/interface.c 	php_info_print_table_row(2, "Host", d->host);
d                 592 ext/curl/interface.c 	if (d->ssl_version) {
d                 593 ext/curl/interface.c 		php_info_print_table_row(2, "SSL Version", d->ssl_version);
d                 596 ext/curl/interface.c 	if (d->libz_version) {
d                 597 ext/curl/interface.c 		php_info_print_table_row(2, "ZLib Version", d->libz_version);
d                 601 ext/curl/interface.c 	if (d->ares) {
d                 602 ext/curl/interface.c 		php_info_print_table_row(2, "ZLib Version", d->ares);
d                 607 ext/curl/interface.c 	if (d->libidn) {
d                 608 ext/curl/interface.c 		php_info_print_table_row(2, "libIDN Version", d->libidn);
d                 614 ext/curl/interface.c 	if (d->iconv_ver_num) {
d                 615 ext/curl/interface.c 		php_info_print_table_row(2, "IconV Version", d->iconv_ver_num);
d                 618 ext/curl/interface.c 	if (d->libssh_version) {
d                 619 ext/curl/interface.c 		php_info_print_table_row(2, "libSSH Version", d->libssh_version);
d                1700 ext/curl/interface.c 	curl_version_info_data *d;
d                1707 ext/curl/interface.c 	d = curl_version_info(uversion);
d                1708 ext/curl/interface.c 	if (d == NULL) {
d                1714 ext/curl/interface.c 	CAAL("version_number", d->version_num);
d                1715 ext/curl/interface.c 	CAAL("age", d->age);
d                1716 ext/curl/interface.c 	CAAL("features", d->features);
d                1717 ext/curl/interface.c 	CAAL("ssl_version_number", d->ssl_version_num);
d                1718 ext/curl/interface.c 	CAAS("version", d->version);
d                1719 ext/curl/interface.c 	CAAS("host", d->host);
d                1720 ext/curl/interface.c 	CAAS("ssl_version", d->ssl_version);
d                1721 ext/curl/interface.c 	CAAS("libz_version", d->libz_version);
d                1724 ext/curl/interface.c 		char **p = (char **) d->protocols;
d                  33 ext/date/lib/astro.c #define days_since_2000_Jan_0(y,m,d) \
d                  34 ext/date/lib/astro.c 	(367L*(y)-((7*((y)+(((m)+9)/12)))/4)+((275*(m))/9)+(d)-730530L)
d                 113 ext/date/lib/astro.c static double astro_GMST0(double d)
d                 121 ext/date/lib/astro.c 	sidtim0 = astro_revolution((180.0 + 356.0470 + 282.9404) + (0.9856002585 + 4.70935E-5) * d);
d                 133 ext/date/lib/astro.c static void astro_sunpos(double d, double *lon, double *r)
d                 144 ext/date/lib/astro.c 	M = astro_revolution(356.0470 + 0.9856002585 * d);
d                 145 ext/date/lib/astro.c 	w = 282.9404 + 4.70935E-5 * d;
d                 146 ext/date/lib/astro.c 	e = 0.016709 - 1.151E-9 * d;
d                 160 ext/date/lib/astro.c static void astro_sun_RA_dec(double d, double *RA, double *dec, double *r)
d                 165 ext/date/lib/astro.c 	astro_sunpos(d, &lon, r);
d                 172 ext/date/lib/astro.c 	obl_ecl = 23.4393 - 3.563E-7 * d;
d                 214 ext/date/lib/astro.c 	double  d,  /* Days since 2000 Jan 0.0 (negative before) */
d                 237 ext/date/lib/astro.c 	t_utc->d = t_loc->d;
d                 243 ext/date/lib/astro.c 	d = timelib_ts_to_juliandate(timestamp) - lon/360.0;
d                 246 ext/date/lib/astro.c 	sidtime = astro_revolution(astro_GMST0(d) + 180.0 + lon);
d                 249 ext/date/lib/astro.c 	astro_sun_RA_dec( d, &sRA, &sdec, &sr );
d                  47 ext/date/lib/dow.c static timelib_sll timelib_day_of_week_ex(timelib_sll y, timelib_sll m, timelib_sll d, int iso)
d                  57 ext/date/lib/dow.c 	dow = positive_mod((c1 + y1 + m1 + (y1 / 4) + d), 7);
d                  66 ext/date/lib/dow.c timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d)
d                  68 ext/date/lib/dow.c 	return timelib_day_of_week_ex(y, m, d, 0);
d                  71 ext/date/lib/dow.c timelib_sll timelib_iso_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d)
d                  73 ext/date/lib/dow.c 	return timelib_day_of_week_ex(y, m, d, 1);
d                  82 ext/date/lib/dow.c timelib_sll timelib_day_of_year(timelib_sll y, timelib_sll m, timelib_sll d)
d                  84 ext/date/lib/dow.c 	return (timelib_is_leap(y) ? d_table_leap[m] : d_table_common[m]) + d - 1;
d                  92 ext/date/lib/dow.c void timelib_isoweek_from_date(timelib_sll y, timelib_sll m, timelib_sll d, timelib_sll *iw, timelib_sll *iy)
d                  98 ext/date/lib/dow.c 	doy = timelib_day_of_year(y, m, d) + 1;
d                 103 ext/date/lib/dow.c 	weekday = timelib_day_of_week(y, m, d);
d                 140 ext/date/lib/dow.c timelib_sll timelib_daynr_from_weeknr(timelib_sll y, timelib_sll w, timelib_sll d)
d                 150 ext/date/lib/dow.c 	return day + ((w - 1) * 7) + d;
d                 161 ext/date/lib/dow.c int timelib_valid_date(timelib_sll y, timelib_sll m, timelib_sll d)
d                 163 ext/date/lib/dow.c 	if (m < 1 || m > 12 || d < 1 || d > timelib_days_in_month(y, m)) {
d                  64 ext/date/lib/interval.c 	rt->d = two->d - one->d;
d                  80 ext/date/lib/interval.c 			rt->d--;
d                 109 ext/date/lib/interval.c 		t->relative.d = interval->d * bias;
d                 121 ext/date/lib/interval.c 	if (old_time->dst == 1 && t->dst == 0 && !interval->y && !interval->m && !interval->d) {
d                 144 ext/date/lib/interval.c 	t->relative.d = 0 - (interval->d * bias);
d                 154 ext/date/lib/interval.c 	if (old_time->dst == 1 && t->dst == 0 && !interval->y && !interval->m && !interval->d) {
d                 159 ext/date/lib/interval.c 	if (old_time->dst == 0 && t->dst == 1 && !interval->y && !interval->m && !interval->d ) {
d                 119 ext/date/lib/parse_date.c #define TIMELIB_UNHAVE_DATE() { s->time->have_date = 0; s->time->d = 0; s->time->m = 0; s->time->y = 0; }
d                 127 ext/date/lib/parse_date.c #define TIMELIB_ADJUST_RELATIVE_WEEKDAY() if (in->time.have_weekday_relative && (in.rel.d > 0)) { in.rel.d -= 7; }
d                 658 ext/date/lib/parse_date.c 		case TIMELIB_DAY:    s->time->relative.d += amount * relunit->multiplier; break;
d                 665 ext/date/lib/parse_date.c 			s->time->relative.d += (amount > 0 ? amount - 1 : amount) * 7;
d                4121 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                4401 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                5125 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                5326 ext/date/lib/parse_date.c 		s->time->d = 1;
d                6556 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                7204 ext/date/lib/parse_date.c 		s->time->relative.d = 0 - s->time->relative.d;
d                8973 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                9540 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                10174 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                10922 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                10968 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                11622 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                11738 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                11984 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                12555 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                12605 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                12911 ext/date/lib/parse_date.c 		s->time->d = 1;
d                13131 ext/date/lib/parse_date.c 		timelib_sll w, d;
d                13139 ext/date/lib/parse_date.c 		d = 1;
d                13141 ext/date/lib/parse_date.c 		s->time->d = 1;
d                13142 ext/date/lib/parse_date.c 		s->time->relative.d = timelib_daynr_from_weeknr(s->time->y, w, d);
d                13157 ext/date/lib/parse_date.c 		timelib_sll w, d;
d                13165 ext/date/lib/parse_date.c 		d = timelib_get_nr((char **) &ptr, 1);
d                13167 ext/date/lib/parse_date.c 		s->time->d = 1;
d                13168 ext/date/lib/parse_date.c 		s->time->relative.d = timelib_daynr_from_weeknr(s->time->y, w, d);
d                13242 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 3);
d                13358 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                13641 ext/date/lib/parse_date.c 		s->time->d = timelib_get_nr((char **) &ptr, 2);
d                14571 ext/date/lib/parse_date.c 		s->time->d = 1;
d                21239 ext/date/lib/parse_date.c 		s->time->d = 1;
d                21692 ext/date/lib/parse_date.c 		s->time->relative.d = 1;
d                24442 ext/date/lib/parse_date.c 		s->time->relative.d = -1;
d                24652 ext/date/lib/parse_date.c 		in.time->y = in.time->d = in.time->m = in.time->h = in.time->i = in.time->s = in.time->f = in.time->dst = in.time->z = TIMELIB_UNSET;
d                24665 ext/date/lib/parse_date.c 	in.time->d = TIMELIB_UNSET;
d                24690 ext/date/lib/parse_date.c 	if (in.time->have_date && !timelib_valid_date( in.time->y, in.time->m, in.time->d)) {
d                24715 ext/date/lib/parse_date.c 	time->d = 1;
d                24727 ext/date/lib/parse_date.c 	if (time->d == TIMELIB_UNSET ) time->d = 1;
d                24753 ext/date/lib/parse_date.c 	in.time->d = TIMELIB_UNSET;
d                24789 ext/date/lib/parse_date.c 				if ((s->time->d = timelib_get_nr((char **) &ptr, 2)) == TIMELIB_UNSET) {
d                24802 ext/date/lib/parse_date.c 					s->time->d = tmp + 1;
d                24917 ext/date/lib/parse_date.c 				s->time->d = 1;
d                25056 ext/date/lib/parse_date.c 		s->time->d != TIMELIB_UNSET &&
d                25057 ext/date/lib/parse_date.c 		!timelib_valid_date( s->time->y, s->time->m, s->time->d)) {
d                25078 ext/date/lib/parse_date.c 	if (parsed->d == TIMELIB_UNSET) parsed->d = now->d != TIMELIB_UNSET ? now->d : 0;
d                25127 ext/date/lib/parse_date.c 		time.y, time.m, time.d, time.h, time.i, time.s, time.f, time.z, time.dst);
d                25130 ext/date/lib/parse_date.c 			time.relative.y, time.relative.m, time.relative.d, time.relative.h, time.relative.i, time.relative.s);
d                 367 ext/date/lib/parse_iso_intervals.c 				case 'W': s->period->d = nr * 7; break;
d                 368 ext/date/lib/parse_iso_intervals.c 				case 'D': s->period->d = nr; break;
d                 693 ext/date/lib/parse_iso_intervals.c 		s->period->d = timelib_get_unsigned_nr((char **) &ptr, 2);
d                 822 ext/date/lib/parse_iso_intervals.c 		current->d = timelib_get_nr((char **) &ptr, 2);
d                 958 ext/date/lib/parse_iso_intervals.c 	in.begin->d = TIMELIB_UNSET;
d                 971 ext/date/lib/parse_iso_intervals.c 	in.end->d = TIMELIB_UNSET;
d                 984 ext/date/lib/parse_iso_intervals.c 	in.period->d = 0;
d                 201 ext/date/lib/timelib.c timelib_long timelib_date_to_int(timelib_time *d, int *error)
d                 205 ext/date/lib/timelib.c 	ts = d->sse;
d                 216 ext/date/lib/timelib.c 	return (timelib_long) d->sse;
d                 226 ext/date/lib/timelib.c void timelib_dump_date(timelib_time *d, int options)
d                 229 ext/date/lib/timelib.c 		printf("TYPE: %d ", d->zone_type);
d                 232 ext/date/lib/timelib.c 		d->sse, d->y < 0 ? "-" : "", TIMELIB_LLABS(d->y), d->m, d->d, d->h, d->i, d->s);
d                 233 ext/date/lib/timelib.c 	if (d->f > +0.0) {
d                 234 ext/date/lib/timelib.c 		printf(" %.5f", d->f);
d                 237 ext/date/lib/timelib.c 	if (d->is_localtime) {
d                 238 ext/date/lib/timelib.c 		switch (d->zone_type) {
d                 240 ext/date/lib/timelib.c 				printf(" GMT %05d%s", d->z, d->dst == 1 ? " (DST)" : "");
d                 244 ext/date/lib/timelib.c 				if (d->tz_abbr) {
d                 245 ext/date/lib/timelib.c 					printf(" %s", d->tz_abbr);
d                 248 ext/date/lib/timelib.c 				if (d->tz_info) {
d                 249 ext/date/lib/timelib.c 					printf(" %s", d->tz_info->name);
d                 253 ext/date/lib/timelib.c 				printf(" %s", d->tz_abbr);
d                 254 ext/date/lib/timelib.c 				printf(" %05d%s", d->z, d->dst == 1 ? " (DST)" : "");
d                 260 ext/date/lib/timelib.c 		if (d->have_relative) {
d                 262 ext/date/lib/timelib.c 				d->relative.y, d->relative.m, d->relative.d, d->relative.h, d->relative.i, d->relative.s);
d                 263 ext/date/lib/timelib.c 			if (d->relative.first_last_day_of != 0) {
d                 264 ext/date/lib/timelib.c 				switch (d->relative.first_last_day_of) {
d                 273 ext/date/lib/timelib.c 			if (d->relative.have_weekday_relative) {
d                 274 ext/date/lib/timelib.c 				printf(" / %d.%d", d->relative.weekday, d->relative.weekday_behavior);
d                 276 ext/date/lib/timelib.c 			if (d->relative.have_special_relative) {
d                 277 ext/date/lib/timelib.c 				switch (d->relative.special.type) {
d                 279 ext/date/lib/timelib.c 						printf(" / %lld weekday", d->relative.special.amount);
d                 294 ext/date/lib/timelib.c void timelib_dump_rel_time(timelib_rel_time *d)
d                 297 ext/date/lib/timelib.c 		d->y, d->m, d->d, d->h, d->i, d->s, d->days, d->invert ? " inverted" : "");
d                 298 ext/date/lib/timelib.c 	if (d->first_last_day_of != 0) {
d                 299 ext/date/lib/timelib.c 		switch (d->first_last_day_of) {
d                  77 ext/date/lib/timelib.h timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d);
d                  78 ext/date/lib/timelib.h timelib_sll timelib_iso_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d);
d                  79 ext/date/lib/timelib.h timelib_sll timelib_day_of_year(timelib_sll y, timelib_sll m, timelib_sll d);
d                  80 ext/date/lib/timelib.h timelib_sll timelib_daynr_from_weeknr(timelib_sll y, timelib_sll w, timelib_sll d);
d                  82 ext/date/lib/timelib.h void timelib_isoweek_from_date(timelib_sll y, timelib_sll m, timelib_sll d, timelib_sll *iw, timelib_sll *iy);
d                  84 ext/date/lib/timelib.h int timelib_valid_date(timelib_sll y, timelib_sll m, timelib_sll d);
d                 148 ext/date/lib/timelib.h timelib_long timelib_date_to_int(timelib_time *d, int *error);
d                 149 ext/date/lib/timelib.h void timelib_dump_date(timelib_time *d, int options);
d                 150 ext/date/lib/timelib.h void timelib_dump_rel_time(timelib_rel_time *d);
d                 217 ext/date/lib/timelib_structs.h 	timelib_sll y, m, d; /* Years, Months and Days */
d                 240 ext/date/lib/timelib_structs.h 	timelib_sll      y, m, d;     /* Year, Month, Day */
d                  65 ext/date/lib/tm2unixtime.c static void do_range_limit_days_relative(timelib_sll *base_y, timelib_sll *base_m, timelib_sll *y, timelib_sll *m, timelib_sll *d, timelib_sll invert)
d                  80 ext/date/lib/tm2unixtime.c 		while (*d < 0) {
d                  87 ext/date/lib/tm2unixtime.c 			*d += days;
d                  91 ext/date/lib/tm2unixtime.c 		while (*d < 0) {
d                  97 ext/date/lib/tm2unixtime.c 			*d += days;
d                 107 ext/date/lib/tm2unixtime.c static int do_range_limit_days(timelib_sll *y, timelib_sll *m, timelib_sll *d)
d                 115 ext/date/lib/tm2unixtime.c 	if (*d >= DAYS_PER_LYEAR_PERIOD || *d <= -DAYS_PER_LYEAR_PERIOD) {
d                 116 ext/date/lib/tm2unixtime.c 		*y += YEARS_PER_LYEAR_PERIOD * (*d / DAYS_PER_LYEAR_PERIOD);
d                 117 ext/date/lib/tm2unixtime.c 		*d -= DAYS_PER_LYEAR_PERIOD * (*d / DAYS_PER_LYEAR_PERIOD);
d                 135 ext/date/lib/tm2unixtime.c 	if (*d <= 0) {
d                 136 ext/date/lib/tm2unixtime.c 		*d += days_last_month;
d                 140 ext/date/lib/tm2unixtime.c 	if (*d > days_this_month) {
d                 141 ext/date/lib/tm2unixtime.c 		*d -= days_this_month;
d                 152 ext/date/lib/tm2unixtime.c 	current_dow = timelib_day_of_week(time->y, time->m, time->d);
d                 158 ext/date/lib/tm2unixtime.c 		time->d -= current_dow;
d                 159 ext/date/lib/tm2unixtime.c 		time->d += time->relative.weekday;
d                 163 ext/date/lib/tm2unixtime.c 	if ((time->relative.d < 0 && difference < 0) || (time->relative.d >= 0 && difference <= -time->relative.weekday_behavior)) {
d                 167 ext/date/lib/tm2unixtime.c 		time->d += difference;
d                 169 ext/date/lib/tm2unixtime.c 		time->d -= (7 - (abs(time->relative.weekday) - current_dow));
d                 178 ext/date/lib/tm2unixtime.c 	do_range_limit(0, 24, 24, &rt->h, &rt->d);
d                 181 ext/date/lib/tm2unixtime.c 	do_range_limit_days_relative(&base->y, &base->m, &rt->y, &rt->m, &rt->d, rt->invert);
d                 189 ext/date/lib/tm2unixtime.c 	if (time->s != TIMELIB_UNSET) do_range_limit(0, 24, 24, &time->h, &time->d);
d                 192 ext/date/lib/tm2unixtime.c 	do {} while (do_range_limit_days(&time->y, &time->m, &time->d));
d                 208 ext/date/lib/tm2unixtime.c 		time->d += time->relative.d;
d                 215 ext/date/lib/tm2unixtime.c 			time->d = 1;
d                 218 ext/date/lib/tm2unixtime.c 			time->d = 0;
d                 231 ext/date/lib/tm2unixtime.c 	dow = timelib_day_of_week(time->y, time->m, time->d);
d                 234 ext/date/lib/tm2unixtime.c 	time->d += (count / 5) * 7;
d                 243 ext/date/lib/tm2unixtime.c 				time->d -= 2;
d                 245 ext/date/lib/tm2unixtime.c 				time->d -= 1;
d                 250 ext/date/lib/tm2unixtime.c 			time->d += 1;
d                 254 ext/date/lib/tm2unixtime.c 			time->d += 2;
d                 262 ext/date/lib/tm2unixtime.c 				time->d += 2;
d                 264 ext/date/lib/tm2unixtime.c 				time->d += 1;
d                 267 ext/date/lib/tm2unixtime.c 			time->d -= 1;
d                 269 ext/date/lib/tm2unixtime.c 			time->d -= 2;
d                 273 ext/date/lib/tm2unixtime.c 	time->d += rem;
d                 294 ext/date/lib/tm2unixtime.c 				time->d = 1;
d                 299 ext/date/lib/tm2unixtime.c 				time->d = 1;
d                 307 ext/date/lib/tm2unixtime.c 			time->d = 1;
d                 310 ext/date/lib/tm2unixtime.c 			time->d = 0;
d                 450 ext/date/lib/tm2unixtime.c 	res += do_days(time->d);
d                 469 ext/date/lib/tm2unixtime.c 		time.y, time.m, time.d, time.h, time.i, time.s, time.f, time.z, time.dst);
d                 472 ext/date/lib/tm2unixtime.c 			time.relative.y, time.relative.m, time.relative.d, time.relative.h, time.relative.i, time.relative.s);
d                 129 ext/date/lib/unixtime2tm.c 	tm->d = tmp_days - months[i];
d                1051 ext/date/php_date.c char *php_date_full_day_name(timelib_sll y, timelib_sll m, timelib_sll d)
d                1053 ext/date/php_date.c 	timelib_sll day_of_week = timelib_day_of_week(y, m, d);
d                1060 ext/date/php_date.c char *php_date_short_day_name(timelib_sll y, timelib_sll m, timelib_sll d)
d                1062 ext/date/php_date.c 	timelib_sll day_of_week = timelib_day_of_week(y, m, d);
d                1111 ext/date/php_date.c 			case 'd': length = slprintf(buffer, 32, "%02d", (int) t->d); break;
d                1112 ext/date/php_date.c 			case 'D': length = slprintf(buffer, 32, "%s", php_date_short_day_name(t->y, t->m, t->d)); break;
d                1113 ext/date/php_date.c 			case 'j': length = slprintf(buffer, 32, "%d", (int) t->d); break;
d                1114 ext/date/php_date.c 			case 'l': length = slprintf(buffer, 32, "%s", php_date_full_day_name(t->y, t->m, t->d)); break;
d                1115 ext/date/php_date.c 			case 'S': length = slprintf(buffer, 32, "%s", english_suffix(t->d)); break;
d                1116 ext/date/php_date.c 			case 'w': length = slprintf(buffer, 32, "%d", (int) timelib_day_of_week(t->y, t->m, t->d)); break;
d                1117 ext/date/php_date.c 			case 'N': length = slprintf(buffer, 32, "%d", (int) timelib_iso_day_of_week(t->y, t->m, t->d)); break;
d                1118 ext/date/php_date.c 			case 'z': length = slprintf(buffer, 32, "%d", (int) timelib_day_of_year(t->y, t->m, t->d)); break;
d                1122 ext/date/php_date.c 				if(!weekYearSet) { timelib_isoweek_from_date(t->y, t->m, t->d, &isoweek, &isoyear); weekYearSet = 1; }
d                1125 ext/date/php_date.c 				if(!weekYearSet) { timelib_isoweek_from_date(t->y, t->m, t->d, &isoweek, &isoyear); weekYearSet = 1; }
d                1196 ext/date/php_date.c 							                (int) t->y, (int) t->m, (int) t->d,
d                1204 ext/date/php_date.c 							                php_date_short_day_name(t->y, t->m, t->d),
d                1205 ext/date/php_date.c 											(int) t->d, mon_short_names[t->m - 1],
d                1316 ext/date/php_date.c 	timelib_isoweek_from_date(t->y, t->m, t->d, &isoweek, &isoyear);
d                1320 ext/date/php_date.c 		case 'd': case 'j': retval = (int) t->d; break;
d                1322 ext/date/php_date.c 		case 'w': retval = (int) timelib_day_of_week(t->y, t->m, t->d); break;
d                1323 ext/date/php_date.c 		case 'z': retval = (int) timelib_day_of_year(t->y, t->m, t->d); break;
d                1529 ext/date/php_date.c 			now->d = day;
d                1586 ext/date/php_date.c 	zend_long m, d, y;
d                1588 ext/date/php_date.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &m, &d, &y) == FAILURE) {
d                1592 ext/date/php_date.c 	if (y < 1 || y > 32767 || !timelib_valid_date(y, m, d)) {
d                1637 ext/date/php_date.c 	ta.tm_mday  = ts->d;
d                1640 ext/date/php_date.c 	ta.tm_wday  = timelib_day_of_week(ts->y, ts->m, ts->d);
d                1641 ext/date/php_date.c 	ta.tm_yday  = timelib_day_of_year(ts->y, ts->m, ts->d);
d                1745 ext/date/php_date.c 		add_assoc_long(return_value, "tm_mday",  ts->d);
d                1748 ext/date/php_date.c 		add_assoc_long(return_value, "tm_wday",  timelib_day_of_week(ts->y, ts->m, ts->d));
d                1749 ext/date/php_date.c 		add_assoc_long(return_value, "tm_yday",  timelib_day_of_year(ts->y, ts->m, ts->d));
d                1755 ext/date/php_date.c 		add_next_index_long(return_value, ts->d);
d                1758 ext/date/php_date.c 		add_next_index_long(return_value, timelib_day_of_week(ts->y, ts->m, ts->d));
d                1759 ext/date/php_date.c 		add_next_index_long(return_value, timelib_day_of_year(ts->y, ts->m, ts->d));
d                1790 ext/date/php_date.c 	add_assoc_long(return_value, "mday", ts->d);
d                1791 ext/date/php_date.c 	add_assoc_long(return_value, "wday", timelib_day_of_week(ts->y, ts->m, ts->d));
d                1794 ext/date/php_date.c 	add_assoc_long(return_value, "yday", timelib_day_of_year(ts->y, ts->m, ts->d));
d                1795 ext/date/php_date.c 	add_assoc_string(return_value, "weekday", php_date_full_day_name(ts->y, ts->m, ts->d));
d                2362 ext/date/php_date.c 	PHP_DATE_INTERVAL_ADD_PROPERTY("d", d);
d                2881 ext/date/php_date.c 	PHP_DATE_PARSE_DATE_SET_TIME_ELEMENT(day,       d);
d                2924 ext/date/php_date.c 		add_assoc_long(&element, "day",    parsed_time->relative.d);
d                3034 ext/date/php_date.c 	if (tmp_time->d != -99999) {
d                3035 ext/date/php_date.c 		dateobj->time->d = tmp_time->d;
d                3400 ext/date/php_date.c static void php_date_date_set(zval *object, zend_long y, zend_long m, zend_long d, zval *return_value) /* {{{ */
d                3408 ext/date/php_date.c 	dateobj->time->d = d;
d                3418 ext/date/php_date.c 	zend_long  y, m, d;
d                3420 ext/date/php_date.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Olll", &object, date_ce_date, &y, &m, &d) == FAILURE) {
d                3424 ext/date/php_date.c 	php_date_date_set(object, y, m, d, return_value);
d                3436 ext/date/php_date.c 	zend_long  y, m, d;
d                3438 ext/date/php_date.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Olll", &object, date_ce_immutable, &y, &m, &d) == FAILURE) {
d                3443 ext/date/php_date.c 	php_date_date_set(&new_object, y, m, d, return_value);
d                3449 ext/date/php_date.c static void php_date_isodate_set(zval *object, zend_long y, zend_long w, zend_long d, zval *return_value) /* {{{ */
d                3457 ext/date/php_date.c 	dateobj->time->d = 1;
d                3459 ext/date/php_date.c 	dateobj->time->relative.d = timelib_daynr_from_weeknr(y, w, d);
d                3471 ext/date/php_date.c 	zend_long  y, w, d = 1;
d                3473 ext/date/php_date.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Oll|l", &object, date_ce_date, &y, &w, &d) == FAILURE) {
d                3477 ext/date/php_date.c 	php_date_isodate_set(object, y, w, d, return_value);
d                3489 ext/date/php_date.c 	zend_long  y, w, d = 1;
d                3491 ext/date/php_date.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Oll|l", &object, date_ce_immutable, &y, &w, &d) == FAILURE) {
d                3496 ext/date/php_date.c 	php_date_isodate_set(&new_object, y, w, d, return_value);
d                4000 ext/date/php_date.c 		GET_VALUE_FROM_STRUCT(d, "d");
d                4065 ext/date/php_date.c 		SET_VALUE_FROM_STRUCT(d, "d");
d                4135 ext/date/php_date.c 	PHP_DATE_INTERVAL_READ_PROPERTY("d", d, timelib_sll, -1)
d                4235 ext/date/php_date.c 				case 'D': length = slprintf(buffer, 32, "%02d", (int) t->d); break;
d                4236 ext/date/php_date.c 				case 'd': length = slprintf(buffer, 32, "%d", (int) t->d); break;
d                4297 ext/date/php_date.c static int date_period_initialize(timelib_time **st, timelib_time **et, timelib_rel_time **d, zend_long *recurrences, /*const*/ char *format, size_t format_length) /* {{{ */
d                4313 ext/date/php_date.c 		*d  = p;
d                 533 ext/enchant/enchant.c 	EnchantDict *d;
d                 549 ext/enchant/enchant.c 	d = enchant_broker_request_dict(pbroker->pbroker, (const char *)tag);
d                 550 ext/enchant/enchant.c 	if (d) {
d                 562 ext/enchant/enchant.c 		dict->pdict = d;
d                 581 ext/enchant/enchant.c 	EnchantDict *d;
d                 600 ext/enchant/enchant.c 	d = enchant_broker_request_pwl_dict(pbroker->pbroker, (const char *)pwl);
d                 601 ext/enchant/enchant.c 	if (d) {
d                 613 ext/enchant/enchant.c 		dict->pdict = d;
d                1346 ext/exif/exif.c 	double              d;
d                1772 ext/exif/exif.c 						info_value->d = *(double *)value;
d                2075 ext/exif/exif.c 										add_assoc_double(&tmpi, name, info_value->d);
d                2077 ext/exif/exif.c 										add_index_double(&array, ap, info_value->d);
d                2414 ext/exif/exif.c 					memmove(data_ptr, &info_value->d, 8);
d                1221 ext/fileinfo/libmagic/apprentice.c 	php_stream_dirent d;
d                1250 ext/fileinfo/libmagic/apprentice.c 		while (php_stream_readdir(dir, &d)) {
d                1251 ext/fileinfo/libmagic/apprentice.c 			if ((mflen = snprintf(mfn, sizeof(mfn), "%s/%s", fn, d.d_name)) < 0) {
d                1253 ext/fileinfo/libmagic/apprentice.c 				strlen(fn) + strlen(d.d_name) + 2);
d                2494 ext/fileinfo/libmagic/apprentice.c 			m->value.d = strtod(*p, &ep);
d                3126 ext/fileinfo/libmagic/apprentice.c 	uint8_t *d = (uint8_t *)(void *)&rv; 
d                3127 ext/fileinfo/libmagic/apprentice.c 	d[0] = s[1];
d                3128 ext/fileinfo/libmagic/apprentice.c 	d[1] = s[0];
d                3140 ext/fileinfo/libmagic/apprentice.c 	uint8_t *d = (uint8_t *)(void *)&rv; 
d                3141 ext/fileinfo/libmagic/apprentice.c 	d[0] = s[3];
d                3142 ext/fileinfo/libmagic/apprentice.c 	d[1] = s[2];
d                3143 ext/fileinfo/libmagic/apprentice.c 	d[2] = s[1];
d                3144 ext/fileinfo/libmagic/apprentice.c 	d[3] = s[0];
d                3156 ext/fileinfo/libmagic/apprentice.c 	uint8_t *d = (uint8_t *)(void *)&rv; 
d                3158 ext/fileinfo/libmagic/apprentice.c 	d[0] = s[3];
d                3159 ext/fileinfo/libmagic/apprentice.c 	d[1] = s[2];
d                3160 ext/fileinfo/libmagic/apprentice.c 	d[2] = s[1];
d                3161 ext/fileinfo/libmagic/apprentice.c 	d[3] = s[0];
d                3162 ext/fileinfo/libmagic/apprentice.c 	d[4] = s[7];
d                3163 ext/fileinfo/libmagic/apprentice.c 	d[5] = s[6];
d                3164 ext/fileinfo/libmagic/apprentice.c 	d[6] = s[5];
d                3165 ext/fileinfo/libmagic/apprentice.c 	d[7] = s[4];
d                3167 ext/fileinfo/libmagic/apprentice.c 	d[0] = s[7];
d                3168 ext/fileinfo/libmagic/apprentice.c 	d[1] = s[6];
d                3169 ext/fileinfo/libmagic/apprentice.c 	d[2] = s[5];
d                3170 ext/fileinfo/libmagic/apprentice.c 	d[3] = s[4];
d                3171 ext/fileinfo/libmagic/apprentice.c 	d[4] = s[3];
d                3172 ext/fileinfo/libmagic/apprentice.c 	d[5] = s[2];
d                3173 ext/fileinfo/libmagic/apprentice.c 	d[6] = s[1];
d                3174 ext/fileinfo/libmagic/apprentice.c 	d[7] = s[0];
d                 102 ext/fileinfo/libmagic/cdf.c 	uint8_t *d = (uint8_t *)(void *)&rv;
d                 103 ext/fileinfo/libmagic/cdf.c 	d[0] = s[1];
d                 104 ext/fileinfo/libmagic/cdf.c 	d[1] = s[0];
d                 116 ext/fileinfo/libmagic/cdf.c 	uint8_t *d = (uint8_t *)(void *)&rv;
d                 117 ext/fileinfo/libmagic/cdf.c 	d[0] = s[3];
d                 118 ext/fileinfo/libmagic/cdf.c 	d[1] = s[2];
d                 119 ext/fileinfo/libmagic/cdf.c 	d[2] = s[1];
d                 120 ext/fileinfo/libmagic/cdf.c 	d[3] = s[0];
d                 132 ext/fileinfo/libmagic/cdf.c 	uint8_t *d = (uint8_t *)(void *)&rv;
d                 133 ext/fileinfo/libmagic/cdf.c 	d[0] = s[7];
d                 134 ext/fileinfo/libmagic/cdf.c 	d[1] = s[6];
d                 135 ext/fileinfo/libmagic/cdf.c 	d[2] = s[5];
d                 136 ext/fileinfo/libmagic/cdf.c 	d[3] = s[4];
d                 137 ext/fileinfo/libmagic/cdf.c 	d[4] = s[3];
d                 138 ext/fileinfo/libmagic/cdf.c 	d[5] = s[2];
d                 139 ext/fileinfo/libmagic/cdf.c 	d[6] = s[1];
d                 140 ext/fileinfo/libmagic/cdf.c 	d[7] = s[0];
d                 235 ext/fileinfo/libmagic/cdf.c cdf_swap_dir(cdf_directory_t *d)
d                 237 ext/fileinfo/libmagic/cdf.c 	d->d_namelen = CDF_TOLE2(d->d_namelen);
d                 238 ext/fileinfo/libmagic/cdf.c 	d->d_left_child = CDF_TOLE4((uint32_t)d->d_left_child);
d                 239 ext/fileinfo/libmagic/cdf.c 	d->d_right_child = CDF_TOLE4((uint32_t)d->d_right_child);
d                 240 ext/fileinfo/libmagic/cdf.c 	d->d_storage = CDF_TOLE4((uint32_t)d->d_storage);
d                 241 ext/fileinfo/libmagic/cdf.c 	d->d_storage_uuid[0] = CDF_TOLE8(d->d_storage_uuid[0]);
d                 242 ext/fileinfo/libmagic/cdf.c 	d->d_storage_uuid[1] = CDF_TOLE8(d->d_storage_uuid[1]);
d                 243 ext/fileinfo/libmagic/cdf.c 	d->d_flags = CDF_TOLE4(d->d_flags);
d                 244 ext/fileinfo/libmagic/cdf.c 	d->d_created = CDF_TOLE8((uint64_t)d->d_created);
d                 245 ext/fileinfo/libmagic/cdf.c 	d->d_modified = CDF_TOLE8((uint64_t)d->d_modified);
d                 246 ext/fileinfo/libmagic/cdf.c 	d->d_stream_first_sector = CDF_TOLE4((uint32_t)d->d_stream_first_sector);
d                 247 ext/fileinfo/libmagic/cdf.c 	d->d_size = CDF_TOLE4(d->d_size);
d                 251 ext/fileinfo/libmagic/cdf.c cdf_swap_class(cdf_classid_t *d)
d                 253 ext/fileinfo/libmagic/cdf.c 	d->cl_dword = CDF_TOLE4(d->cl_dword);
d                 254 ext/fileinfo/libmagic/cdf.c 	d->cl_word[0] = CDF_TOLE2(d->cl_word[0]);
d                 255 ext/fileinfo/libmagic/cdf.c 	d->cl_word[1] = CDF_TOLE2(d->cl_word[1]);
d                 259 ext/fileinfo/libmagic/cdf.c cdf_unpack_dir(cdf_directory_t *d, char *buf)
d                 263 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACKA(d->d_name);
d                 264 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(d->d_namelen);
d                 265 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(d->d_type);
d                 266 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(d->d_color);
d                 267 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(d->d_left_child);
d                 268 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(d->d_right_child);
d                 269 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(d->d_storage);
d                 270 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACKA(d->d_storage_uuid);
d                 271 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(d->d_flags);
d                 272 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(d->d_created);
d                 273 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(d->d_modified);
d                 274 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(d->d_stream_first_sector);
d                 275 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(d->d_size);
d                 276 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(d->d_unused0);
d                 714 ext/fileinfo/libmagic/cdf.c 	const cdf_directory_t *d;
d                 724 ext/fileinfo/libmagic/cdf.c 	d = &dir->dir_tab[i];
d                 725 ext/fileinfo/libmagic/cdf.c 	*root = d;
d                 728 ext/fileinfo/libmagic/cdf.c 	if (d->d_stream_first_sector < 0)
d                 732 ext/fileinfo/libmagic/cdf.c 	    d->d_stream_first_sector, d->d_size, scn);
d                 741 ext/fileinfo/libmagic/cdf.c cdf_namecmp(const char *d, const uint16_t *s, size_t l)
d                 743 ext/fileinfo/libmagic/cdf.c 	for (; l--; d++, s++)
d                 744 ext/fileinfo/libmagic/cdf.c 		if (*d != CDF_TOLE2(*s))
d                 745 ext/fileinfo/libmagic/cdf.c 			return (unsigned char)*d - CDF_TOLE2(*s);
d                 763 ext/fileinfo/libmagic/cdf.c 	const cdf_directory_t *d;
d                 769 ext/fileinfo/libmagic/cdf.c 	d = &dir->dir_tab[i - 1];
d                 771 ext/fileinfo/libmagic/cdf.c 	    d->d_stream_first_sector, d->d_size, scn);
d                1267 ext/fileinfo/libmagic/cdf.c 	cdf_directory_t *d;
d                1268 ext/fileinfo/libmagic/cdf.c 	char name[__arraycount(d->d_name)];
d                1277 ext/fileinfo/libmagic/cdf.c 		d = &dir->dir_tab[i];
d                1279 ext/fileinfo/libmagic/cdf.c 			name[j] = (char)CDF_TOLE2(d->d_name[j]);
d                1282 ext/fileinfo/libmagic/cdf.c 		if (d->d_type < __arraycount(types))
d                1283 ext/fileinfo/libmagic/cdf.c 			(void)fprintf(stderr, "Type: %s\n", types[d->d_type]);
d                1285 ext/fileinfo/libmagic/cdf.c 			(void)fprintf(stderr, "Type: %d\n", d->d_type);
d                1287 ext/fileinfo/libmagic/cdf.c 		    d->d_color ? "black" : "red");
d                1288 ext/fileinfo/libmagic/cdf.c 		(void)fprintf(stderr, "Left child: %d\n", d->d_left_child);
d                1289 ext/fileinfo/libmagic/cdf.c 		(void)fprintf(stderr, "Right child: %d\n", d->d_right_child);
d                1290 ext/fileinfo/libmagic/cdf.c 		(void)fprintf(stderr, "Flags: 0x%x\n", d->d_flags);
d                1291 ext/fileinfo/libmagic/cdf.c 		cdf_timestamp_to_timespec(&ts, d->d_created);
d                1293 ext/fileinfo/libmagic/cdf.c 		cdf_timestamp_to_timespec(&ts, d->d_modified);
d                1296 ext/fileinfo/libmagic/cdf.c 		(void)fprintf(stderr, "Stream %d\n", d->d_stream_first_sector);
d                1297 ext/fileinfo/libmagic/cdf.c 		(void)fprintf(stderr, "Size %d\n", d->d_size);
d                1298 ext/fileinfo/libmagic/cdf.c 		switch (d->d_type) {
d                1300 ext/fileinfo/libmagic/cdf.c 			(void)fprintf(stderr, "Storage: %d\n", d->d_storage);
d                1306 ext/fileinfo/libmagic/cdf.c 			    d->d_stream_first_sector, d->d_size, &scn) == -1) {
d                1308 ext/fileinfo/libmagic/cdf.c 				    name, d->d_stream_first_sector, d->d_size);
d                 157 ext/fileinfo/libmagic/file.h 	double d;
d                 554 ext/fileinfo/libmagic/readcdf.c 		cdf_directory_t *d;
d                 555 ext/fileinfo/libmagic/readcdf.c 		char name[__arraycount(d->d_name)];
d                 559 ext/fileinfo/libmagic/readcdf.c 			d = &dir.dir_tab[j];
d                 561 ext/fileinfo/libmagic/readcdf.c 				name[k] = (char)cdf_tole2(d->d_name[k]);
d                 610 ext/fileinfo/libmagic/softmagic.c 		vd = p->d;
d                 906 ext/fileinfo/libmagic/softmagic.c 	DO_CVT2(d, (double));
d                1929 ext/fileinfo/libmagic/softmagic.c 		dl = m->value.d;
d                1930 ext/fileinfo/libmagic/softmagic.c 		dv = p->d;
d                1093 ext/gd/libgd/gd.c 	int dx, dy, incr1, incr2, d, x, y, xend, yend, xdirflag, ydirflag;
d                1142 ext/gd/libgd/gd.c 		d = 2 * dy - dx;
d                1166 ext/gd/libgd/gd.c 				if (d < 0) {
d                1167 ext/gd/libgd/gd.c 					d += incr1;
d                1170 ext/gd/libgd/gd.c 					d += incr2;
d                1180 ext/gd/libgd/gd.c 				if (d < 0) {
d                1181 ext/gd/libgd/gd.c 					d += incr1;
d                1184 ext/gd/libgd/gd.c 					d += incr2;
d                1206 ext/gd/libgd/gd.c 		d = 2 * dx - dy;
d                1230 ext/gd/libgd/gd.c 				if (d < 0) {
d                1231 ext/gd/libgd/gd.c 					d += incr1;
d                1234 ext/gd/libgd/gd.c 					d += incr2;
d                1244 ext/gd/libgd/gd.c 				if (d < 0) {
d                1245 ext/gd/libgd/gd.c 					d += incr1;
d                1248 ext/gd/libgd/gd.c 					d += incr2;
d                1400 ext/gd/libgd/gd.c 	int dx, dy, incr1, incr2, d, x, y, xend, yend, xdirflag, ydirflag;
d                1422 ext/gd/libgd/gd.c 		d = 2 * dy - dx;
d                1440 ext/gd/libgd/gd.c 				if (d < 0) {
d                1441 ext/gd/libgd/gd.c 					d += incr1;
d                1444 ext/gd/libgd/gd.c 					d += incr2;
d                1451 ext/gd/libgd/gd.c 				if (d < 0) {
d                1452 ext/gd/libgd/gd.c 					d += incr1;
d                1455 ext/gd/libgd/gd.c 					d += incr2;
d                1471 ext/gd/libgd/gd.c 		d = 2 * dx - dy;
d                1489 ext/gd/libgd/gd.c 				if (d < 0) {
d                1490 ext/gd/libgd/gd.c 					d += incr1;
d                1493 ext/gd/libgd/gd.c 					d += incr2;
d                1500 ext/gd/libgd/gd.c 				if (d < 0) {
d                1501 ext/gd/libgd/gd.c 					d += incr1;
d                1504 ext/gd/libgd/gd.c 					d += incr2;
d                 531 ext/gd/libgd/gd_interpolation.c 		double a, b, c, d;
d                 540 ext/gd/libgd/gd_interpolation.c 		if ((xm1) <= 0.0f) d = 0.0f; else d = xm1*xm1*xm1;
d                 542 ext/gd/libgd/gd_interpolation.c 		return (0.16666666666666666667f * (a - (4.0f * b) + (6.0f * c) - (4.0f * d)));
d                 243 ext/hash/hash_md.c #define FF(a, b, c, d, x, s, ac) { \
d                 244 ext/hash/hash_md.c  (a) += F ((b), (c), (d)) + (x) + (php_hash_uint32)(ac); \
d                 248 ext/hash/hash_md.c #define GG(a, b, c, d, x, s, ac) { \
d                 249 ext/hash/hash_md.c  (a) += G ((b), (c), (d)) + (x) + (php_hash_uint32)(ac); \
d                 253 ext/hash/hash_md.c #define HH(a, b, c, d, x, s, ac) { \
d                 254 ext/hash/hash_md.c  (a) += H ((b), (c), (d)) + (x) + (php_hash_uint32)(ac); \
d                 258 ext/hash/hash_md.c #define II(a, b, c, d, x, s, ac) { \
d                 259 ext/hash/hash_md.c  (a) += I ((b), (c), (d)) + (x) + (php_hash_uint32)(ac); \
d                 358 ext/hash/hash_md.c 	php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
d                 363 ext/hash/hash_md.c 	FF(a, b, c, d, x[0], S11, 0xd76aa478);	/* 1 */
d                 364 ext/hash/hash_md.c 	FF(d, a, b, c, x[1], S12, 0xe8c7b756);	/* 2 */
d                 365 ext/hash/hash_md.c 	FF(c, d, a, b, x[2], S13, 0x242070db);	/* 3 */
d                 366 ext/hash/hash_md.c 	FF(b, c, d, a, x[3], S14, 0xc1bdceee);	/* 4 */
d                 367 ext/hash/hash_md.c 	FF(a, b, c, d, x[4], S11, 0xf57c0faf);	/* 5 */
d                 368 ext/hash/hash_md.c 	FF(d, a, b, c, x[5], S12, 0x4787c62a);	/* 6 */
d                 369 ext/hash/hash_md.c 	FF(c, d, a, b, x[6], S13, 0xa8304613);	/* 7 */
d                 370 ext/hash/hash_md.c 	FF(b, c, d, a, x[7], S14, 0xfd469501);	/* 8 */
d                 371 ext/hash/hash_md.c 	FF(a, b, c, d, x[8], S11, 0x698098d8);	/* 9 */
d                 372 ext/hash/hash_md.c 	FF(d, a, b, c, x[9], S12, 0x8b44f7af);	/* 10 */
d                 373 ext/hash/hash_md.c 	FF(c, d, a, b, x[10], S13, 0xffff5bb1);		/* 11 */
d                 374 ext/hash/hash_md.c 	FF(b, c, d, a, x[11], S14, 0x895cd7be);		/* 12 */
d                 375 ext/hash/hash_md.c 	FF(a, b, c, d, x[12], S11, 0x6b901122);		/* 13 */
d                 376 ext/hash/hash_md.c 	FF(d, a, b, c, x[13], S12, 0xfd987193);		/* 14 */
d                 377 ext/hash/hash_md.c 	FF(c, d, a, b, x[14], S13, 0xa679438e);		/* 15 */
d                 378 ext/hash/hash_md.c 	FF(b, c, d, a, x[15], S14, 0x49b40821);		/* 16 */
d                 381 ext/hash/hash_md.c 	GG(a, b, c, d, x[1], S21, 0xf61e2562);	/* 17 */
d                 382 ext/hash/hash_md.c 	GG(d, a, b, c, x[6], S22, 0xc040b340);	/* 18 */
d                 383 ext/hash/hash_md.c 	GG(c, d, a, b, x[11], S23, 0x265e5a51);		/* 19 */
d                 384 ext/hash/hash_md.c 	GG(b, c, d, a, x[0], S24, 0xe9b6c7aa);	/* 20 */
d                 385 ext/hash/hash_md.c 	GG(a, b, c, d, x[5], S21, 0xd62f105d);	/* 21 */
d                 386 ext/hash/hash_md.c 	GG(d, a, b, c, x[10], S22, 0x2441453);	/* 22 */
d                 387 ext/hash/hash_md.c 	GG(c, d, a, b, x[15], S23, 0xd8a1e681);		/* 23 */
d                 388 ext/hash/hash_md.c 	GG(b, c, d, a, x[4], S24, 0xe7d3fbc8);	/* 24 */
d                 389 ext/hash/hash_md.c 	GG(a, b, c, d, x[9], S21, 0x21e1cde6);	/* 25 */
d                 390 ext/hash/hash_md.c 	GG(d, a, b, c, x[14], S22, 0xc33707d6);		/* 26 */
d                 391 ext/hash/hash_md.c 	GG(c, d, a, b, x[3], S23, 0xf4d50d87);	/* 27 */
d                 392 ext/hash/hash_md.c 	GG(b, c, d, a, x[8], S24, 0x455a14ed);	/* 28 */
d                 393 ext/hash/hash_md.c 	GG(a, b, c, d, x[13], S21, 0xa9e3e905);		/* 29 */
d                 394 ext/hash/hash_md.c 	GG(d, a, b, c, x[2], S22, 0xfcefa3f8);	/* 30 */
d                 395 ext/hash/hash_md.c 	GG(c, d, a, b, x[7], S23, 0x676f02d9);	/* 31 */
d                 396 ext/hash/hash_md.c 	GG(b, c, d, a, x[12], S24, 0x8d2a4c8a);		/* 32 */
d                 399 ext/hash/hash_md.c 	HH(a, b, c, d, x[5], S31, 0xfffa3942);	/* 33 */
d                 400 ext/hash/hash_md.c 	HH(d, a, b, c, x[8], S32, 0x8771f681);	/* 34 */
d                 401 ext/hash/hash_md.c 	HH(c, d, a, b, x[11], S33, 0x6d9d6122);		/* 35 */
d                 402 ext/hash/hash_md.c 	HH(b, c, d, a, x[14], S34, 0xfde5380c);		/* 36 */
d                 403 ext/hash/hash_md.c 	HH(a, b, c, d, x[1], S31, 0xa4beea44);	/* 37 */
d                 404 ext/hash/hash_md.c 	HH(d, a, b, c, x[4], S32, 0x4bdecfa9);	/* 38 */
d                 405 ext/hash/hash_md.c 	HH(c, d, a, b, x[7], S33, 0xf6bb4b60);	/* 39 */
d                 406 ext/hash/hash_md.c 	HH(b, c, d, a, x[10], S34, 0xbebfbc70);		/* 40 */
d                 407 ext/hash/hash_md.c 	HH(a, b, c, d, x[13], S31, 0x289b7ec6);		/* 41 */
d                 408 ext/hash/hash_md.c 	HH(d, a, b, c, x[0], S32, 0xeaa127fa);	/* 42 */
d                 409 ext/hash/hash_md.c 	HH(c, d, a, b, x[3], S33, 0xd4ef3085);	/* 43 */
d                 410 ext/hash/hash_md.c 	HH(b, c, d, a, x[6], S34, 0x4881d05);	/* 44 */
d                 411 ext/hash/hash_md.c 	HH(a, b, c, d, x[9], S31, 0xd9d4d039);	/* 45 */
d                 412 ext/hash/hash_md.c 	HH(d, a, b, c, x[12], S32, 0xe6db99e5);		/* 46 */
d                 413 ext/hash/hash_md.c 	HH(c, d, a, b, x[15], S33, 0x1fa27cf8);		/* 47 */
d                 414 ext/hash/hash_md.c 	HH(b, c, d, a, x[2], S34, 0xc4ac5665);	/* 48 */
d                 417 ext/hash/hash_md.c 	II(a, b, c, d, x[0], S41, 0xf4292244);	/* 49 */
d                 418 ext/hash/hash_md.c 	II(d, a, b, c, x[7], S42, 0x432aff97);	/* 50 */
d                 419 ext/hash/hash_md.c 	II(c, d, a, b, x[14], S43, 0xab9423a7);		/* 51 */
d                 420 ext/hash/hash_md.c 	II(b, c, d, a, x[5], S44, 0xfc93a039);	/* 52 */
d                 421 ext/hash/hash_md.c 	II(a, b, c, d, x[12], S41, 0x655b59c3);		/* 53 */
d                 422 ext/hash/hash_md.c 	II(d, a, b, c, x[3], S42, 0x8f0ccc92);	/* 54 */
d                 423 ext/hash/hash_md.c 	II(c, d, a, b, x[10], S43, 0xffeff47d);		/* 55 */
d                 424 ext/hash/hash_md.c 	II(b, c, d, a, x[1], S44, 0x85845dd1);	/* 56 */
d                 425 ext/hash/hash_md.c 	II(a, b, c, d, x[8], S41, 0x6fa87e4f);	/* 57 */
d                 426 ext/hash/hash_md.c 	II(d, a, b, c, x[15], S42, 0xfe2ce6e0);		/* 58 */
d                 427 ext/hash/hash_md.c 	II(c, d, a, b, x[6], S43, 0xa3014314);	/* 59 */
d                 428 ext/hash/hash_md.c 	II(b, c, d, a, x[13], S44, 0x4e0811a1);		/* 60 */
d                 429 ext/hash/hash_md.c 	II(a, b, c, d, x[4], S41, 0xf7537e82);	/* 61 */
d                 430 ext/hash/hash_md.c 	II(d, a, b, c, x[11], S42, 0xbd3af235);		/* 62 */
d                 431 ext/hash/hash_md.c 	II(c, d, a, b, x[2], S43, 0x2ad7d2bb);	/* 63 */
d                 432 ext/hash/hash_md.c 	II(b, c, d, a, x[9], S44, 0xeb86d391);	/* 64 */
d                 437 ext/hash/hash_md.c 	state[3] += d;
d                 454 ext/hash/hash_md.c #define MD4_R1(a,b,c,d,k,s)		a = ROTL32(s, a + MD4_F(b,c,d) + x[k])
d                 455 ext/hash/hash_md.c #define MD4_R2(a,b,c,d,k,s)		a = ROTL32(s, a + MD4_G(b,c,d) + x[k] + 0x5A827999)
d                 456 ext/hash/hash_md.c #define MD4_R3(a,b,c,d,k,s)		a = ROTL32(s, a + MD4_H(b,c,d) + x[k] + 0x6ED9EBA1)
d                 460 ext/hash/hash_md.c 	php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
d                 465 ext/hash/hash_md.c 	MD4_R1(a,b,c,d, 0, 3);
d                 466 ext/hash/hash_md.c 	MD4_R1(d,a,b,c, 1, 7);
d                 467 ext/hash/hash_md.c 	MD4_R1(c,d,a,b, 2,11);
d                 468 ext/hash/hash_md.c 	MD4_R1(b,c,d,a, 3,19);
d                 469 ext/hash/hash_md.c 	MD4_R1(a,b,c,d, 4, 3);
d                 470 ext/hash/hash_md.c 	MD4_R1(d,a,b,c, 5, 7);
d                 471 ext/hash/hash_md.c 	MD4_R1(c,d,a,b, 6,11);
d                 472 ext/hash/hash_md.c 	MD4_R1(b,c,d,a, 7,19);
d                 473 ext/hash/hash_md.c 	MD4_R1(a,b,c,d, 8, 3);
d                 474 ext/hash/hash_md.c 	MD4_R1(d,a,b,c, 9, 7);
d                 475 ext/hash/hash_md.c 	MD4_R1(c,d,a,b,10,11);
d                 476 ext/hash/hash_md.c 	MD4_R1(b,c,d,a,11,19);
d                 477 ext/hash/hash_md.c 	MD4_R1(a,b,c,d,12, 3);
d                 478 ext/hash/hash_md.c 	MD4_R1(d,a,b,c,13, 7);
d                 479 ext/hash/hash_md.c 	MD4_R1(c,d,a,b,14,11);
d                 480 ext/hash/hash_md.c 	MD4_R1(b,c,d,a,15,19);
d                 483 ext/hash/hash_md.c 	MD4_R2(a,b,c,d, 0, 3);
d                 484 ext/hash/hash_md.c 	MD4_R2(d,a,b,c, 4, 5);
d                 485 ext/hash/hash_md.c 	MD4_R2(c,d,a,b, 8, 9);
d                 486 ext/hash/hash_md.c 	MD4_R2(b,c,d,a,12,13);
d                 487 ext/hash/hash_md.c 	MD4_R2(a,b,c,d, 1, 3);
d                 488 ext/hash/hash_md.c 	MD4_R2(d,a,b,c, 5, 5);
d                 489 ext/hash/hash_md.c 	MD4_R2(c,d,a,b, 9, 9);
d                 490 ext/hash/hash_md.c 	MD4_R2(b,c,d,a,13,13);
d                 491 ext/hash/hash_md.c 	MD4_R2(a,b,c,d, 2, 3);
d                 492 ext/hash/hash_md.c 	MD4_R2(d,a,b,c, 6, 5);
d                 493 ext/hash/hash_md.c 	MD4_R2(c,d,a,b,10, 9);
d                 494 ext/hash/hash_md.c 	MD4_R2(b,c,d,a,14,13);
d                 495 ext/hash/hash_md.c 	MD4_R2(a,b,c,d, 3, 3);
d                 496 ext/hash/hash_md.c 	MD4_R2(d,a,b,c, 7, 5);
d                 497 ext/hash/hash_md.c 	MD4_R2(c,d,a,b,11, 9);
d                 498 ext/hash/hash_md.c 	MD4_R2(b,c,d,a,15,13);
d                 501 ext/hash/hash_md.c 	MD4_R3(a,b,c,d, 0, 3);
d                 502 ext/hash/hash_md.c 	MD4_R3(d,a,b,c, 8, 9);
d                 503 ext/hash/hash_md.c 	MD4_R3(c,d,a,b, 4,11);
d                 504 ext/hash/hash_md.c 	MD4_R3(b,c,d,a,12,15);
d                 505 ext/hash/hash_md.c 	MD4_R3(a,b,c,d, 2, 3);
d                 506 ext/hash/hash_md.c 	MD4_R3(d,a,b,c,10, 9);
d                 507 ext/hash/hash_md.c 	MD4_R3(c,d,a,b, 6,11);
d                 508 ext/hash/hash_md.c 	MD4_R3(b,c,d,a,14,15);
d                 509 ext/hash/hash_md.c 	MD4_R3(a,b,c,d, 1, 3);
d                 510 ext/hash/hash_md.c 	MD4_R3(d,a,b,c, 9, 9);
d                 511 ext/hash/hash_md.c 	MD4_R3(c,d,a,b, 5,11);
d                 512 ext/hash/hash_md.c 	MD4_R3(b,c,d,a,13,15);
d                 513 ext/hash/hash_md.c 	MD4_R3(a,b,c,d, 3, 3);
d                 514 ext/hash/hash_md.c 	MD4_R3(d,a,b,c,11, 9);
d                 515 ext/hash/hash_md.c 	MD4_R3(c,d,a,b, 7,11);
d                 516 ext/hash/hash_md.c 	MD4_R3(b,c,d,a,15,15);
d                 521 ext/hash/hash_md.c 	state[3] += d;
d                 205 ext/hash/hash_ripemd.c 	php_hash_uint32 a  = state[0], b  = state[1], c  = state[2], d  = state[3];
d                 213 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F0(b,  c,  d)  + x[R[j]]  + K(j));
d                 214 ext/hash/hash_ripemd.c 		a = d; d = c; c = b; b = tmp;
d                 220 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F1(b,  c,  d)  + x[R[j]]  + K(j));
d                 221 ext/hash/hash_ripemd.c 		a = d; d = c; c = b; b = tmp;
d                 227 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F2(b,  c,  d)  + x[R[j]]  + K(j));
d                 228 ext/hash/hash_ripemd.c 		a = d; d = c; c = b; b = tmp;
d                 234 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F3(b,  c,  d)  + x[R[j]]  + K(j));
d                 235 ext/hash/hash_ripemd.c 		a = d; d = c; c = b; b = tmp;
d                 241 ext/hash/hash_ripemd.c 	state[1] = state[2] + d + aa;
d                 296 ext/hash/hash_ripemd.c 	php_hash_uint32 a  = state[0], b  = state[1], c  = state[2], d  = state[3];
d                 304 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F0(b,  c,  d)  + x[R[j]]  + K(j));
d                 305 ext/hash/hash_ripemd.c 		a = d; d = c; c = b; b = tmp;
d                 312 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F1(b,  c,  d)  + x[R[j]]  + K(j));
d                 313 ext/hash/hash_ripemd.c 		a = d; d = c; c = b; b = tmp;
d                 320 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F2(b,  c,  d)  + x[R[j]]  + K(j));
d                 321 ext/hash/hash_ripemd.c 		a = d; d = c; c = b; b = tmp;
d                 328 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F3(b,  c,  d)  + x[R[j]]  + K(j));
d                 329 ext/hash/hash_ripemd.c 		a = d; d = c; c = b; b = tmp;
d                 333 ext/hash/hash_ripemd.c 	tmp = d; d = dd; dd = tmp;
d                 338 ext/hash/hash_ripemd.c 	state[3] += d;
d                 394 ext/hash/hash_ripemd.c 	php_hash_uint32 a  = state[0], b  = state[1], c  = state[2], d  = state[3], e  = state[4];
d                 402 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F0(b,  c,  d)  + x[R[j]]  + K(j)) + e;
d                 403 ext/hash/hash_ripemd.c 		a = e; e = d; d = ROL(10, c); c = b; b = tmp;
d                 409 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F1(b,  c,  d)  + x[R[j]]  + K(j)) + e;
d                 410 ext/hash/hash_ripemd.c 		a = e; e = d; d = ROL(10, c); c = b; b = tmp;
d                 416 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F2(b,  c,  d)  + x[R[j]]  + K(j)) + e;
d                 417 ext/hash/hash_ripemd.c 		a = e; e = d; d = ROL(10, c); c = b; b = tmp;
d                 423 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F3(b,  c,  d)  + x[R[j]]  + K(j)) + e;
d                 424 ext/hash/hash_ripemd.c 		a = e; e = d; d = ROL(10, c); c = b; b = tmp;
d                 430 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F4(b,  c,  d)  + x[R[j]]  + K(j)) + e;
d                 431 ext/hash/hash_ripemd.c 		a = e; e = d; d = ROL(10, c); c = b; b = tmp;
d                 437 ext/hash/hash_ripemd.c 	state[1] = state[2] + d + ee;
d                 493 ext/hash/hash_ripemd.c 	php_hash_uint32 a  = state[0], b  = state[1], c  = state[2], d  = state[3], e  = state[4];
d                 501 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F0(b,  c,  d)  + x[R[j]]  + K(j)) + e;
d                 502 ext/hash/hash_ripemd.c 		a = e; e = d; d = ROL(10, c); c = b; b = tmp;
d                 509 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F1(b,  c,  d)  + x[R[j]]  + K(j)) + e;
d                 510 ext/hash/hash_ripemd.c 		a = e; e = d; d = ROL(10, c); c = b; b = tmp;
d                 514 ext/hash/hash_ripemd.c 	tmp = d; d = dd; dd = tmp;
d                 517 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F2(b,  c,  d)  + x[R[j]]  + K(j)) + e;
d                 518 ext/hash/hash_ripemd.c 		a = e; e = d; d = ROL(10, c); c = b; b = tmp;
d                 525 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F3(b,  c,  d)  + x[R[j]]  + K(j)) + e;
d                 526 ext/hash/hash_ripemd.c 		a = e; e = d; d = ROL(10, c); c = b; b = tmp;
d                 533 ext/hash/hash_ripemd.c 		tmp = ROLS( j, a  + F4(b,  c,  d)  + x[R[j]]  + K(j)) + e;
d                 534 ext/hash/hash_ripemd.c 		a = e; e = d; d = ROL(10, c); c = b; b = tmp;
d                 543 ext/hash/hash_ripemd.c 	state[3] += d;
d                 181 ext/hash/hash_sha.c #define FF(a, b, c, d, e, w) { \
d                 182 ext/hash/hash_sha.c  (e) += F ((b), (c), (d)) + (w) + (php_hash_uint32)(0x5A827999); \
d                 186 ext/hash/hash_sha.c #define GG(a, b, c, d, e, w) { \
d                 187 ext/hash/hash_sha.c  (e) += G ((b), (c), (d)) + (w) + (php_hash_uint32)(0x6ED9EBA1); \
d                 191 ext/hash/hash_sha.c #define HH(a, b, c, d, e, w) { \
d                 192 ext/hash/hash_sha.c  (e) += H ((b), (c), (d)) + (w) + (php_hash_uint32)(0x8F1BBCDC); \
d                 196 ext/hash/hash_sha.c #define II(a, b, c, d, e, w) { \
d                 197 ext/hash/hash_sha.c  (e) += I ((b), (c), (d)) + (w) + (php_hash_uint32)(0xCA62C1D6); \
d                 225 ext/hash/hash_sha.c 	php_hash_uint32 d = state[3], e = state[4], x[16], tmp;
d                 230 ext/hash/hash_sha.c 	FF(a, b, c, d, e, x[0]);   /* 1 */
d                 231 ext/hash/hash_sha.c 	FF(e, a, b, c, d, x[1]);   /* 2 */
d                 232 ext/hash/hash_sha.c 	FF(d, e, a, b, c, x[2]);   /* 3 */
d                 233 ext/hash/hash_sha.c 	FF(c, d, e, a, b, x[3]);   /* 4 */
d                 234 ext/hash/hash_sha.c 	FF(b, c, d, e, a, x[4]);   /* 5 */
d                 235 ext/hash/hash_sha.c 	FF(a, b, c, d, e, x[5]);   /* 6 */
d                 236 ext/hash/hash_sha.c 	FF(e, a, b, c, d, x[6]);   /* 7 */
d                 237 ext/hash/hash_sha.c 	FF(d, e, a, b, c, x[7]);   /* 8 */
d                 238 ext/hash/hash_sha.c 	FF(c, d, e, a, b, x[8]);   /* 9 */
d                 239 ext/hash/hash_sha.c 	FF(b, c, d, e, a, x[9]);   /* 10 */
d                 240 ext/hash/hash_sha.c 	FF(a, b, c, d, e, x[10]);  /* 11 */
d                 241 ext/hash/hash_sha.c 	FF(e, a, b, c, d, x[11]);  /* 12 */
d                 242 ext/hash/hash_sha.c 	FF(d, e, a, b, c, x[12]);  /* 13 */
d                 243 ext/hash/hash_sha.c 	FF(c, d, e, a, b, x[13]);  /* 14 */
d                 244 ext/hash/hash_sha.c 	FF(b, c, d, e, a, x[14]);  /* 15 */
d                 245 ext/hash/hash_sha.c 	FF(a, b, c, d, e, x[15]);  /* 16 */
d                 246 ext/hash/hash_sha.c 	FF(e, a, b, c, d, W(16));  /* 17 */
d                 247 ext/hash/hash_sha.c 	FF(d, e, a, b, c, W(17));  /* 18 */
d                 248 ext/hash/hash_sha.c 	FF(c, d, e, a, b, W(18));  /* 19 */
d                 249 ext/hash/hash_sha.c 	FF(b, c, d, e, a, W(19));  /* 20 */
d                 252 ext/hash/hash_sha.c 	GG(a, b, c, d, e, W(20));  /* 21 */
d                 253 ext/hash/hash_sha.c 	GG(e, a, b, c, d, W(21));  /* 22 */
d                 254 ext/hash/hash_sha.c 	GG(d, e, a, b, c, W(22));  /* 23 */
d                 255 ext/hash/hash_sha.c 	GG(c, d, e, a, b, W(23));  /* 24 */
d                 256 ext/hash/hash_sha.c 	GG(b, c, d, e, a, W(24));  /* 25 */
d                 257 ext/hash/hash_sha.c 	GG(a, b, c, d, e, W(25));  /* 26 */
d                 258 ext/hash/hash_sha.c 	GG(e, a, b, c, d, W(26));  /* 27 */
d                 259 ext/hash/hash_sha.c 	GG(d, e, a, b, c, W(27));  /* 28 */
d                 260 ext/hash/hash_sha.c 	GG(c, d, e, a, b, W(28));  /* 29 */
d                 261 ext/hash/hash_sha.c 	GG(b, c, d, e, a, W(29));  /* 30 */
d                 262 ext/hash/hash_sha.c 	GG(a, b, c, d, e, W(30));  /* 31 */
d                 263 ext/hash/hash_sha.c 	GG(e, a, b, c, d, W(31));  /* 32 */
d                 264 ext/hash/hash_sha.c 	GG(d, e, a, b, c, W(32));  /* 33 */
d                 265 ext/hash/hash_sha.c 	GG(c, d, e, a, b, W(33));  /* 34 */
d                 266 ext/hash/hash_sha.c 	GG(b, c, d, e, a, W(34));  /* 35 */
d                 267 ext/hash/hash_sha.c 	GG(a, b, c, d, e, W(35));  /* 36 */
d                 268 ext/hash/hash_sha.c 	GG(e, a, b, c, d, W(36));  /* 37 */
d                 269 ext/hash/hash_sha.c 	GG(d, e, a, b, c, W(37));  /* 38 */
d                 270 ext/hash/hash_sha.c 	GG(c, d, e, a, b, W(38));  /* 39 */
d                 271 ext/hash/hash_sha.c 	GG(b, c, d, e, a, W(39));  /* 40 */
d                 274 ext/hash/hash_sha.c 	HH(a, b, c, d, e, W(40));  /* 41 */
d                 275 ext/hash/hash_sha.c 	HH(e, a, b, c, d, W(41));  /* 42 */
d                 276 ext/hash/hash_sha.c 	HH(d, e, a, b, c, W(42));  /* 43 */
d                 277 ext/hash/hash_sha.c 	HH(c, d, e, a, b, W(43));  /* 44 */
d                 278 ext/hash/hash_sha.c 	HH(b, c, d, e, a, W(44));  /* 45 */
d                 279 ext/hash/hash_sha.c 	HH(a, b, c, d, e, W(45));  /* 46 */
d                 280 ext/hash/hash_sha.c 	HH(e, a, b, c, d, W(46));  /* 47 */
d                 281 ext/hash/hash_sha.c 	HH(d, e, a, b, c, W(47));  /* 48 */
d                 282 ext/hash/hash_sha.c 	HH(c, d, e, a, b, W(48));  /* 49 */
d                 283 ext/hash/hash_sha.c 	HH(b, c, d, e, a, W(49));  /* 50 */
d                 284 ext/hash/hash_sha.c 	HH(a, b, c, d, e, W(50));  /* 51 */
d                 285 ext/hash/hash_sha.c 	HH(e, a, b, c, d, W(51));  /* 52 */
d                 286 ext/hash/hash_sha.c 	HH(d, e, a, b, c, W(52));  /* 53 */
d                 287 ext/hash/hash_sha.c 	HH(c, d, e, a, b, W(53));  /* 54 */
d                 288 ext/hash/hash_sha.c 	HH(b, c, d, e, a, W(54));  /* 55 */
d                 289 ext/hash/hash_sha.c 	HH(a, b, c, d, e, W(55));  /* 56 */
d                 290 ext/hash/hash_sha.c 	HH(e, a, b, c, d, W(56));  /* 57 */
d                 291 ext/hash/hash_sha.c 	HH(d, e, a, b, c, W(57));  /* 58 */
d                 292 ext/hash/hash_sha.c 	HH(c, d, e, a, b, W(58));  /* 59 */
d                 293 ext/hash/hash_sha.c 	HH(b, c, d, e, a, W(59));  /* 60 */
d                 296 ext/hash/hash_sha.c 	II(a, b, c, d, e, W(60));  /* 61 */
d                 297 ext/hash/hash_sha.c 	II(e, a, b, c, d, W(61));  /* 62 */
d                 298 ext/hash/hash_sha.c 	II(d, e, a, b, c, W(62));  /* 63 */
d                 299 ext/hash/hash_sha.c 	II(c, d, e, a, b, W(63));  /* 64 */
d                 300 ext/hash/hash_sha.c 	II(b, c, d, e, a, W(64));  /* 65 */
d                 301 ext/hash/hash_sha.c 	II(a, b, c, d, e, W(65));  /* 66 */
d                 302 ext/hash/hash_sha.c 	II(e, a, b, c, d, W(66));  /* 67 */
d                 303 ext/hash/hash_sha.c 	II(d, e, a, b, c, W(67));  /* 68 */
d                 304 ext/hash/hash_sha.c 	II(c, d, e, a, b, W(68));  /* 69 */
d                 305 ext/hash/hash_sha.c 	II(b, c, d, e, a, W(69));  /* 70 */
d                 306 ext/hash/hash_sha.c 	II(a, b, c, d, e, W(70));  /* 71 */
d                 307 ext/hash/hash_sha.c 	II(e, a, b, c, d, W(71));  /* 72 */
d                 308 ext/hash/hash_sha.c 	II(d, e, a, b, c, W(72));  /* 73 */
d                 309 ext/hash/hash_sha.c 	II(c, d, e, a, b, W(73));  /* 74 */
d                 310 ext/hash/hash_sha.c 	II(b, c, d, e, a, W(74));  /* 75 */
d                 311 ext/hash/hash_sha.c 	II(a, b, c, d, e, W(75));  /* 76 */
d                 312 ext/hash/hash_sha.c 	II(e, a, b, c, d, W(76));  /* 77 */
d                 313 ext/hash/hash_sha.c 	II(d, e, a, b, c, W(77));  /* 78 */
d                 314 ext/hash/hash_sha.c 	II(c, d, e, a, b, W(78));  /* 79 */
d                 315 ext/hash/hash_sha.c 	II(b, c, d, e, a, W(79));  /* 80 */
d                 320 ext/hash/hash_sha.c 	state[3] += d;
d                 482 ext/hash/hash_sha.c 	php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3];
d                 500 ext/hash/hash_sha.c 		h = g; g = f; f = e; e = d + T1;
d                 501 ext/hash/hash_sha.c 		d = c; c = b; b = a; a = T1 + T2;
d                 507 ext/hash/hash_sha.c 	state[3] += d;
d                 792 ext/hash/hash_sha.c 	php_hash_uint64 a = state[0], b = state[1], c = state[2], d = state[3];
d                 810 ext/hash/hash_sha.c 		h = g; g = f; f = e; e = d + T1;
d                 811 ext/hash/hash_sha.c 		d = c; c = b; b = a; a = T1 + T2;
d                 817 ext/hash/hash_sha.c 	state[3] += d;
d                 200 ext/iconv/iconv.c static php_iconv_err_t _php_iconv_appendl(smart_str *d, const char *s, size_t l, iconv_t cd);
d                 201 ext/iconv/iconv.c static php_iconv_err_t _php_iconv_appendc(smart_str *d, const char c, iconv_t cd);
d                 456 ext/iconv/iconv.c static php_iconv_err_t _php_iconv_appendl(smart_str *d, const char *s, size_t l, iconv_t cd)
d                 470 ext/iconv/iconv.c 			smart_str_alloc(d, out_left, 0);
d                 472 ext/iconv/iconv.c 			out_p = ZSTR_VAL((d)->s) + ZSTR_LEN((d)->s);
d                 498 ext/iconv/iconv.c 			ZSTR_LEN((d)->s) += (buf_growth - out_left);
d                 504 ext/iconv/iconv.c 			smart_str_alloc(d, out_left, 0);
d                 506 ext/iconv/iconv.c 			out_p = ZSTR_VAL((d)->s) + ZSTR_LEN((d)->s);
d                 509 ext/iconv/iconv.c 				ZSTR_LEN((d)->s) += (buf_growth - out_left);
d                 522 ext/iconv/iconv.c 			ZSTR_LEN((d)->s) += (buf_growth - out_left);
d                 531 ext/iconv/iconv.c static php_iconv_err_t _php_iconv_appendc(smart_str *d, const char c, iconv_t cd)
d                 533 ext/iconv/iconv.c 	return _php_iconv_appendl(d, &c, 1, cd);
d                 214 ext/interbase/php_ibase_udf.c 				char d[64];
d                 270 ext/interbase/php_ibase_udf.c 					ZVAL_STRINGL(&args[i], d, strftime(d, sizeof(d), INI_STR("ibase.dateformat"), &t),1);
d                 275 ext/interbase/php_ibase_udf.c 					ZVAL_STRINGL(&args[i], d, strftime(d, sizeof(d), INI_STR("ibase.timeformat"), &t),1);
d                 280 ext/interbase/php_ibase_udf.c 					ZVAL_STRINGL(&args[i], d, strftime(d, sizeof(d), INI_STR("ibase.timestampformat"), &t));
d                  97 ext/json/json_encoder.c static inline int php_json_is_valid_double(double d) /* {{{ */
d                  99 ext/json/json_encoder.c 	return !zend_isinf(d) && !zend_isnan(d);
d                 103 ext/json/json_encoder.c static inline void php_json_encode_double(smart_str *buf, double d, int options) /* {{{ */
d                 107 ext/json/json_encoder.c 	php_gcvt(d, (int)EG(precision), '.', 'e', &num[0]);
d                 290 ext/json/json_encoder.c 		double d;
d                 294 ext/json/json_encoder.c 		if ((type = is_numeric_string(s, len, &p, &d, 0)) != 0) {
d                 298 ext/json/json_encoder.c 			} else if (type == IS_DOUBLE && php_json_is_valid_double(d)) {
d                 299 ext/json/json_encoder.c 				php_json_encode_double(buf, d, options);
d                2690 ext/mbstring/libmbfl/mbfl/mbfilter.c 	int f, n, s, r, d, size, *mapelm;
d                2705 ext/mbstring/libmbfl/mbfl/mbfilter.c 					d = s/r;
d                2706 ext/mbstring/libmbfl/mbfl/mbfilter.c 					if (d || f) {
d                2709 ext/mbstring/libmbfl/mbfl/mbfilter.c 						(*pc->decoder->filter_function)(mbfl_hexchar_table[d], pc->decoder);
d                2736 ext/mbstring/libmbfl/mbfl/mbfilter.c 	int f, n, s, r, d, size, *mapelm;
d                2783 ext/mbstring/libmbfl/mbfl/mbfilter.c 				d = s - mapelm[2];
d                2784 ext/mbstring/libmbfl/mbfl/mbfilter.c 				if (d >= mapelm[0] && d <= mapelm[1]) {
d                2786 ext/mbstring/libmbfl/mbfl/mbfilter.c 					(*pc->decoder->filter_function)(d, pc->decoder);
d                2807 ext/mbstring/libmbfl/mbfl/mbfilter.c 				d = s/r;
d                2810 ext/mbstring/libmbfl/mbfl/mbfilter.c 				(*pc->decoder->filter_function)(mbfl_hexchar_table[d], pc->decoder);
d                2865 ext/mbstring/libmbfl/mbfl/mbfilter.c 				d = s - mapelm[2];
d                2866 ext/mbstring/libmbfl/mbfl/mbfilter.c 				if (d >= mapelm[0] && d <= mapelm[1]) {
d                2868 ext/mbstring/libmbfl/mbfl/mbfilter.c 					(*pc->decoder->filter_function)(d, pc->decoder);
d                2890 ext/mbstring/libmbfl/mbfl/mbfilter.c 				d = s/r;
d                2893 ext/mbstring/libmbfl/mbfl/mbfilter.c 				(*pc->decoder->filter_function)(mbfl_hexchar_table[d], pc->decoder);
d                2914 ext/mbstring/libmbfl/mbfl/mbfilter.c 	int f, n, s, r, d, size, *mapelm;
d                2930 ext/mbstring/libmbfl/mbfl/mbfilter.c 					d = s/r;
d                2931 ext/mbstring/libmbfl/mbfl/mbfilter.c 					if (d || f) {
d                2934 ext/mbstring/libmbfl/mbfl/mbfilter.c 						(*pc->decoder->filter_function)(mbfl_hexchar_table[d], pc->decoder);
d                2960 ext/mbstring/libmbfl/mbfl/mbfilter.c 	int n, s, r, d;
d                2985 ext/mbstring/libmbfl/mbfl/mbfilter.c 				d = s/r;
d                2988 ext/mbstring/libmbfl/mbfl/mbfilter.c 				(*pc->decoder->filter_function)(mbfl_hexchar_table[d], pc->decoder);
d                3012 ext/mbstring/libmbfl/mbfl/mbfilter.c 				d = s/r;
d                3015 ext/mbstring/libmbfl/mbfl/mbfilter.c 				(*pc->decoder->filter_function)(mbfl_hexchar_table[d], pc->decoder);
d                 104 ext/mbstring/oniguruma/regcomp.c distance_multiply(OnigDistance d, int m)
d                 108 ext/mbstring/oniguruma/regcomp.c   if (d < ONIG_INFINITE_DISTANCE / m)
d                 109 ext/mbstring/oniguruma/regcomp.c     return d * m;
d                3722 ext/mbstring/oniguruma/regcomp.c       OnigDistance d;
d                3731 ext/mbstring/oniguruma/regcomp.c 	r = get_min_match_length(target, &d, env);
d                3733 ext/mbstring/oniguruma/regcomp.c 	if (d == 0) {
d                3743 ext/mbstring/oniguruma/regcomp.c 	  r = get_max_match_length(target, &d, env);
d                3744 ext/mbstring/oniguruma/regcomp.c 	  if (r == 0 && d == 0) {
d                4018 ext/mbstring/oniguruma/regcomp.c   int d;
d                4022 ext/mbstring/oniguruma/regcomp.c   d = mm->max - mm->min;
d                4023 ext/mbstring/oniguruma/regcomp.c   if (d < (int )(sizeof(dist_vals)/sizeof(dist_vals[0])))
d                4025 ext/mbstring/oniguruma/regcomp.c     return (int )dist_vals[d];
d                1159 ext/mbstring/ucgendat/ucgendat.c decomp_it(_decomp_t *d, short compat)
d                1164 ext/mbstring/ucgendat/ucgendat.c     for (i = 0; i < d->used; i++) {
d                1165 ext/mbstring/ucgendat/ucgendat.c         if ((dp = find_decomp(d->decomp[i], compat)) != 0)
d                1168 ext/mbstring/ucgendat/ucgendat.c           dectmp[dectmp_size++] = d->decomp[i];
d                  42 ext/mysqli/mysqli_libmysql.h #define mysqli_change_user_silent(c, u, p, d, p_len)   mysql_change_user((c), (u), (p), (d))
d                  44 ext/mysqli/mysqli_mysqlnd.h #define mysqli_change_user_silent(c, u, p, d, p_len)   mysqlnd_change_user_ex((c), (u), (p), (d), TRUE, (size_t)(p_len))
d                 229 ext/mysqlnd/mysqlnd.h #define mysqlnd_stmt_send_long_data(stmt,p,d,l) 	(stmt)->m->send_long_data((stmt), (p), (d), (l))
d                 197 ext/mysqlnd/mysqlnd_charset.c #define isbig5code(c,d) (isbig5head(c) && isbig5tail(d))
d                 100 ext/mysqlnd/mysqlnd_libmysql_compat.h #define mysql_stmt_send_long_data(s,p,d,l) mysqlnd_stmt_send_long_data((s), (p), (d), (l))
d                1940 ext/openssl/openssl.c 				as = name->d.rfc822Name;
d                1946 ext/openssl/openssl.c 				as = name->d.dNSName;
d                1952 ext/openssl/openssl.c 				as = name->d.uniformResourceIdentifier;
d                3590 ext/openssl/openssl.c 					OPENSSL_PKEY_SET_BN(Z_ARRVAL_P(data), rsa, d);
d                3596 ext/openssl/openssl.c 					if (rsa->n && rsa->d) {
d                3922 ext/openssl/openssl.c 				OPENSSL_PKEY_GET_BN(rsa, d);
d                 415 ext/openssl/xp_ssl.c 			ASN1_STRING_to_UTF8(&cert_name, san->d.dNSName);
d                 416 ext/openssl/xp_ssl.c 			if (ASN1_STRING_length(san->d.dNSName) != strlen((const char*)cert_name)) {
d                 434 ext/openssl/xp_ssl.c 			if (san->d.iPAddress->length == 4) {
d                 436 ext/openssl/xp_ssl.c 					san->d.iPAddress->data[0],
d                 437 ext/openssl/xp_ssl.c 					san->d.iPAddress->data[1],
d                 438 ext/openssl/xp_ssl.c 					san->d.iPAddress->data[2],
d                 439 ext/openssl/xp_ssl.c 					san->d.iPAddress->data[3]
d                1747 ext/pcre/pcrelib/pcre_compile.c   int d;
d                1763 ext/pcre/pcrelib/pcre_compile.c     d = find_fixedlength(cc + ((op == OP_CBRA)? IMM2_SIZE : 0), utf, atend, cd,
d                1765 ext/pcre/pcrelib/pcre_compile.c     if (d < 0) return d;
d                1766 ext/pcre/pcrelib/pcre_compile.c     branchlength += d;
d                1806 ext/pcre/pcrelib/pcre_compile.c     d = find_fixedlength(cs + IMM2_SIZE, utf, atend, cd, &this_recurse);
d                1807 ext/pcre/pcrelib/pcre_compile.c     if (d < 0) return d;
d                1808 ext/pcre/pcrelib/pcre_compile.c     branchlength += d;
d                4134 ext/pcre/pcrelib/pcre_compile.c get_othercase_range(pcre_uint32 *cptr, pcre_uint32 d, pcre_uint32 *ocptr,
d                4143 ext/pcre/pcrelib/pcre_compile.c for (c = *cptr; c <= d; c++)
d                4154 ext/pcre/pcrelib/pcre_compile.c if (c > d) return -1;  /* Reached end of range */
d                4163 ext/pcre/pcrelib/pcre_compile.c for (++c; c <= d; c++)
d                5295 ext/pcre/pcrelib/pcre_compile.c         pcre_uint32 d;
d                5325 ext/pcre/pcrelib/pcre_compile.c           GETCHARLEN(d, ptr, ptr);    /* macro generates multiple statements */
d                5329 ext/pcre/pcrelib/pcre_compile.c         d = *ptr;  /* Not UTF-8 mode */
d                5339 ext/pcre/pcrelib/pcre_compile.c           if (d == CHAR_BACKSLASH)
d                5342 ext/pcre/pcrelib/pcre_compile.c             descape = check_escape(&ptr, &d, errorcodeptr, cd->bracount, options, TRUE);
d                5350 ext/pcre/pcrelib/pcre_compile.c               if (descape == ESC_b) d = CHAR_BS; else
d                5360 ext/pcre/pcrelib/pcre_compile.c           else if (d == CHAR_LEFT_SQUARE_BRACKET &&
d                5373 ext/pcre/pcrelib/pcre_compile.c         if (d < c)
d                5378 ext/pcre/pcrelib/pcre_compile.c         if (d == c) goto CLASS_SINGLE_CHARACTER;  /* A few lines below */
d                5388 ext/pcre/pcrelib/pcre_compile.c         if (d == CHAR_CR || d == CHAR_NL) cd->external_flags |= PCRE_HASCRORLF;
d                5391 ext/pcre/pcrelib/pcre_compile.c           add_to_class(classbits, &class_uchardata, options, cd, c, d);
d                5427 ext/pcre/pcrelib/pcre_compile.c           int d;
d                5439 ext/pcre/pcrelib/pcre_compile.c               (d = UCD_CASESET(c)) != 0)
d                5443 ext/pcre/pcrelib/pcre_compile.c             *code++ = d;
d                8814 ext/pcre/pcrelib/pcre_compile.c    pcre_uint32 d;
d                8836 ext/pcre/pcrelib/pcre_compile.c      d = find_firstassertedchar(scode, &dflags, op == OP_ASSERT);
d                8839 ext/pcre/pcrelib/pcre_compile.c      if (cflags < 0) { c = d; cflags = dflags; } else if (c != d || cflags != dflags) return 0;
d                 211 ext/pcre/pcrelib/pcre_exec.c       pcre_uint32 c, d;
d                 215 ext/pcre/pcrelib/pcre_exec.c       GETCHARINC(d, p);
d                 216 ext/pcre/pcrelib/pcre_exec.c       ur = GET_UCD(d);
d                 217 ext/pcre/pcrelib/pcre_exec.c       if (c != d && c != d + ur->other_case)
d                3809 ext/pcre/pcrelib/pcre_exec.c         register pcre_uint32 d;
d                3817 ext/pcre/pcrelib/pcre_exec.c           GETCHARINC(d, eptr);
d                3818 ext/pcre/pcrelib/pcre_exec.c           if (fc == d || (unsigned int)foc == d) RRETURN(MATCH_NOMATCH);
d                3844 ext/pcre/pcrelib/pcre_exec.c           register pcre_uint32 d;
d                3855 ext/pcre/pcrelib/pcre_exec.c             GETCHARINC(d, eptr);
d                3856 ext/pcre/pcrelib/pcre_exec.c             if (fc == d || (unsigned int)foc == d) RRETURN(MATCH_NOMATCH);
d                3889 ext/pcre/pcrelib/pcre_exec.c           register pcre_uint32 d;
d                3898 ext/pcre/pcrelib/pcre_exec.c             GETCHARLEN(d, eptr, len);
d                3899 ext/pcre/pcrelib/pcre_exec.c             if (fc == d || (unsigned int)foc == d) break;
d                3946 ext/pcre/pcrelib/pcre_exec.c         register pcre_uint32 d;
d                3954 ext/pcre/pcrelib/pcre_exec.c           GETCHARINC(d, eptr);
d                3955 ext/pcre/pcrelib/pcre_exec.c           if (fc == d) RRETURN(MATCH_NOMATCH);
d                3980 ext/pcre/pcrelib/pcre_exec.c           register pcre_uint32 d;
d                3991 ext/pcre/pcrelib/pcre_exec.c             GETCHARINC(d, eptr);
d                3992 ext/pcre/pcrelib/pcre_exec.c             if (fc == d) RRETURN(MATCH_NOMATCH);
d                4024 ext/pcre/pcrelib/pcre_exec.c           register pcre_uint32 d;
d                4033 ext/pcre/pcrelib/pcre_exec.c             GETCHARLEN(d, eptr, len);
d                4034 ext/pcre/pcrelib/pcre_exec.c             if (fc == d) break;
d                 372 ext/pcre/pcrelib/pcre_internal.h #define memcpy(d,s,n)    _memcpy(d,s,n)
d                 373 ext/pcre/pcrelib/pcre_internal.h #define memmove(d,s,n)   _memmove(d,s,n)
d                 388 ext/pcre/pcrelib/pcre_internal.h pcre_memmove(void *d, const void *s, size_t n)
d                 391 ext/pcre/pcrelib/pcre_internal.h unsigned char *dest = (unsigned char *)d;
d                 429 ext/pcre/pcrelib/pcre_internal.h #define PUT(a,n,d)   \
d                 430 ext/pcre/pcrelib/pcre_internal.h   (a[n] = (d) >> 8), \
d                 431 ext/pcre/pcrelib/pcre_internal.h   (a[(n)+1] = (d) & 255)
d                 441 ext/pcre/pcrelib/pcre_internal.h #define PUT(a,n,d)       \
d                 442 ext/pcre/pcrelib/pcre_internal.h   (a[n] = (d) >> 16),    \
d                 443 ext/pcre/pcrelib/pcre_internal.h   (a[(n)+1] = (d) >> 8), \
d                 444 ext/pcre/pcrelib/pcre_internal.h   (a[(n)+2] = (d) & 255)
d                 454 ext/pcre/pcrelib/pcre_internal.h #define PUT(a,n,d)        \
d                 455 ext/pcre/pcrelib/pcre_internal.h   (a[n] = (d) >> 24),     \
d                 456 ext/pcre/pcrelib/pcre_internal.h   (a[(n)+1] = (d) >> 16), \
d                 457 ext/pcre/pcrelib/pcre_internal.h   (a[(n)+2] = (d) >> 8),  \
d                 458 ext/pcre/pcrelib/pcre_internal.h   (a[(n)+3] = (d) & 255)
d                 478 ext/pcre/pcrelib/pcre_internal.h #define PUT(a,n,d)   \
d                 479 ext/pcre/pcrelib/pcre_internal.h   (a[n] = (d))
d                 492 ext/pcre/pcrelib/pcre_internal.h #define PUT(a,n,d)   \
d                 493 ext/pcre/pcrelib/pcre_internal.h   (a[n] = (d) >> 16), \
d                 494 ext/pcre/pcrelib/pcre_internal.h   (a[(n)+1] = (d) & 65535)
d                 513 ext/pcre/pcrelib/pcre_internal.h #define PUT(a,n,d)   \
d                 514 ext/pcre/pcrelib/pcre_internal.h   (a[n] = (d))
d                 528 ext/pcre/pcrelib/pcre_internal.h #define PUTINC(a,n,d)   PUT(a,n,d), a += LINK_SIZE
d                 539 ext/pcre/pcrelib/pcre_internal.h #define PUT2(a,n,d)   \
d                 540 ext/pcre/pcrelib/pcre_internal.h   a[n] = (d) >> 8; \
d                 541 ext/pcre/pcrelib/pcre_internal.h   a[(n)+1] = (d) & 255
d                 554 ext/pcre/pcrelib/pcre_internal.h #define PUT2(a,n,d)   \
d                 555 ext/pcre/pcrelib/pcre_internal.h    a[n] = d
d                 564 ext/pcre/pcrelib/pcre_internal.h #define PUT2(a,n,d)   \
d                 565 ext/pcre/pcrelib/pcre_internal.h    a[n] = d
d                 574 ext/pcre/pcrelib/pcre_internal.h #define PUT2INC(a,n,d)  PUT2(a,n,d), a += IMM2_SIZE
d                 103 ext/pcre/pcrelib/pcre_study.c   int d, min;
d                 136 ext/pcre/pcrelib/pcre_study.c     d = find_minlength(re, cc, startcode, options, recurses, countptr);
d                 137 ext/pcre/pcrelib/pcre_study.c     if (d < 0) return d;
d                 138 ext/pcre/pcrelib/pcre_study.c     branchlength += d;
d                 393 ext/pcre/pcrelib/pcre_study.c       d = INT_MAX;
d                 401 ext/pcre/pcrelib/pcre_study.c           d = 0;
d                 411 ext/pcre/pcrelib/pcre_study.c             d = 0;
d                 422 ext/pcre/pcrelib/pcre_study.c             if (dd < d) d = dd;
d                 428 ext/pcre/pcrelib/pcre_study.c     else d = 0;
d                 441 ext/pcre/pcrelib/pcre_study.c         d = 0;
d                 450 ext/pcre/pcrelib/pcre_study.c           d = 0;
d                 457 ext/pcre/pcrelib/pcre_study.c           d = find_minlength(re, cs, startcode, options, &this_recurse,
d                 462 ext/pcre/pcrelib/pcre_study.c     else d = 0;
d                 499 ext/pcre/pcrelib/pcre_study.c     branchlength += min * d;
d                1374 ext/pcre/pcrelib/pcre_study.c                 int d = (c >> 6) | 0xc0;            /* Set bit for this starter */
d                1375 ext/pcre/pcrelib/pcre_study.c                 start_bits[d/8] |= (1 << (d&7));    /* and then skip on to the */
d                 118 ext/pcre/pcrelib/pcre_valid_utf8.c   register pcre_uchar ab, c, d;
d                 145 ext/pcre/pcrelib/pcre_valid_utf8.c   if (((d = *(++p)) & 0xc0) != 0x80)
d                 177 ext/pcre/pcrelib/pcre_valid_utf8.c     if (c == 0xe0 && (d & 0x20) == 0)
d                 182 ext/pcre/pcrelib/pcre_valid_utf8.c     if (c == 0xed && d >= 0xa0)
d                 204 ext/pcre/pcrelib/pcre_valid_utf8.c     if (c == 0xf0 && (d & 0x30) == 0)
d                 209 ext/pcre/pcrelib/pcre_valid_utf8.c     if (c > 0xf4 || (c == 0xf4 && d > 0x8f))
d                 240 ext/pcre/pcrelib/pcre_valid_utf8.c     if (c == 0xf8 && (d & 0x38) == 0)
d                 271 ext/pcre/pcrelib/pcre_valid_utf8.c     if (c == 0xfc && (d & 0x3c) == 0)
d                 276 ext/pcre/pcrelib/pcredemo.c   int d;
d                 277 ext/pcre/pcrelib/pcredemo.c   (void)pcre_config(PCRE_CONFIG_NEWLINE, &d);
d                 280 ext/pcre/pcrelib/pcredemo.c   option_bits = (d == 13)? PCRE_NEWLINE_CR :
d                 281 ext/pcre/pcrelib/pcredemo.c           (d == 10)? PCRE_NEWLINE_LF :
d                 282 ext/pcre/pcrelib/pcredemo.c           (d == (13<<8 | 10))? PCRE_NEWLINE_CRLF :
d                 283 ext/pcre/pcrelib/pcredemo.c           (d == -2)? PCRE_NEWLINE_ANYCRLF :
d                 284 ext/pcre/pcrelib/pcredemo.c           (d == -1)? PCRE_NEWLINE_ANY : 0;
d                  81 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c #define D(d)		(reg_map[d] << 11)
d                  85 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c #define DA(d)		((d) << 11)
d                  88 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c #define FD(d)		((d) << 6)
d                 111 ext/pcre/pcrelib/sljit/sljitNativePPC_common.c #define D(d)		(reg_map[d] << 21)
d                 122 ext/pcre/pcrelib/sljit/sljitNativePPC_common.c #define CRD(d)		((d) << 21)
d                 102 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c #define D(d)		(reg_map[d] << 25)
d                 103 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c #define DA(d)		((d) << 25)
d                9545 ext/pcre/pcrelib/sljit/sljitNativeTILEGX-encoder.c     struct tilegx_decoded_instruction *d;
d                9548 ext/pcre/pcrelib/sljit/sljitNativeTILEGX-encoder.c     d = &decoded[num_instructions++];
d                9550 ext/pcre/pcrelib/sljit/sljitNativeTILEGX-encoder.c     d->opcode = opc;
d                9574 ext/pcre/pcrelib/sljit/sljitNativeTILEGX-encoder.c       d->operands[i] = op;
d                9575 ext/pcre/pcrelib/sljit/sljitNativeTILEGX-encoder.c       d->operand_values[i] = opval;
d                  83 ext/pdo_pgsql/php_pdo_pgsql_int.h #define pdo_pgsql_error(d,e,z)	_pdo_pgsql_error(d, NULL, e, z, NULL, __FILE__, __LINE__)
d                  84 ext/pdo_pgsql/php_pdo_pgsql_int.h #define pdo_pgsql_error_msg(d,e,m)	_pdo_pgsql_error(d, NULL, e, NULL, m, __FILE__, __LINE__)
d                 192 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, d)
d                10106 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3VdbeScanStatus(a,b,c,d,e)
d                13355 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3AuthRead(a,b,c,d)
d                13356 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3AuthCheck(a,b,c,d,e)    SQLITE_OK
d                13632 ext/sqlite3/libsqlite/sqlite3.c   #define sqlite3FkActions(a,b,c,d,e,f)
d                13633 ext/sqlite3/libsqlite/sqlite3.c   #define sqlite3FkCheck(a,b,c,d,e,f)
d                13636 ext/sqlite3/libsqlite/sqlite3.c   #define sqlite3FkRequired(a,b,c,d)    0
d                13643 ext/sqlite3/libsqlite/sqlite3.c   #define sqlite3FkLocateIndex(a,b,c,d,e)
d                21468 ext/sqlite3/libsqlite/sqlite3.c   LONGDOUBLE_TYPE d;
d                21472 ext/sqlite3/libsqlite/sqlite3.c   d = digit;
d                21474 ext/sqlite3/libsqlite/sqlite3.c   *val = (*val - d)*10.0;
d                23732 ext/sqlite3/libsqlite/sqlite3.c   int d = 0;       /* adjust exponent for shifting decimal point */
d                23778 ext/sqlite3/libsqlite/sqlite3.c   while( z<zEnd && sqlite3Isdigit(*z) ) z+=incr, nDigits++, d++;
d                23788 ext/sqlite3/libsqlite/sqlite3.c       z+=incr, nDigits++, d--;
d                23822 ext/sqlite3/libsqlite/sqlite3.c   e = (e*esign) + d;
d                35088 ext/sqlite3/libsqlite/sqlite3.c #define winLogError(a,b,c,d)   winLogErrorAtLine(a,b,c,d,__LINE__)
d                53162 ext/sqlite3/libsqlite/sqlite3.c   #define hasSharedCacheTableLock(a,b,c,d) 1
d                60001 ext/sqlite3/libsqlite/sqlite3.c     int d;              /* Index of first cell to the left of right sibling */
d                60004 ext/sqlite3/libsqlite/sqlite3.c     d = r + 1 - leafData;
d                60005 ext/sqlite3/libsqlite/sqlite3.c     assert( d<nMaxCells );
d                60008 ext/sqlite3/libsqlite/sqlite3.c        || (!bBulk && szRight+szCell[d]+2<=szLeft-(szCell[r]+2)) 
d                60010 ext/sqlite3/libsqlite/sqlite3.c       szRight += szCell[d] + 2;
d                60014 ext/sqlite3/libsqlite/sqlite3.c       d = r + 1 - leafData;
d                64328 ext/sqlite3/libsqlite/sqlite3.c # define valueFromFunction(a,b,c,d,e,f) SQLITE_OK
d                68010 ext/sqlite3/libsqlite/sqlite3.c   int d; 
d                68019 ext/sqlite3/libsqlite/sqlite3.c   d = szHdr;
d                68021 ext/sqlite3/libsqlite/sqlite3.c   while( idx<szHdr && d<=nKey ){
d                68029 ext/sqlite3/libsqlite/sqlite3.c     d += sqlite3VdbeSerialGet(&aKey[d], serial_type, pMem);
d                119381 ext/sqlite3/libsqlite/sqlite3.c # define addScanStatus(a, b, c, d) ((void)d)
d                153742 ext/sqlite3/libsqlite/sqlite3.c   double d = sqlite3_value_double(v);
d                153743 ext/sqlite3/libsqlite/sqlite3.c   float f = (float)d;
d                153744 ext/sqlite3/libsqlite/sqlite3.c   if( f>d ){
d                153745 ext/sqlite3/libsqlite/sqlite3.c     f = (float)(d*(d<0 ? RNDAWAY : RNDTOWARDS));
d                153750 ext/sqlite3/libsqlite/sqlite3.c   double d = sqlite3_value_double(v);
d                153751 ext/sqlite3/libsqlite/sqlite3.c   float f = (float)d;
d                153752 ext/sqlite3/libsqlite/sqlite3.c   if( f<d ){
d                153753 ext/sqlite3/libsqlite/sqlite3.c     f = (float)(d*(d<0 ? RNDTOWARDS : RNDAWAY));
d                 148 ext/standard/array.c 	double d;
d                 155 ext/standard/array.c 			t = is_numeric_string(s->key->val, s->key->len, &l2, &d, 1);
d                 159 ext/standard/array.c 				return ZEND_NORMALIZE_BOOL((double)l1 - d);
d                 169 ext/standard/array.c 			t = is_numeric_string(f->key->val, f->key->len, &l1, &d, 1);
d                 173 ext/standard/array.c 				return ZEND_NORMALIZE_BOOL(d - (double)l2);
d                 114 ext/standard/crypt_sha256.c 	uint32_t d = ctx->H[3];
d                 135 ext/standard/crypt_sha256.c 		uint32_t d_save = d;
d                 168 ext/standard/crypt_sha256.c 			e = d + T1;
d                 169 ext/standard/crypt_sha256.c 			d = c;
d                 180 ext/standard/crypt_sha256.c 		d += d_save;
d                 194 ext/standard/crypt_sha256.c 	ctx->H[3] = d;
d                 138 ext/standard/crypt_sha512.c 	uint64_t d = ctx->H[3];
d                 159 ext/standard/crypt_sha512.c 		uint64_t d_save = d;
d                 195 ext/standard/crypt_sha512.c 			e = d + T1;
d                 196 ext/standard/crypt_sha512.c 			d = c;
d                 207 ext/standard/crypt_sha512.c 		d += d_save;
d                 221 ext/standard/crypt_sha512.c 	ctx->H[3] = d;
d                  99 ext/standard/exec.c 	char *b, *d=NULL;
d                 195 ext/standard/exec.c 	if (d) {
d                 196 ext/standard/exec.c 		efree(d);
d                 318 ext/standard/filters.c #define php_conv_convert(a, b, c, d, e) ((php_conv *)(a))->convert_op((php_conv *)(a), (b), (c), (d), (e))
d                 206 ext/standard/http_fopen_wrapper.c 		double d = zval_get_double(tmpzval);
d                 208 ext/standard/http_fopen_wrapper.c 		timeout.tv_sec = (time_t) d;
d                 209 ext/standard/http_fopen_wrapper.c 		timeout.tv_usec = (size_t) ((d - timeout.tv_sec) * 1000000);
d                 211 ext/standard/http_fopen_wrapper.c 		timeout.tv_sec = (long) d;
d                 212 ext/standard/http_fopen_wrapper.c 		timeout.tv_usec = (long) ((d - timeout.tv_sec) * 1000000);
d                1282 ext/standard/math.c PHPAPI zend_string *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep)
d                1284 ext/standard/math.c 	return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1);
d                1287 ext/standard/math.c PHPAPI zend_string *_php_math_number_format_ex(double d, int dec, char *dec_point,
d                1299 ext/standard/math.c 	if (d < 0) {
d                1301 ext/standard/math.c 		d = -d;
d                1305 ext/standard/math.c 	d = _php_math_round(d, dec, PHP_ROUND_HALF_UP);
d                1306 ext/standard/math.c 	tmpbuf = strpprintf(0, "%.*F", dec, d);
d                 157 ext/standard/md5.c #define STEP(f, a, b, c, d, x, t, s) \
d                 158 ext/standard/md5.c 	(a) += f((b), (c), (d)) + (x) + (t); \
d                 193 ext/standard/md5.c 	php_uint32 a, b, c, d;
d                 201 ext/standard/md5.c 	d = ctx->d;
d                 207 ext/standard/md5.c 		saved_d = d;
d                 210 ext/standard/md5.c 		STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
d                 211 ext/standard/md5.c 		STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
d                 212 ext/standard/md5.c 		STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
d                 213 ext/standard/md5.c 		STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
d                 214 ext/standard/md5.c 		STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
d                 215 ext/standard/md5.c 		STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12)
d                 216 ext/standard/md5.c 		STEP(F, c, d, a, b, SET(6), 0xa8304613, 17)
d                 217 ext/standard/md5.c 		STEP(F, b, c, d, a, SET(7), 0xfd469501, 22)
d                 218 ext/standard/md5.c 		STEP(F, a, b, c, d, SET(8), 0x698098d8, 7)
d                 219 ext/standard/md5.c 		STEP(F, d, a, b, c, SET(9), 0x8b44f7af, 12)
d                 220 ext/standard/md5.c 		STEP(F, c, d, a, b, SET(10), 0xffff5bb1, 17)
d                 221 ext/standard/md5.c 		STEP(F, b, c, d, a, SET(11), 0x895cd7be, 22)
d                 222 ext/standard/md5.c 		STEP(F, a, b, c, d, SET(12), 0x6b901122, 7)
d                 223 ext/standard/md5.c 		STEP(F, d, a, b, c, SET(13), 0xfd987193, 12)
d                 224 ext/standard/md5.c 		STEP(F, c, d, a, b, SET(14), 0xa679438e, 17)
d                 225 ext/standard/md5.c 		STEP(F, b, c, d, a, SET(15), 0x49b40821, 22)
d                 228 ext/standard/md5.c 		STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5)
d                 229 ext/standard/md5.c 		STEP(G, d, a, b, c, GET(6), 0xc040b340, 9)
d                 230 ext/standard/md5.c 		STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14)
d                 231 ext/standard/md5.c 		STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20)
d                 232 ext/standard/md5.c 		STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5)
d                 233 ext/standard/md5.c 		STEP(G, d, a, b, c, GET(10), 0x02441453, 9)
d                 234 ext/standard/md5.c 		STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14)
d                 235 ext/standard/md5.c 		STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20)
d                 236 ext/standard/md5.c 		STEP(G, a, b, c, d, GET(9), 0x21e1cde6, 5)
d                 237 ext/standard/md5.c 		STEP(G, d, a, b, c, GET(14), 0xc33707d6, 9)
d                 238 ext/standard/md5.c 		STEP(G, c, d, a, b, GET(3), 0xf4d50d87, 14)
d                 239 ext/standard/md5.c 		STEP(G, b, c, d, a, GET(8), 0x455a14ed, 20)
d                 240 ext/standard/md5.c 		STEP(G, a, b, c, d, GET(13), 0xa9e3e905, 5)
d                 241 ext/standard/md5.c 		STEP(G, d, a, b, c, GET(2), 0xfcefa3f8, 9)
d                 242 ext/standard/md5.c 		STEP(G, c, d, a, b, GET(7), 0x676f02d9, 14)
d                 243 ext/standard/md5.c 		STEP(G, b, c, d, a, GET(12), 0x8d2a4c8a, 20)
d                 246 ext/standard/md5.c 		STEP(H, a, b, c, d, GET(5), 0xfffa3942, 4)
d                 247 ext/standard/md5.c 		STEP(H, d, a, b, c, GET(8), 0x8771f681, 11)
d                 248 ext/standard/md5.c 		STEP(H, c, d, a, b, GET(11), 0x6d9d6122, 16)
d                 249 ext/standard/md5.c 		STEP(H, b, c, d, a, GET(14), 0xfde5380c, 23)
d                 250 ext/standard/md5.c 		STEP(H, a, b, c, d, GET(1), 0xa4beea44, 4)
d                 251 ext/standard/md5.c 		STEP(H, d, a, b, c, GET(4), 0x4bdecfa9, 11)
d                 252 ext/standard/md5.c 		STEP(H, c, d, a, b, GET(7), 0xf6bb4b60, 16)
d                 253 ext/standard/md5.c 		STEP(H, b, c, d, a, GET(10), 0xbebfbc70, 23)
d                 254 ext/standard/md5.c 		STEP(H, a, b, c, d, GET(13), 0x289b7ec6, 4)
d                 255 ext/standard/md5.c 		STEP(H, d, a, b, c, GET(0), 0xeaa127fa, 11)
d                 256 ext/standard/md5.c 		STEP(H, c, d, a, b, GET(3), 0xd4ef3085, 16)
d                 257 ext/standard/md5.c 		STEP(H, b, c, d, a, GET(6), 0x04881d05, 23)
d                 258 ext/standard/md5.c 		STEP(H, a, b, c, d, GET(9), 0xd9d4d039, 4)
d                 259 ext/standard/md5.c 		STEP(H, d, a, b, c, GET(12), 0xe6db99e5, 11)
d                 260 ext/standard/md5.c 		STEP(H, c, d, a, b, GET(15), 0x1fa27cf8, 16)
d                 261 ext/standard/md5.c 		STEP(H, b, c, d, a, GET(2), 0xc4ac5665, 23)
d                 264 ext/standard/md5.c 		STEP(I, a, b, c, d, GET(0), 0xf4292244, 6)
d                 265 ext/standard/md5.c 		STEP(I, d, a, b, c, GET(7), 0x432aff97, 10)
d                 266 ext/standard/md5.c 		STEP(I, c, d, a, b, GET(14), 0xab9423a7, 15)
d                 267 ext/standard/md5.c 		STEP(I, b, c, d, a, GET(5), 0xfc93a039, 21)
d                 268 ext/standard/md5.c 		STEP(I, a, b, c, d, GET(12), 0x655b59c3, 6)
d                 269 ext/standard/md5.c 		STEP(I, d, a, b, c, GET(3), 0x8f0ccc92, 10)
d                 270 ext/standard/md5.c 		STEP(I, c, d, a, b, GET(10), 0xffeff47d, 15)
d                 271 ext/standard/md5.c 		STEP(I, b, c, d, a, GET(1), 0x85845dd1, 21)
d                 272 ext/standard/md5.c 		STEP(I, a, b, c, d, GET(8), 0x6fa87e4f, 6)
d                 273 ext/standard/md5.c 		STEP(I, d, a, b, c, GET(15), 0xfe2ce6e0, 10)
d                 274 ext/standard/md5.c 		STEP(I, c, d, a, b, GET(6), 0xa3014314, 15)
d                 275 ext/standard/md5.c 		STEP(I, b, c, d, a, GET(13), 0x4e0811a1, 21)
d                 276 ext/standard/md5.c 		STEP(I, a, b, c, d, GET(4), 0xf7537e82, 6)
d                 277 ext/standard/md5.c 		STEP(I, d, a, b, c, GET(11), 0xbd3af235, 10)
d                 278 ext/standard/md5.c 		STEP(I, c, d, a, b, GET(2), 0x2ad7d2bb, 15)
d                 279 ext/standard/md5.c 		STEP(I, b, c, d, a, GET(9), 0xeb86d391, 21)
d                 284 ext/standard/md5.c 		d += saved_d;
d                 292 ext/standard/md5.c 	ctx->d = d;
d                 302 ext/standard/md5.c 	ctx->d = 0x10325476;
d                 386 ext/standard/md5.c 	result[12] = ctx->d;
d                 387 ext/standard/md5.c 	result[13] = ctx->d >> 8;
d                 388 ext/standard/md5.c 	result[14] = ctx->d >> 16;
d                 389 ext/standard/md5.c 	result[15] = ctx->d >> 24;
d                  46 ext/standard/md5.h 	php_uint32 a, b, c, d;
d                  52 ext/standard/php_smart_string.h #define SMART_STRING_DO_REALLOC(d, what) \
d                  53 ext/standard/php_smart_string.h 	(d)->c = SMART_STRING_REALLOC((d)->c, (d)->a + 1, (what))
d                  55 ext/standard/php_smart_string.h #define smart_string_alloc4(d, n, what, newlen) do {					\
d                  56 ext/standard/php_smart_string.h 	if (!(d)->c) {													\
d                  57 ext/standard/php_smart_string.h 		(d)->len = 0;												\
d                  59 ext/standard/php_smart_string.h 		(d)->a = newlen < SMART_STRING_START_SIZE 						\
d                  62 ext/standard/php_smart_string.h 		SMART_STRING_DO_REALLOC(d, what);								\
d                  64 ext/standard/php_smart_string.h 		newlen = (d)->len + (n);									\
d                  65 ext/standard/php_smart_string.h 		if (newlen >= (d)->a) {										\
d                  66 ext/standard/php_smart_string.h 			(d)->a = newlen + SMART_STRING_PREALLOC;					\
d                  67 ext/standard/php_smart_string.h 			SMART_STRING_DO_REALLOC(d, what);							\
d                  72 ext/standard/php_smart_string.h #define smart_string_alloc(d, n, what) \
d                  73 ext/standard/php_smart_string.h 	smart_string_alloc4((d), (n), (what), newlen)
d                  62 ext/standard/php_var.h #define PHP_VAR_SERIALIZE_INIT(d) \
d                  66 ext/standard/php_var.h 		(d) = (php_serialize_data_t) emalloc(sizeof(struct php_serialize_data)); \
d                  67 ext/standard/php_var.h 		zend_hash_init(&(d)->ht, 16, NULL, ZVAL_PTR_DTOR, 0); \
d                  68 ext/standard/php_var.h 		(d)->n = 0; \
d                  70 ext/standard/php_var.h 			BG(serialize).data = d; \
d                  74 ext/standard/php_var.h 		(d) = BG(serialize).data; \
d                  79 ext/standard/php_var.h #define PHP_VAR_SERIALIZE_DESTROY(d) \
d                  83 ext/standard/php_var.h 		zend_hash_destroy(&(d)->ht); \
d                  84 ext/standard/php_var.h 		efree((d)); \
d                  91 ext/standard/php_var.h #define PHP_VAR_UNSERIALIZE_INIT(d) \
d                  95 ext/standard/php_var.h 		(d) = (php_unserialize_data_t)ecalloc(1, sizeof(struct php_unserialize_data)); \
d                  97 ext/standard/php_var.h 			BG(unserialize).data = (d); \
d                 101 ext/standard/php_var.h 		(d) = BG(unserialize).data; \
d                 106 ext/standard/php_var.h #define PHP_VAR_UNSERIALIZE_DESTROY(d) \
d                 110 ext/standard/php_var.h 		var_destroy(&(d)); \
d                 111 ext/standard/php_var.h 		efree((d)); \
d                 151 ext/standard/quot_print.c 	unsigned char c, *d;
d                 156 ext/standard/quot_print.c 	d = (unsigned char*)ZSTR_VAL(ret);
d                 160 ext/standard/quot_print.c 			*d++ = '\015';
d                 161 ext/standard/quot_print.c 			*d++ = *str++;
d                 170 ext/standard/quot_print.c 					*d++ = '=';
d                 171 ext/standard/quot_print.c 					*d++ = '\015';
d                 172 ext/standard/quot_print.c 					*d++ = '\012';
d                 175 ext/standard/quot_print.c 				*d++ = '=';
d                 176 ext/standard/quot_print.c 				*d++ = hex[c >> 4];
d                 177 ext/standard/quot_print.c 				*d++ = hex[c & 0xf];
d                 180 ext/standard/quot_print.c 					*d++ = '=';
d                 181 ext/standard/quot_print.c 					*d++ = '\015';
d                 182 ext/standard/quot_print.c 					*d++ = '\012';
d                 185 ext/standard/quot_print.c 				*d++ = c;
d                 189 ext/standard/quot_print.c 	*d = '\0';
d                 190 ext/standard/quot_print.c 	ret = zend_string_truncate(ret, d - (unsigned char*)ZSTR_VAL(ret), 0);
d                 135 ext/standard/sha1.c #define FF(a, b, c, d, e, w) { \
d                 136 ext/standard/sha1.c  (e) += F ((b), (c), (d)) + (w) + (php_uint32)(0x5A827999); \
d                 140 ext/standard/sha1.c #define GG(a, b, c, d, e, w) { \
d                 141 ext/standard/sha1.c  (e) += G ((b), (c), (d)) + (w) + (php_uint32)(0x6ED9EBA1); \
d                 145 ext/standard/sha1.c #define HH(a, b, c, d, e, w) { \
d                 146 ext/standard/sha1.c  (e) += H ((b), (c), (d)) + (w) + (php_uint32)(0x8F1BBCDC); \
d                 150 ext/standard/sha1.c #define II(a, b, c, d, e, w) { \
d                 151 ext/standard/sha1.c  (e) += I ((b), (c), (d)) + (w) + (php_uint32)(0xCA62C1D6); \
d                 260 ext/standard/sha1.c 	php_uint32 d = state[3], e = state[4], x[16], tmp;
d                 265 ext/standard/sha1.c 	FF(a, b, c, d, e, x[0]);   /* 1 */
d                 266 ext/standard/sha1.c 	FF(e, a, b, c, d, x[1]);   /* 2 */
d                 267 ext/standard/sha1.c 	FF(d, e, a, b, c, x[2]);   /* 3 */
d                 268 ext/standard/sha1.c 	FF(c, d, e, a, b, x[3]);   /* 4 */
d                 269 ext/standard/sha1.c 	FF(b, c, d, e, a, x[4]);   /* 5 */
d                 270 ext/standard/sha1.c 	FF(a, b, c, d, e, x[5]);   /* 6 */
d                 271 ext/standard/sha1.c 	FF(e, a, b, c, d, x[6]);   /* 7 */
d                 272 ext/standard/sha1.c 	FF(d, e, a, b, c, x[7]);   /* 8 */
d                 273 ext/standard/sha1.c 	FF(c, d, e, a, b, x[8]);   /* 9 */
d                 274 ext/standard/sha1.c 	FF(b, c, d, e, a, x[9]);   /* 10 */
d                 275 ext/standard/sha1.c 	FF(a, b, c, d, e, x[10]);  /* 11 */
d                 276 ext/standard/sha1.c 	FF(e, a, b, c, d, x[11]);  /* 12 */
d                 277 ext/standard/sha1.c 	FF(d, e, a, b, c, x[12]);  /* 13 */
d                 278 ext/standard/sha1.c 	FF(c, d, e, a, b, x[13]);  /* 14 */
d                 279 ext/standard/sha1.c 	FF(b, c, d, e, a, x[14]);  /* 15 */
d                 280 ext/standard/sha1.c 	FF(a, b, c, d, e, x[15]);  /* 16 */
d                 281 ext/standard/sha1.c 	FF(e, a, b, c, d, W(16));  /* 17 */
d                 282 ext/standard/sha1.c 	FF(d, e, a, b, c, W(17));  /* 18 */
d                 283 ext/standard/sha1.c 	FF(c, d, e, a, b, W(18));  /* 19 */
d                 284 ext/standard/sha1.c 	FF(b, c, d, e, a, W(19));  /* 20 */
d                 287 ext/standard/sha1.c 	GG(a, b, c, d, e, W(20));  /* 21 */
d                 288 ext/standard/sha1.c 	GG(e, a, b, c, d, W(21));  /* 22 */
d                 289 ext/standard/sha1.c 	GG(d, e, a, b, c, W(22));  /* 23 */
d                 290 ext/standard/sha1.c 	GG(c, d, e, a, b, W(23));  /* 24 */
d                 291 ext/standard/sha1.c 	GG(b, c, d, e, a, W(24));  /* 25 */
d                 292 ext/standard/sha1.c 	GG(a, b, c, d, e, W(25));  /* 26 */
d                 293 ext/standard/sha1.c 	GG(e, a, b, c, d, W(26));  /* 27 */
d                 294 ext/standard/sha1.c 	GG(d, e, a, b, c, W(27));  /* 28 */
d                 295 ext/standard/sha1.c 	GG(c, d, e, a, b, W(28));  /* 29 */
d                 296 ext/standard/sha1.c 	GG(b, c, d, e, a, W(29));  /* 30 */
d                 297 ext/standard/sha1.c 	GG(a, b, c, d, e, W(30));  /* 31 */
d                 298 ext/standard/sha1.c 	GG(e, a, b, c, d, W(31));  /* 32 */
d                 299 ext/standard/sha1.c 	GG(d, e, a, b, c, W(32));  /* 33 */
d                 300 ext/standard/sha1.c 	GG(c, d, e, a, b, W(33));  /* 34 */
d                 301 ext/standard/sha1.c 	GG(b, c, d, e, a, W(34));  /* 35 */
d                 302 ext/standard/sha1.c 	GG(a, b, c, d, e, W(35));  /* 36 */
d                 303 ext/standard/sha1.c 	GG(e, a, b, c, d, W(36));  /* 37 */
d                 304 ext/standard/sha1.c 	GG(d, e, a, b, c, W(37));  /* 38 */
d                 305 ext/standard/sha1.c 	GG(c, d, e, a, b, W(38));  /* 39 */
d                 306 ext/standard/sha1.c 	GG(b, c, d, e, a, W(39));  /* 40 */
d                 309 ext/standard/sha1.c 	HH(a, b, c, d, e, W(40));  /* 41 */
d                 310 ext/standard/sha1.c 	HH(e, a, b, c, d, W(41));  /* 42 */
d                 311 ext/standard/sha1.c 	HH(d, e, a, b, c, W(42));  /* 43 */
d                 312 ext/standard/sha1.c 	HH(c, d, e, a, b, W(43));  /* 44 */
d                 313 ext/standard/sha1.c 	HH(b, c, d, e, a, W(44));  /* 45 */
d                 314 ext/standard/sha1.c 	HH(a, b, c, d, e, W(45));  /* 46 */
d                 315 ext/standard/sha1.c 	HH(e, a, b, c, d, W(46));  /* 47 */
d                 316 ext/standard/sha1.c 	HH(d, e, a, b, c, W(47));  /* 48 */
d                 317 ext/standard/sha1.c 	HH(c, d, e, a, b, W(48));  /* 49 */
d                 318 ext/standard/sha1.c 	HH(b, c, d, e, a, W(49));  /* 50 */
d                 319 ext/standard/sha1.c 	HH(a, b, c, d, e, W(50));  /* 51 */
d                 320 ext/standard/sha1.c 	HH(e, a, b, c, d, W(51));  /* 52 */
d                 321 ext/standard/sha1.c 	HH(d, e, a, b, c, W(52));  /* 53 */
d                 322 ext/standard/sha1.c 	HH(c, d, e, a, b, W(53));  /* 54 */
d                 323 ext/standard/sha1.c 	HH(b, c, d, e, a, W(54));  /* 55 */
d                 324 ext/standard/sha1.c 	HH(a, b, c, d, e, W(55));  /* 56 */
d                 325 ext/standard/sha1.c 	HH(e, a, b, c, d, W(56));  /* 57 */
d                 326 ext/standard/sha1.c 	HH(d, e, a, b, c, W(57));  /* 58 */
d                 327 ext/standard/sha1.c 	HH(c, d, e, a, b, W(58));  /* 59 */
d                 328 ext/standard/sha1.c 	HH(b, c, d, e, a, W(59));  /* 60 */
d                 331 ext/standard/sha1.c 	II(a, b, c, d, e, W(60));  /* 61 */
d                 332 ext/standard/sha1.c 	II(e, a, b, c, d, W(61));  /* 62 */
d                 333 ext/standard/sha1.c 	II(d, e, a, b, c, W(62));  /* 63 */
d                 334 ext/standard/sha1.c 	II(c, d, e, a, b, W(63));  /* 64 */
d                 335 ext/standard/sha1.c 	II(b, c, d, e, a, W(64));  /* 65 */
d                 336 ext/standard/sha1.c 	II(a, b, c, d, e, W(65));  /* 66 */
d                 337 ext/standard/sha1.c 	II(e, a, b, c, d, W(66));  /* 67 */
d                 338 ext/standard/sha1.c 	II(d, e, a, b, c, W(67));  /* 68 */
d                 339 ext/standard/sha1.c 	II(c, d, e, a, b, W(68));  /* 69 */
d                 340 ext/standard/sha1.c 	II(b, c, d, e, a, W(69));  /* 70 */
d                 341 ext/standard/sha1.c 	II(a, b, c, d, e, W(70));  /* 71 */
d                 342 ext/standard/sha1.c 	II(e, a, b, c, d, W(71));  /* 72 */
d                 343 ext/standard/sha1.c 	II(d, e, a, b, c, W(72));  /* 73 */
d                 344 ext/standard/sha1.c 	II(c, d, e, a, b, W(73));  /* 74 */
d                 345 ext/standard/sha1.c 	II(b, c, d, e, a, W(74));  /* 75 */
d                 346 ext/standard/sha1.c 	II(a, b, c, d, e, W(75));  /* 76 */
d                 347 ext/standard/sha1.c 	II(e, a, b, c, d, W(76));  /* 77 */
d                 348 ext/standard/sha1.c 	II(d, e, a, b, c, W(77));  /* 78 */
d                 349 ext/standard/sha1.c 	II(c, d, e, a, b, W(78));  /* 79 */
d                 350 ext/standard/sha1.c 	II(b, c, d, e, a, W(79));  /* 80 */
d                 355 ext/standard/sha1.c 	state[3] += d;
d                 168 ext/standard/string.c 		unsigned char d;
d                 172 ext/standard/string.c 			d = (l - 0x10 - 0x27 * is_letter) << 4;
d                 181 ext/standard/string.c 			d |= l - 0x10 - 0x27 * is_letter;
d                 186 ext/standard/string.c 		ret[i] = d;
d                 696 ext/standard/var.c 		zval *d, *val;
d                 715 ext/standard/var.c 			if ((d = zend_hash_find(propers, name)) != NULL) {
d                 716 ext/standard/var.c 				if (Z_TYPE_P(d) == IS_INDIRECT) {
d                 717 ext/standard/var.c 					d = Z_INDIRECT_P(d);
d                 718 ext/standard/var.c 					if (Z_TYPE_P(d) == IS_UNDEF) {
d                 724 ext/standard/var.c 				php_var_serialize_intern(buf, d, var_hash);
d                 733 ext/standard/var.c 						if ((d = zend_hash_find(propers, priv_name)) != NULL) {
d                 734 ext/standard/var.c 							if (Z_TYPE_P(d) == IS_INDIRECT) {
d                 735 ext/standard/var.c 								d = Z_INDIRECT_P(d);
d                 736 ext/standard/var.c 								if (Z_ISUNDEF_P(d)) {
d                 742 ext/standard/var.c 							php_var_serialize_intern(buf, d, var_hash);
d                 748 ext/standard/var.c 						if ((d = zend_hash_find(propers, prot_name)) != NULL) {
d                 749 ext/standard/var.c 							if (Z_TYPE_P(d) == IS_INDIRECT) {
d                 750 ext/standard/var.c 								d = Z_INDIRECT_P(d);
d                 751 ext/standard/var.c 								if (Z_TYPE_P(d) == IS_UNDEF) {
d                 758 ext/standard/var.c 							php_var_serialize_intern(buf, d, var_hash);
d                 305 ext/standard/var_unserializer.c 		zval key, *data, d, *old_data;
d                 316 ext/standard/var_unserializer.c 		ZVAL_UNDEF(&d);
d                 325 ext/standard/var_unserializer.c 					data = zend_hash_index_update(ht, idx, &d);
d                 327 ext/standard/var_unserializer.c 					data = zend_hash_index_add_new(ht, idx, &d);
d                 336 ext/standard/var_unserializer.c 					data = zend_hash_update(ht, Z_STR(key), &d);
d                 338 ext/standard/var_unserializer.c 					data = zend_hash_add_new(ht, Z_STR(key), &d);
d                 352 ext/standard/var_unserializer.c 					data = zend_hash_update_ind(ht, Z_STR(key), &d);
d                 354 ext/standard/var_unserializer.c 					data = zend_hash_add_new(ht, Z_STR(key), &d);
d                 532 ext/xml/compat.c XML_SetDefaultHandler(XML_Parser parser, XML_DefaultHandler d)
d                 534 ext/xml/compat.c 	parser->h_default = d;
d                 286 ext/xmlrpc/libxmlrpc/queue.c int Q_PushHead(queue *q, void *d)
d                 288 ext/xmlrpc/libxmlrpc/queue.c    if(q && d) {
d                 310 ext/xmlrpc/libxmlrpc/queue.c       q->head->data = d;
d                 338 ext/xmlrpc/libxmlrpc/queue.c int Q_PushTail(queue *q, void *d)
d                 340 ext/xmlrpc/libxmlrpc/queue.c    if(q && d) {
d                 362 ext/xmlrpc/libxmlrpc/queue.c       q->tail->data =  d;
d                 393 ext/xmlrpc/libxmlrpc/queue.c    void        *d;
d                 398 ext/xmlrpc/libxmlrpc/queue.c    d = q->head->data;
d                 414 ext/xmlrpc/libxmlrpc/queue.c    return d;
d                 436 ext/xmlrpc/libxmlrpc/queue.c    void        *d;
d                 441 ext/xmlrpc/libxmlrpc/queue.c    d = q->tail->data;
d                 456 ext/xmlrpc/libxmlrpc/queue.c    return d;
d                 523 ext/xmlrpc/libxmlrpc/queue.c    void        *d;
d                 540 ext/xmlrpc/libxmlrpc/queue.c    d = ((node*)iter)->data;
d                 564 ext/xmlrpc/libxmlrpc/queue.c    return d;
d                 693 ext/xmlrpc/libxmlrpc/queue.c    void *d;
d                 699 ext/xmlrpc/libxmlrpc/queue.c    d = Q_Head(q);
d                 701 ext/xmlrpc/libxmlrpc/queue.c       if(Comp(d, data) == 0)
d                 703 ext/xmlrpc/libxmlrpc/queue.c       d = Q_Next(q);
d                 706 ext/xmlrpc/libxmlrpc/queue.c    if(Comp(d, data) == 0)
d                 780 ext/xmlrpc/libxmlrpc/queue.c    void        *d;
d                 805 ext/xmlrpc/libxmlrpc/queue.c    d = Q_Head(q);
d                 807 ext/xmlrpc/libxmlrpc/queue.c       index[i] = d;
d                 809 ext/xmlrpc/libxmlrpc/queue.c       d = Q_Next(q);
d                 827 ext/xmlrpc/libxmlrpc/queue.c    if(d != NULL)
d                 828 ext/xmlrpc/libxmlrpc/queue.c       Q_Find(q, d, Comp);
d                  54 ext/xmlrpc/libxmlrpc/queue.h int    Q_PushHead(queue *q, void *d);
d                  55 ext/xmlrpc/libxmlrpc/queue.h int    Q_PushTail(queue *q, void *d);
d                1646 ext/xmlrpc/libxmlrpc/xmlrpc.c 			XMLRPC_SetValueDouble (xReturn, xSource->d);
d                1866 ext/xmlrpc/libxmlrpc/xmlrpc.c       value->d = val;
d                1890 ext/xmlrpc/libxmlrpc/xmlrpc.c XMLRPC_VALUE XMLRPC_CreateValueDouble(const char* id, double d) {
d                1893 ext/xmlrpc/libxmlrpc/xmlrpc.c       XMLRPC_SetValueDouble(val, d);
d                2016 ext/xmlrpc/libxmlrpc/xmlrpc.c     return ((value && value->type == xmlrpc_double) ? value->d : 0);
d                  94 ext/xmlrpc/libxmlrpc/xmlrpc_private.h    double d;               /* double value                                   */
d                 194 main/php.h     #  define memcpy(d, s, n)	bcopy((s), (d), (n))
d                 197 main/php.h     #  define memmove(d, s, n)	bcopy ((s), (d), (n))
d                  65 main/php_ticks.c static void php_tick_iterator(void *d, void *arg)
d                  67 main/php_ticks.c 	struct st_tick_function *data = (struct st_tick_function *)d;
d                 147 main/streams/plain_wrapper.c static int do_fstat(php_stdio_stream_data *d, int force)
d                 149 main/streams/plain_wrapper.c 	if (!d->cached_fstat || force) {
d                 153 main/streams/plain_wrapper.c 		PHP_STDIOP_GET_FD(fd, d);
d                 154 main/streams/plain_wrapper.c 		r = zend_fstat(fd, &d->sb);
d                 155 main/streams/plain_wrapper.c 		d->cached_fstat = r == 0;
d                  72 main/strlcat.c 	register char *d = dst;
d                  78 main/strlcat.c 	while (*d != '\0' && n-- != 0)
d                  79 main/strlcat.c 		d++;
d                  80 main/strlcat.c 	dlen = d - dst;
d                  87 main/strlcat.c 			*d++ = *s;
d                  92 main/strlcat.c 	*d = '\0';
d                  71 main/strlcpy.c 	register char *d = dst;
d                  78 main/strlcpy.c 			if ((*d++ = *s++) == 0)
d                  86 main/strlcpy.c 			*d = '\0';		/* NUL-terminate dst */
d                  59 sapi/apache2handler/apache_config.c 	php_conf_rec *d = dummy;
d                  62 sapi/apache2handler/apache_config.c 	phpapdebug((stderr, "Getting %s=%s for %p (%d)\n", name, value, dummy, zend_hash_num_elements(&d->config)));
d                  73 sapi/apache2handler/apache_config.c 	zend_hash_str_update_mem(&d->config, (char *) name, strlen(name), &e, sizeof(e));
d                 149 sapi/apache2handler/apache_config.c 	php_conf_rec *d = base_conf, *e = new_conf, *n = NULL;
d                 153 sapi/apache2handler/apache_config.c 	zend_hash_copy(&n->config, &d->config, config_entry_ctor);
d                 162 sapi/apache2handler/apache_config.c 	php_conf_rec *d = conf;
d                 165 sapi/apache2handler/apache_config.c 	if ((pe = zend_hash_str_find_ptr(&d->config, name, name_len)) != NULL) {
d                 174 sapi/apache2handler/apache_config.c 	php_conf_rec *d = dummy;
d                 178 sapi/apache2handler/apache_config.c 	ZEND_HASH_FOREACH_STR_KEY_PTR(&d->config, str, data) {
d                 198 sapi/apache2handler/apache_config.c 	php_conf_rec *d = data;
d                 201 sapi/apache2handler/apache_config.c 	zend_hash_destroy(&d->config);
d                 311 sapi/cli/php_cli_server.c 		int d = template_map[c].code;
d                 312 sapi/cli/php_cli_server.c 		if (d > code) {
d                 314 sapi/cli/php_cli_server.c 		} else if (d < code) {
d                  10 sapi/fpm/fpm/fpm_str.h 	char *d, *end;
d                  12 sapi/fpm/fpm/fpm_str.h 	d = dst;
d                  15 sapi/fpm/fpm/fpm_str.h 	for (; d < end && *src; ++d, ++src) {
d                  17 sapi/fpm/fpm/fpm_str.h 			*d = '.';
d                  19 sapi/fpm/fpm/fpm_str.h 			*d = *src;
d                  23 sapi/fpm/fpm/fpm_str.h 	*d = '\0';
d                  25 sapi/fpm/fpm/fpm_str.h 	return d;
d                3485 sapi/litespeed/lsapilib.c     register uint32 a, b, c, d;
d                3490 sapi/litespeed/lsapilib.c     d = buf[3];
d                3492 sapi/litespeed/lsapilib.c     MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
d                3493 sapi/litespeed/lsapilib.c     MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
d                3494 sapi/litespeed/lsapilib.c     MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
d                3495 sapi/litespeed/lsapilib.c     MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
d                3496 sapi/litespeed/lsapilib.c     MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
d                3497 sapi/litespeed/lsapilib.c     MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
d                3498 sapi/litespeed/lsapilib.c     MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
d                3499 sapi/litespeed/lsapilib.c     MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
d                3500 sapi/litespeed/lsapilib.c     MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
d                3501 sapi/litespeed/lsapilib.c     MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
d                3502 sapi/litespeed/lsapilib.c     MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
d                3503 sapi/litespeed/lsapilib.c     MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
d                3504 sapi/litespeed/lsapilib.c     MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
d                3505 sapi/litespeed/lsapilib.c     MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
d                3506 sapi/litespeed/lsapilib.c     MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
d                3507 sapi/litespeed/lsapilib.c     MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
d                3509 sapi/litespeed/lsapilib.c     MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
d                3510 sapi/litespeed/lsapilib.c     MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
d                3511 sapi/litespeed/lsapilib.c     MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
d                3512 sapi/litespeed/lsapilib.c     MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
d                3513 sapi/litespeed/lsapilib.c     MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
d                3514 sapi/litespeed/lsapilib.c     MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
d                3515 sapi/litespeed/lsapilib.c     MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
d                3516 sapi/litespeed/lsapilib.c     MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
d                3517 sapi/litespeed/lsapilib.c     MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
d                3518 sapi/litespeed/lsapilib.c     MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
d                3519 sapi/litespeed/lsapilib.c     MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
d                3520 sapi/litespeed/lsapilib.c     MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
d                3521 sapi/litespeed/lsapilib.c     MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
d                3522 sapi/litespeed/lsapilib.c     MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
d                3523 sapi/litespeed/lsapilib.c     MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
d                3524 sapi/litespeed/lsapilib.c     MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
d                3526 sapi/litespeed/lsapilib.c     MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
d                3527 sapi/litespeed/lsapilib.c     MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
d                3528 sapi/litespeed/lsapilib.c     MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
d                3529 sapi/litespeed/lsapilib.c     MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
d                3530 sapi/litespeed/lsapilib.c     MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
d                3531 sapi/litespeed/lsapilib.c     MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
d                3532 sapi/litespeed/lsapilib.c     MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
d                3533 sapi/litespeed/lsapilib.c     MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
d                3534 sapi/litespeed/lsapilib.c     MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
d                3535 sapi/litespeed/lsapilib.c     MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
d                3536 sapi/litespeed/lsapilib.c     MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
d                3537 sapi/litespeed/lsapilib.c     MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
d                3538 sapi/litespeed/lsapilib.c     MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
d                3539 sapi/litespeed/lsapilib.c     MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
d                3540 sapi/litespeed/lsapilib.c     MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
d                3541 sapi/litespeed/lsapilib.c     MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
d                3543 sapi/litespeed/lsapilib.c     MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
d                3544 sapi/litespeed/lsapilib.c     MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
d                3545 sapi/litespeed/lsapilib.c     MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
d                3546 sapi/litespeed/lsapilib.c     MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
d                3547 sapi/litespeed/lsapilib.c     MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
d                3548 sapi/litespeed/lsapilib.c     MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
d                3549 sapi/litespeed/lsapilib.c     MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
d                3550 sapi/litespeed/lsapilib.c     MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
d                3551 sapi/litespeed/lsapilib.c     MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
d                3552 sapi/litespeed/lsapilib.c     MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
d                3553 sapi/litespeed/lsapilib.c     MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
d                3554 sapi/litespeed/lsapilib.c     MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
d                3555 sapi/litespeed/lsapilib.c     MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
d                3556 sapi/litespeed/lsapilib.c     MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
d                3557 sapi/litespeed/lsapilib.c     MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
d                3558 sapi/litespeed/lsapilib.c     MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);
d                3563 sapi/litespeed/lsapilib.c     buf[3] += d;