Home
last modified time | relevance | path

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

1234

/PHP-7.4/Zend/
H A Dzend_API.c1262 zval *dst = object->properties_table; in _object_properties_init() local
1267 ZVAL_COPY_OR_DUP_PROP(dst, src); in _object_properties_init()
1269 dst++; in _object_properties_init()
1273 ZVAL_COPY_PROP(dst, src); in _object_properties_init()
1275 dst++; in _object_properties_init()
H A Dzend_builtin_functions.c821 static void copy_constant_array(zval *dst, zval *src) /* {{{ */ in copy_constant_array() argument
827 array_init_size(dst, zend_hash_num_elements(Z_ARRVAL_P(src))); in copy_constant_array()
832 new_val = zend_hash_add_new(Z_ARRVAL_P(dst), key, val); in copy_constant_array()
834 new_val = zend_hash_index_add_new(Z_ARRVAL_P(dst), idx, val); in copy_constant_array()
H A Dzend_compile.c3577 HashTable *dst = zend_new_array(zend_hash_num_elements(src)); in zend_compile_func_in_array() local
3584 zend_hash_add(dst, Z_STR_P(val), &tmp); in zend_compile_func_in_array()
3586 zend_hash_index_add(dst, Z_LVAL_P(val), &tmp); in zend_compile_func_in_array()
3588 zend_array_destroy(dst); in zend_compile_func_in_array()
3597 zend_array_destroy(dst); in zend_compile_func_in_array()
3601 zend_hash_add(dst, Z_STR_P(val), &tmp); in zend_compile_func_in_array()
3609 Z_ARRVAL(array.u.constant) = dst; in zend_compile_func_in_array()
H A Dzend_execute.c3771 zval *dst = ZEND_CALL_ARG(new_call, 1); in zend_vm_stack_copy_call_frame() local
3773 ZVAL_COPY_VALUE(dst, src); in zend_vm_stack_copy_call_frame()
3776 dst++; in zend_vm_stack_copy_call_frame()
H A Dzend_inheritance.c1164 zval *src, *dst, *end; in zend_do_inheritance_ex() local
1173 dst--; in zend_do_inheritance_ex()
1176 } while (dst != end); in zend_do_inheritance_ex()
1188 dst--; in zend_do_inheritance_ex()
1195 } while (dst != end); in zend_do_inheritance_ex()
1198 dst--; in zend_do_inheritance_ex()
1205 } while (dst != end); in zend_do_inheritance_ex()
1220 dst--; in zend_do_inheritance_ex()
1241 dst--; in zend_do_inheritance_ex()
1256 dst--; in zend_do_inheritance_ex()
[all …]
H A Dzend_llist.c149 ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src) in zend_llist_copy() argument
153 zend_llist_init(dst, src->size, src->dtor, src->persistent); in zend_llist_copy()
156 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.c207 zval *dst = new_object->properties_table; in zend_objects_clone_members() local
211 i_zval_ptr_dtor(dst); in zend_objects_clone_members()
212 ZVAL_COPY_VALUE_PROP(dst, src); in zend_objects_clone_members()
213 zval_add_ref(dst); in zend_objects_clone_members()
214 if (UNEXPECTED(Z_ISREF_P(dst)) && in zend_objects_clone_members()
215 (ZEND_DEBUG || ZEND_REF_HAS_TYPE_SOURCES(Z_REF_P(dst)))) { in zend_objects_clone_members()
216 zend_property_info *prop_info = zend_get_property_info_for_slot(new_object, dst); in zend_objects_clone_members()
218 ZEND_REF_ADD_TYPE_SOURCE(Z_REF_P(dst), prop_info); in zend_objects_clone_members()
222 dst++; in zend_objects_clone_members()
H A Dzend_operators.c194 zval dst; in _convert_scalar_to_number() local
202 if (Z_TYPE(dst) == IS_LONG || Z_TYPE(dst) == IS_DOUBLE) { in _convert_scalar_to_number()
203 ZVAL_COPY_VALUE(op, &dst); in _convert_scalar_to_number()
369 zval dst; in convert_to_long_base() local
428 zval dst; in convert_to_double() local
500 zval dst; in convert_to_boolean() local
505 if (Z_TYPE_INFO(dst) == IS_FALSE || Z_TYPE_INFO(dst) == IS_TRUE) { in convert_to_boolean()
801 zval dst; in _zval_get_long_func_ex() local
804 return Z_LVAL(dst); in _zval_get_long_func_ex()
851 zval dst; in zval_get_double_func() local
[all …]
/PHP-7.4/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-7.4/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h153 PHP_COM_DOTNET_API int php_com_copy_variant(VARIANT *dst, VARIANT *src);
/PHP-7.4/ext/date/lib/
H A Dinterval.c73 if (one_backup.dst == 0 && two_backup.dst == 1 && two->sse >= one->sse + 86400 - dst_corr) { in timelib_diff()
83 if (one_backup.dst == 1 && two_backup.dst == 0 && two->sse >= one->sse + 86400) { in timelib_diff()
127 if (old_time->dst == 1 && t->dst == 0 && !interval->y && !interval->m && !interval->d) { in timelib_add()
161 if (old_time->dst == 1 && t->dst == 0 && !interval->y && !interval->m && !interval->d) { in timelib_sub()
166 if (old_time->dst == 0 && t->dst == 1 && !interval->y && !interval->m && !interval->d ) { in timelib_sub()
H A Dparse_date.c728 *dst = tp->type; in timelib_lookup_abbr()
796 t->dst = 0; in timelib_parse_tz_minutes()
802 t->dst = 0; in timelib_parse_tz_minutes()
827 t->dst = 0; in timelib_parse_zone()
835 t->dst = 0; in timelib_parse_zone()
21489 s->time->dst = 0; in scan()
21545 s->time->dst = 0; in scan()
24983 in.time->dst = TIMELIB_UNSET; in timelib_strtotime()
25151 in.time->dst = TIMELIB_UNSET; in timelib_parse_from_format_with_map()
25359 s->time->dst = 0; in timelib_parse_from_format_with_map()
[all …]
H A Dparse_date.re726 *dst = tp->type;
794 t->dst = 0;
800 t->dst = 0;
825 t->dst = 0;
833 t->dst = 0;
1093 s->time->dst = 0;
1121 s->time->dst = 0;
1875 in.time->dst = TIMELIB_UNSET;
2043 in.time->dst = TIMELIB_UNSET;
2251 s->time->dst = 0;
[all …]
H A Dparse_iso_intervals.c984 in.begin->dst = 0; in timelib_strtointerval()
997 in.end->dst = 0; in timelib_strtointerval()
H A Dparse_iso_intervals.re379 in.begin->dst = 0;
392 in.end->dst = 0;
H A Dparse_tz.c702 return t->z + (t->dst * 3600); in timelib_get_current_offset()
H A Dtimelib.c294 printf(" GMT %05d%s", d->z, d->dst == 1 ? " (DST)" : ""); in timelib_dump_date()
308 printf(" %05d%s", d->z, d->dst == 1 ? " (DST)" : ""); in timelib_dump_date()
H A Dtimelib.h213 signed int dst; /* Flag if we were parsing a DST zone */ member
231 int dst; member
555 timelib_long timelib_parse_zone(char **ptr, int *dst, timelib_time *t, int *tz_not_found, const tim…
H A Dtm2unixtime.c441 tmp -= tz->dst * 3600; in do_adjust_timezone()
481 tz->dst = gmt_offset->is_dst; in do_adjust_timezone()
522 time.y, time.m, time.d, time.h, time.i, time.s, time.f, time.z, time.dst);
H A Dunixtime2tm.c112 tm->dst = 0; in timelib_unixtime2gmt()
123 signed int dst = tm->dst; in timelib_update_from_sse() local
130 timelib_unixtime2gmt(tm, tm->sse + tm->z + (tm->dst * 3600)); in timelib_update_from_sse()
154 tm->dst = dst; in timelib_update_from_sse()
166 signed int dst = tm->dst; in timelib_unixtime2local() local
168 timelib_unixtime2gmt(tm, ts + tm->z + (tm->dst * 3600)); in timelib_unixtime2local()
172 tm->dst = dst; in timelib_unixtime2local()
182 tm->dst = gmt_offset->is_dst; in timelib_unixtime2local()
210 t->dst = 0; in timelib_set_timezone_from_offset()
224 t->dst = abbr_info.dst; in timelib_set_timezone_from_abbr()
[all …]
/PHP-7.4/ext/date/
H A Dphp_date.c1136 offset->offset = (t->z + (t->dst * 3600)); in date_format()
1138 offset->is_dst = t->dst; in date_format()
1348 offset->offset = (t->z + (t->dst * 3600)); in php_idate()
1350 offset->is_dst = t->dst; in php_idate()
1354 offset->offset = (t->z + (t->dst * 3600)); in php_idate()
1356 offset->is_dst = t->dst; in php_idate()
2385 new_obj->tzi.z.dst = old_obj->tzi.z.dst; in date_object_clone_timezone()
2745 new_dst = tzobj->tzi.z.dst; in php_date_initialize()
2767 now->dst = new_dst; in php_date_initialize()
3476 tzobj->tzi.z.dst = t->dst; in set_timezone_from_timelib_time()
[all …]
/PHP-7.4/ext/date/tests/
H A D010.phpt14 ["dst"]=>
23 ["dst"]=>
32 ["dst"]=>
41 ["dst"]=>
50 ["dst"]=>
H A DDateTimeZone_listAbbreviations_basic1.phpt6 * Description: Returns associative array containing dst, offset and the timezone name
35 ["dst"]=>
44 ["dst"]=>
53 ["dst"]=>
62 ["dst"]=>
71 ["dst"]=>
80 ["dst"]=>
H A Dbug30096.phpt7 echo "no dst --> dst\n";
14 echo "\ndst --> no dst\n";
38 no dst --> dst
44 dst --> no dst

Completed in 181 milliseconds

1234