Home
last modified time | relevance | path

Searched defs:d (Results 1 – 25 of 90) sorted by relevance

1234

/PHP-7.3/ext/standard/
H A Dphp_var.h54 #define PHP_VAR_SERIALIZE_INIT(d) \ argument
57 #define PHP_VAR_SERIALIZE_DESTROY(d) \ argument
60 #define PHP_VAR_UNSERIALIZE_INIT(d) \ argument
63 #define PHP_VAR_UNSERIALIZE_DESTROY(d) \ argument
H A Dsha1.c134 #define FF(a, b, c, d, e, w) { \ argument
139 #define GG(a, b, c, d, e, w) { \ argument
144 #define HH(a, b, c, d, e, w) { \ argument
149 #define II(a, b, c, d, e, w) { \ argument
259 uint32_t d = state[3], e = state[4], x[16], tmp; local
H A Dvar_unserializer.c35 php_unserialize_data_t d; in php_var_unserialize_init() local
50 PHPAPI void php_var_unserialize_destroy(php_unserialize_data_t d) { in php_var_unserialize_destroy()
61 PHPAPI HashTable *php_var_unserialize_get_allowed_classes(php_unserialize_data_t d) { in php_var_unserialize_get_allowed_classes()
64 PHPAPI void php_var_unserialize_set_allowed_classes(php_unserialize_data_t d, HashTable *classes) { in php_var_unserialize_set_allowed_classes()
395 zval key, *data, d, *old_data; in process_nested_data() local
H A Dmd5.h44 uint32_t a, b, c, d; member
H A Dmd5.c156 #define STEP(f, a, b, c, d, x, t, s) \ argument
192 uint32_t a, b, c, d; in body() local
H A Dpack.c152 static void php_pack_copy_double(int is_little_endian, void * dst, double d) in php_pack_copy_double()
155 double d; in php_pack_copy_double() member
203 double d; in php_pack_parse_double() member
/PHP-7.3/ext/date/lib/
H A Ddow.c48 static timelib_sll timelib_day_of_week_ex(timelib_sll y, timelib_sll m, timelib_sll d, int iso) in timelib_day_of_week_ex()
67 timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d) in timelib_day_of_week()
72 timelib_sll timelib_iso_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d) in timelib_iso_day_of_week()
83 timelib_sll timelib_day_of_year(timelib_sll y, timelib_sll m, timelib_sll d) in timelib_day_of_year()
93 void timelib_isoweek_from_date(timelib_sll y, timelib_sll m, timelib_sll d, timelib_sll *iw, timeli… in timelib_isoweek_from_date()
141 void timelib_isodate_from_date(timelib_sll y, timelib_sll m, timelib_sll d, timelib_sll *iy, timeli… in timelib_isodate_from_date()
160 …ate(timelib_sll iy, timelib_sll iw, timelib_sll id, timelib_sll *y, timelib_sll *m, timelib_sll *d) in timelib_date_from_isodate()
203 int timelib_valid_date(timelib_sll y, timelib_sll m, timelib_sll d) in timelib_valid_date()
H A Dastro.c33 #define days_since_2000_Jan_0(y,m,d) \ argument
113 static double astro_GMST0(double d) in astro_GMST0()
133 static void astro_sunpos(double d, double *lon, double *r) in astro_sunpos()
160 static void astro_sun_RA_dec(double d, double *RA, double *dec, double *r) in astro_sun_RA_dec()
214 double d, /* Days since 2000 Jan 0.0 (negative before) */ in timelib_astro_rise_set_altitude() local
H A Dtimelib.c167 timelib_long timelib_date_to_int(timelib_time *d, int *error) in timelib_date_to_int()
280 void timelib_dump_date(timelib_time *d, int options) in timelib_dump_date()
351 void timelib_dump_rel_time(timelib_rel_time *d) in timelib_dump_rel_time()
H A Dtm2unixtime.c66 …ib_sll *base_y, timelib_sll *base_m, timelib_sll *y, timelib_sll *m, timelib_sll *d, timelib_sll i… in do_range_limit_days_relative()
108 static int do_range_limit_days(timelib_sll *y, timelib_sll *m, timelib_sll *d) in do_range_limit_days()
/PHP-7.3/ext/xmlrpc/libxmlrpc/
H A Dqueue.c283 int Q_PushHead(queue *q, void *d) in Q_PushHead()
335 int Q_PushTail(queue *q, void *d) in Q_PushTail()
390 void *d; in Q_PopHead() local
433 void *d; in Q_PopTail() local
520 void *d; in Q_Iter_Del() local
690 void *d; in Q_Find() local
777 void *d; in Q_Sort() local
/PHP-7.3/ext/hash/
H A Dhash_md.c241 #define FF(a, b, c, d, x, s, ac) { \ argument
246 #define GG(a, b, c, d, x, s, ac) { \ argument
251 #define HH(a, b, c, d, x, s, ac) { \ argument
256 #define II(a, b, c, d, x, s, ac) { \ argument
356 uint32_t a = state[0], b = state[1], c = state[2], d = state[3], x[16]; local
452 #define MD4_R1(a,b,c,d,k,s) a = ROTL32(s, a + MD4_F(b,c,d) + x[k]) argument
453 #define MD4_R2(a,b,c,d,k,s) a = ROTL32(s, a + MD4_G(b,c,d) + x[k] + 0x5A827999) argument
454 #define MD4_R3(a,b,c,d,k,s) a = ROTL32(s, a + MD4_H(b,c,d) + x[k] + 0x6ED9EBA1) argument
458 uint32_t a = state[0], b = state[1], c = state[2], d = state[3], x[16]; in MD4Transform() local
H A Dhash_sha.c177 #define FF(a, b, c, d, e, w) { \ argument
182 #define GG(a, b, c, d, e, w) { \ argument
187 #define HH(a, b, c, d, e, w) { \ argument
192 #define II(a, b, c, d, e, w) { \ argument
221 uint32_t d = state[3], e = state[4], x[16], tmp; in SHA1Transform() local
480 uint32_t a = state[0], b = state[1], c = state[2], d = state[3]; in SHA256Transform() local
790 uint64_t a = state[0], b = state[1], c = state[2], d = state[3]; in SHA512Transform() local
H A Dhash_ripemd.c207 uint32_t a = state[0], b = state[1], c = state[2], d = state[3]; in RIPEMD128Transform() local
298 uint32_t a = state[0], b = state[1], c = state[2], d = state[3]; in RIPEMD256Transform() local
396 uint32_t a = state[0], b = state[1], c = state[2], d = state[3], e = state[4]; in RIPEMD160Transform() local
495 uint32_t a = state[0], b = state[1], c = state[2], d = state[3], e = state[4]; in RIPEMD320Transform() local
/PHP-7.3/sapi/apache2handler/
H A Dapache_config.c57 php_conf_rec *d = dummy; in real_value_hnd() local
147 php_conf_rec *d = base_conf, *e = new_conf, *n = NULL; in merge_php_config() local
178 php_conf_rec *d = conf; in get_php_config() local
190 php_conf_rec *d = dummy; in apply_config() local
214 php_conf_rec *d = data; in destroy_php_config() local
/PHP-7.3/ext/json/
H A Djson_encoder.c94 static inline int php_json_is_valid_double(double d) /* {{{ */ in php_json_is_valid_double()
100 static inline void php_json_encode_double(smart_str *buf, double d, int options) /* {{{ */ in php_json_encode_double()
267 double d; in php_json_escape_string() local
/PHP-7.3/Zend/
H A Dzend_operators.h93 # define ZEND_DOUBLE_FITS_LONG(d) (!((d) > (double)ZEND_LONG_MAX || (d) < (double)ZEND_LONG_MIN)) argument
96 # define ZEND_DOUBLE_FITS_LONG(d) (!((d) >= (double)ZEND_LONG_MAX || (d) < (double)ZEND_LONG_MIN)) argument
100 static zend_always_inline zend_long zend_dval_to_lval(double d) in zend_dval_to_lval()
111 static zend_always_inline zend_long zend_dval_to_lval(double d) in zend_dval_to_lval()
122 static zend_always_inline zend_long zend_dval_to_lval_cap(double d) in zend_dval_to_lval_cap()
H A Dzend_sort.c120 static void zend_sort_4(void *a, void *b, void *c, void *d, compare_func_t cmp, swap_func_t swp) /*… in zend_sort_4()
134 static void zend_sort_5(void *a, void *b, void *c, void *d, void *e, compare_func_t cmp, swap_func_… in zend_sort_5()
/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_str.h8 char *d, *end; in str_purify_filename() local
/PHP-7.3/ext/fileinfo/libmagic/
H A Dcdf.c105 uint8_t *d = (uint8_t *)(void *)&rv; in _cdf_tole2() local
119 uint8_t *d = (uint8_t *)(void *)&rv; in _cdf_tole4() local
135 uint8_t *d = (uint8_t *)(void *)&rv; in _cdf_tole8() local
238 cdf_swap_dir(cdf_directory_t *d) in cdf_swap_dir()
254 cdf_swap_class(cdf_classid_t *d) in cdf_swap_class()
262 cdf_unpack_dir(cdf_directory_t *d, char *buf) in cdf_unpack_dir()
746 const cdf_directory_t *d; in cdf_read_short_stream() local
776 cdf_namecmp(const char *d, const uint16_t *s, size_t l) in cdf_namecmp()
807 const cdf_directory_t *d; in cdf_read_user_stream() local
1368 cdf_directory_t *d; in cdf_dump_dir() local
/PHP-7.3/ext/pcre/pcre2lib/
H A Dpcre2_valid_utf.c136 uint32_t ab, d; in PRIV() local
H A Dpcre2_match.c397 uint32_t c, d; in match_ref() local
1498 uint32_t d; in match() local
1534 uint32_t d; in match() local
1580 uint32_t d; in match() local
1640 uint32_t d; in match() local
1674 uint32_t d; in match() local
1718 uint32_t d; in match() local
H A Dpcre2_study.c135 int d, min, recno; in find_minlength() local
1510 int d = (c >> 6) | 0xc0; /* Set bit for this starter */ in set_start_bits() local
/PHP-7.3/main/
H A Dstrlcat.c71 const char *d = dst; local
/PHP-7.3/ext/opcache/Optimizer/
H A Dzend_inference.c314 zend_ulong minOR(zend_ulong a, zend_ulong b, zend_ulong c, zend_ulong d) in minOR()
338 zend_ulong maxOR(zend_ulong a, zend_ulong b, zend_ulong c, zend_ulong d) in maxOR()
361 zend_ulong minAND(zend_ulong a, zend_ulong b, zend_ulong c, zend_ulong d) in minAND()
384 zend_ulong maxAND(zend_ulong a, zend_ulong b, zend_ulong c, zend_ulong d) in maxAND()
408 zend_ulong minXOR(zend_ulong a, zend_ulong b, zend_ulong c, zend_ulong d) in minXOR()
413 zend_ulong maxXOR(zend_ulong a, zend_ulong b, zend_ulong c, zend_ulong d) in maxXOR()
431 static void zend_ssa_range_or(zend_long a, zend_long b, zend_long c, zend_long d, zend_ssa_range *t… in zend_ssa_range_or()
479 static void zend_ssa_range_and(zend_long a, zend_long b, zend_long c, zend_long d, zend_ssa_range *… in zend_ssa_range_and()

Completed in 105 milliseconds

1234