Home
last modified time | relevance | path

Searched refs:dst (Results 1 – 25 of 134) sorted by path

123456

/php-src/Zend/Optimizer/
H A Ddfa_pass.c431 HashTable *dst; in zend_dfa_optimize_calls() local
436 dst = zend_new_array(zend_hash_num_elements(src)); in zend_dfa_optimize_calls()
440 zend_hash_add(dst, Z_STR_P(val), &tmp); in zend_dfa_optimize_calls()
442 zend_hash_index_add(dst, Z_LVAL_P(val), &tmp); in zend_dfa_optimize_calls()
444 zend_array_destroy(dst); in zend_dfa_optimize_calls()
452 zend_array_destroy(dst); in zend_dfa_optimize_calls()
456 zend_hash_add(dst, Z_STR_P(val), &tmp); in zend_dfa_optimize_calls()
480 ZVAL_ARR(&tmp, dst); in zend_dfa_optimize_calls()
627 zend_basic_block *dst = &ssa->cfg.blocks[new_to]; in zend_ssa_replace_control_link() local
643 ZEND_SET_OP_JMP_ADDR(opline, opline->op1, op_array->opcodes + dst->start); in zend_ssa_replace_control_link()
[all …]
H A Dsccp.c125 static void dup_partial_array(zval *dst, const zval *src) in dup_partial_array() argument
127 MAKE_PARTIAL_ARRAY(dst); in dup_partial_array()
128 Z_ARR_P(dst) = zend_array_dup(Z_ARR_P(src)); in dup_partial_array()
137 static void dup_partial_object(zval *dst, const zval *src) in dup_partial_object() argument
139 MAKE_PARTIAL_OBJECT(dst); in dup_partial_object()
140 Z_ARR_P(dst) = zend_array_dup(Z_ARR_P(src)); in dup_partial_object()
/php-src/Zend/
H A Dzend_API.c1586 zval *src, *dst, *end; in zend_update_class_constants() local
1592 dst = default_properties_table; in zend_update_class_constants()
1593 end = dst + class_type->default_properties_count; in zend_update_class_constants()
1595 ZVAL_COPY_PROP(dst, src); in zend_update_class_constants()
1597 dst++; in zend_update_class_constants()
1598 } while (dst != end); in zend_update_class_constants()
1654 zval *dst = object->properties_table; in _object_properties_init() local
1662 ZVAL_COPY_VALUE_PROP(dst, src); in _object_properties_init()
1664 dst++; in _object_properties_init()
1668 ZVAL_COPY_PROP(dst, src); in _object_properties_init()
[all …]
H A Dzend_builtin_functions.c455 static void copy_constant_array(zval *dst, zval *src) /* {{{ */ in copy_constant_array() argument
461 array_init_size(dst, zend_hash_num_elements(Z_ARRVAL_P(src))); in copy_constant_array()
466 new_val = zend_hash_add_new(Z_ARRVAL_P(dst), key, val); in copy_constant_array()
468 new_val = zend_hash_index_add_new(Z_ARRVAL_P(dst), idx, val); in copy_constant_array()
H A Dzend_compile.c4374 HashTable *dst = zend_new_array(zend_hash_num_elements(src)); in zend_compile_func_in_array() local
4381 zend_hash_add(dst, Z_STR_P(val), &tmp); in zend_compile_func_in_array()
4383 zend_hash_index_add(dst, Z_LVAL_P(val), &tmp); in zend_compile_func_in_array()
4385 zend_array_destroy(dst); in zend_compile_func_in_array()
4394 zend_array_destroy(dst); in zend_compile_func_in_array()
4398 zend_hash_add(dst, Z_STR_P(val), &tmp); in zend_compile_func_in_array()
4406 Z_ARRVAL(array.u.constant) = dst; in zend_compile_func_in_array()
H A Dzend_execute.c4172 zval *dst = ZEND_CALL_ARG(new_call, 1); in zend_vm_stack_copy_call_frame() local
4174 ZVAL_COPY_VALUE(dst, src); in zend_vm_stack_copy_call_frame()
4177 dst++; in zend_vm_stack_copy_call_frame()
H A Dzend_hash.c350 Bucket *dst; in zend_hash_packed_to_hash() local
362 dst = ht->arData; in zend_hash_packed_to_hash()
364 ZVAL_COPY_VALUE(&dst->val, src); in zend_hash_packed_to_hash()
365 dst->h = i; in zend_hash_packed_to_hash()
366 dst->key = NULL; in zend_hash_packed_to_hash()
367 dst++; in zend_hash_packed_to_hash()
378 zval *dst; in zend_hash_to_packed() local
387 dst = ht->arPacked; in zend_hash_to_packed()
389 ZVAL_COPY_VALUE(dst, &src->val); in zend_hash_to_packed()
390 dst++; in zend_hash_to_packed()
H A Dzend_inheritance.c1524 zval *src, *dst, *end; in zend_do_inheritance_ex() local
1533 dst--; in zend_do_inheritance_ex()
1536 } while (dst != end); in zend_do_inheritance_ex()
1548 dst--; in zend_do_inheritance_ex()
1559 } while (dst != end); in zend_do_inheritance_ex()
1562 dst--; in zend_do_inheritance_ex()
1570 } while (dst != end); in zend_do_inheritance_ex()
1576 zval *src, *dst, *end; in zend_do_inheritance_ex() local
1585 dst--; in zend_do_inheritance_ex()
1598 dst--; in zend_do_inheritance_ex()
[all …]
H A Dzend_llist.c151 ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src) in zend_llist_copy() argument
155 zend_llist_init(dst, src->size, src->dtor, src->persistent); in zend_llist_copy()
158 zend_llist_add_element(dst, ptr->data); in zend_llist_copy()
H A Dzend_llist.h55 ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src);
H A Dzend_objects.c201 zval *dst = new_object->properties_table; in zend_objects_clone_members() local
205 i_zval_ptr_dtor(dst); in zend_objects_clone_members()
206 ZVAL_COPY_VALUE_PROP(dst, src); in zend_objects_clone_members()
207 zval_add_ref(dst); in zend_objects_clone_members()
210 Z_PROP_FLAG_P(dst) |= IS_PROP_REINITABLE; in zend_objects_clone_members()
213 if (UNEXPECTED(Z_ISREF_P(dst)) && in zend_objects_clone_members()
214 (ZEND_DEBUG || ZEND_REF_HAS_TYPE_SOURCES(Z_REF_P(dst)))) { in zend_objects_clone_members()
215 zend_property_info *prop_info = zend_get_property_info_for_slot(new_object, dst); in zend_objects_clone_members()
217 ZEND_REF_ADD_TYPE_SOURCE(Z_REF_P(dst), prop_info); in zend_objects_clone_members()
221 dst++; in zend_objects_clone_members()
H A Dzend_operators.c276 zval dst; in convert_scalar_to_number() local
281 if (Z_TYPE(dst) == IS_LONG || Z_TYPE(dst) == IS_DOUBLE) { in convert_scalar_to_number()
438 zval dst; in zendi_try_get_long() local
445 return Z_LVAL(dst); in zendi_try_get_long()
577 zval dst; in convert_to_long() local
636 zval dst; in convert_to_double() local
708 zval dst; in convert_to_boolean() local
713 if (Z_TYPE_INFO(dst) == IS_FALSE || Z_TYPE_INFO(dst) == IS_TRUE) { in convert_to_boolean()
956 zval dst; in zval_get_long_func() local
959 return Z_LVAL(dst); in zval_get_long_func()
[all …]
H A Dzend_strtod.c4527 dst = buf; in zend_gcvt()
4529 *dst++ = '-'; in zend_gcvt()
4541 *dst++ = *src++; in zend_gcvt()
4544 *dst++ = '0'; in zend_gcvt()
4552 *dst++ = '-'; in zend_gcvt()
4554 *dst++ = '+'; in zend_gcvt()
4558 *dst = '\0'; in zend_gcvt()
4574 *dst++ = '0'; in zend_gcvt()
4580 *dst = '\0'; in zend_gcvt()
4587 *dst++ = '0'; in zend_gcvt()
[all …]
/php-src/build/
H A Dshtool835 dst=$dstpath
840 dst="$dst/$dstfile"
844 if [ ".$src" = ".$dst" ]; then
854 dsttmp=`echo $dst |\
860 echo "$src -> $dst" 1>&2
922 if [ -r $dst ]; then
923 if cmp -s "$src" "$dst"; then
937 echo "rm -f $dst && mv $dsttmp $dst" 1>&2
939 rm -f $dst && mv $dsttmp $dst
/php-src/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h119 PHP_COM_DOTNET_API zend_result php_com_copy_variant(VARIANT *dst, VARIANT *src);
/php-src/ext/date/lib/
H A Dinterval.c110 if (one->dst == 1 && two->dst == 0) { /* Fall Back */ in timelib_diff_with_tzid()
117 } else if (one->dst == 0 && two->dst == 1) { /* Spring Forward */ in timelib_diff_with_tzid()
164 rt->h = rt->h + one->dst; in timelib_diff()
167 rt->h = rt->h - two->dst; in timelib_diff()
H A Dparse_date.c830 *dst = tp->type; in timelib_lookup_abbr()
923 t->dst = 0; in timelib_parse_tz_minutes()
929 t->dst = 0; in timelib_parse_tz_minutes()
953 t->dst = 0; in timelib_parse_zone()
960 t->dst = 0; in timelib_parse_zone()
974 t->dst = *dst; in timelib_parse_zone()
4141 s->time->dst = 0; in scan()
7809 s->time->dst = 0; in scan()
24894 in.time->dst = TIMELIB_UNSET; in timelib_strtotime()
25316 s->time->dst = 0; in timelib_parse_from_format_with_map()
[all …]
H A Dparse_date.re828 *dst = tp->type;
921 t->dst = 0;
927 t->dst = 0;
951 t->dst = 0;
958 t->dst = 0;
972 t->dst = *dst;
1226 s->time->dst = 0;
1266 s->time->dst = 0;
2044 in.time->dst = TIMELIB_UNSET;
2466 s->time->dst = 0;
[all …]
H A Dparse_iso_intervals.c986 in.begin->dst = 0; in timelib_strtointerval()
999 in.end->dst = 0; in timelib_strtointerval()
H A Dparse_iso_intervals.re381 in.begin->dst = 0;
394 in.end->dst = 0;
H A Dparse_posix.c310 if (ps->dst) { in timelib_posix_str_dtor()
311 timelib_free(ps->dst); in timelib_posix_str_dtor()
351 tmp->dst = read_description(&ptr); in timelib_parse_posix_str()
352 if (!tmp->dst) { in timelib_parse_posix_str()
H A Dparse_tz.c433 if (!tz->posix_info->dst) { in integrate_posix_string()
437 …o->type_index_dst_type = find_ttinfo_index(tz, tz->posix_info->dst_offset, 1, tz->posix_info->dst); in integrate_posix_string()
439 …type_index_dst_type = add_new_ttinfo_index(tz, tz->posix_info->dst_offset, 1, tz->posix_info->dst); in integrate_posix_string()
572 if (tz->posix_info->dst) { in timelib_dump_tzinfo()
942 return t->z + (t->dst * 3600); in timelib_get_current_offset()
962 if ((one->z + (one->dst * 3600)) == (two->z + (two->dst * 3600))) { in timelib_same_timezone()
H A Dtimelib.c319 printf(" GMT %05d%s", d->z, d->dst == 1 ? " (DST)" : ""); in timelib_dump_date()
333 printf(" %05d%s", d->z, d->dst == 1 ? " (DST)" : ""); in timelib_dump_date()
H A Dtimelib.h173 char *dst; member
258 signed int dst; /* Flag if we were parsing a DST zone */ member
276 int dst; member
609 timelib_long timelib_parse_zone(const char **ptr, int *dst, timelib_time *t, int *tz_not_found, con…
H A Dtm2unixtime.c378 tz->sse += (-tz->z - tz->dst * SECS_PER_HOUR); in do_adjust_timezone()
408 if (current_offset >= 0 && tz->dst && !current_is_dst) { in do_adjust_timezone()
418 } else if (current_offset <= 0 && current_is_dst && !tz->dst) { in do_adjust_timezone()
498 time.y, time.m, time.d, time.h, time.i, time.s, time.f, time.z, time.dst);

Completed in 171 milliseconds

123456