Home
last modified time | relevance | path

Searched refs:default_properties_count (Results 1 – 25 of 271) sorted by relevance

1234567891011

/dports/lang/php80/php-8.0.15/Zend/
H A Dzend_objects.c37 ZVAL_UNDEF(object->properties_table + object->ce->default_properties_count); in _zend_object_std_init()
59 if (EXPECTED(object->ce->default_properties_count)) { in zend_object_std_dtor()
60 end = p + object->ce->default_properties_count; in zend_object_std_dtor()
187 if (old_object->ce->default_properties_count) { in zend_objects_clone_members()
190 zval *end = src + old_object->ce->default_properties_count; in zend_objects_clone_members()
264 if (new_object->ce->default_properties_count) { in zend_objects_clone_obj()
266 zval *end = p + new_object->ce->default_properties_count; in zend_objects_clone_obj()
H A Dzend_objects_API.h84 (ce->default_properties_count - in zend_object_properties_size()
102 ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count); in zend_get_property_info_for_slot()
H A Dzend_inheritance.c1164 if (ce->default_properties_count == 0) { in zend_build_properties_info_table()
1169 size = sizeof(zend_property_info *) * ce->default_properties_count; in zend_build_properties_info_table()
1179 if (ce->parent && ce->parent->default_properties_count != 0) { in zend_build_properties_info_table()
1187 if (ce->default_properties_count == ce->parent->default_properties_count) { in zend_build_properties_info_table()
1231 if (parent_ce->default_properties_count) { in zend_do_inheritance_ex()
1234 if (ce->default_properties_count) { in zend_do_inheritance_ex()
1235 …zval *table = pemalloc(sizeof(zval) * (ce->default_properties_count + parent_ce->default_propertie… in zend_do_inheritance_ex()
1237 end = table + parent_ce->default_properties_count; in zend_do_inheritance_ex()
1238 dst = end + ce->default_properties_count; in zend_do_inheritance_ex()
1249 dst = end + parent_ce->default_properties_count; in zend_do_inheritance_ex()
[all …]
/dports/www/mod_php80/php-8.0.15/Zend/
H A Dzend_objects.c37 ZVAL_UNDEF(object->properties_table + object->ce->default_properties_count); in _zend_object_std_init()
59 if (EXPECTED(object->ce->default_properties_count)) { in zend_object_std_dtor()
60 end = p + object->ce->default_properties_count; in zend_object_std_dtor()
187 if (old_object->ce->default_properties_count) { in zend_objects_clone_members()
190 zval *end = src + old_object->ce->default_properties_count; in zend_objects_clone_members()
264 if (new_object->ce->default_properties_count) { in zend_objects_clone_obj()
266 zval *end = p + new_object->ce->default_properties_count; in zend_objects_clone_obj()
H A Dzend_objects_API.h84 (ce->default_properties_count - in zend_object_properties_size()
102 ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count); in zend_get_property_info_for_slot()
H A Dzend_inheritance.c1164 if (ce->default_properties_count == 0) { in zend_build_properties_info_table()
1169 size = sizeof(zend_property_info *) * ce->default_properties_count; in zend_build_properties_info_table()
1179 if (ce->parent && ce->parent->default_properties_count != 0) { in zend_build_properties_info_table()
1187 if (ce->default_properties_count == ce->parent->default_properties_count) { in zend_build_properties_info_table()
1231 if (parent_ce->default_properties_count) { in zend_do_inheritance_ex()
1234 if (ce->default_properties_count) { in zend_do_inheritance_ex()
1235 …zval *table = pemalloc(sizeof(zval) * (ce->default_properties_count + parent_ce->default_propertie… in zend_do_inheritance_ex()
1237 end = table + parent_ce->default_properties_count; in zend_do_inheritance_ex()
1238 dst = end + ce->default_properties_count; in zend_do_inheritance_ex()
1249 dst = end + parent_ce->default_properties_count; in zend_do_inheritance_ex()
[all …]
/dports/lang/php73/php-7.3.33/Zend/
H A Dzend_objects.c36 ZVAL_UNDEF(object->properties_table + object->ce->default_properties_count); in zend_object_std_init()
53 if (EXPECTED(object->ce->default_properties_count)) { in zend_object_std_dtor()
54 end = p + object->ce->default_properties_count; in zend_object_std_dtor()
185 if (old_object->ce->default_properties_count) { in zend_objects_clone_members()
188 zval *end = src + old_object->ce->default_properties_count; in zend_objects_clone_members()
277 if (new_object->ce->default_properties_count) { in zend_objects_clone_obj()
279 zval *end = p + new_object->ce->default_properties_count; in zend_objects_clone_obj()
H A Dzend_inheritance.c827 if (parent_ce->default_properties_count) { in zend_do_inheritance()
830 if (ce->default_properties_count) { in zend_do_inheritance()
831 …zval *table = pemalloc(sizeof(zval) * (ce->default_properties_count + parent_ce->default_propertie… in zend_do_inheritance()
832 src = ce->default_properties_table + ce->default_properties_count; in zend_do_inheritance()
833 end = table + parent_ce->default_properties_count; in zend_do_inheritance()
834 dst = end + ce->default_properties_count; in zend_do_inheritance()
844 …end = pemalloc(sizeof(zval) * parent_ce->default_properties_count, ce->type == ZEND_INTERNAL_CLASS… in zend_do_inheritance()
845 dst = end + parent_ce->default_properties_count; in zend_do_inheritance()
848 src = parent_ce->default_properties_table + parent_ce->default_properties_count; in zend_do_inheritance()
871 ce->default_properties_count += parent_ce->default_properties_count; in zend_do_inheritance()
[all …]
H A Dzend_objects_API.h86 (ce->default_properties_count - in zend_object_properties_size()
/dports/www/mod_php81/php-8.1.1/Zend/
H A Dzend_objects.c37 ZVAL_UNDEF(object->properties_table + object->ce->default_properties_count); in _zend_object_std_init()
59 if (EXPECTED(object->ce->default_properties_count)) { in zend_object_std_dtor()
60 end = p + object->ce->default_properties_count; in zend_object_std_dtor()
195 if (old_object->ce->default_properties_count) { in zend_objects_clone_members()
198 zval *end = src + old_object->ce->default_properties_count; in zend_objects_clone_members()
272 if (new_object->ce->default_properties_count) { in zend_objects_clone_obj()
274 zval *end = p + new_object->ce->default_properties_count; in zend_objects_clone_obj()
H A Dzend_objects_API.h84 (ce->default_properties_count - in zend_object_properties_size()
101 ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count); in zend_get_property_info_for_slot()
H A Dzend_inheritance.c1372 if (ce->default_properties_count == 0) { in zend_build_properties_info_table()
1387 if (ce->parent && ce->parent->default_properties_count != 0) { in zend_build_properties_info_table()
1395 if (ce->default_properties_count == ce->parent->default_properties_count) { in zend_build_properties_info_table()
1439 if (parent_ce->default_properties_count) { in zend_do_inheritance_ex()
1442 if (ce->default_properties_count) { in zend_do_inheritance_ex()
1443 …zval *table = pemalloc(sizeof(zval) * (ce->default_properties_count + parent_ce->default_propertie… in zend_do_inheritance_ex()
1445 end = table + parent_ce->default_properties_count; in zend_do_inheritance_ex()
1446 dst = end + ce->default_properties_count; in zend_do_inheritance_ex()
1457 dst = end + parent_ce->default_properties_count; in zend_do_inheritance_ex()
1485 ce->default_properties_count += parent_ce->default_properties_count; in zend_do_inheritance_ex()
[all …]
H A Dzend_object_handlers.c68 zobj->properties = zend_new_array(ce->default_properties_count); in rebuild_object_properties()
69 if (ce->default_properties_count) { in rebuild_object_properties()
71 for (i = 0; i < ce->default_properties_count; i++) { in rebuild_object_properties()
99 ht = zend_new_array(ce->default_properties_count); in zend_std_build_object_properties_array()
100 if (ce->default_properties_count) { in zend_std_build_object_properties_array()
102 for (i = 0; i < ce->default_properties_count; i++) { in zend_std_build_object_properties_array()
144 *n = zobj->ce->default_properties_count; in zend_std_get_gc()
530 zv = zobj->properties_table + zobj->ce->default_properties_count; in zend_get_property_guard()
1646 if (!zobj1->ce->default_properties_count) { in zend_std_compare_objects()
1660 for (i = 0; i < zobj1->ce->default_properties_count; i++) { in zend_std_compare_objects()
/dports/lang/php81/php-8.1.1/Zend/
H A Dzend_objects.c37 ZVAL_UNDEF(object->properties_table + object->ce->default_properties_count); in _zend_object_std_init()
59 if (EXPECTED(object->ce->default_properties_count)) { in zend_object_std_dtor()
60 end = p + object->ce->default_properties_count; in zend_object_std_dtor()
195 if (old_object->ce->default_properties_count) { in zend_objects_clone_members()
198 zval *end = src + old_object->ce->default_properties_count; in zend_objects_clone_members()
272 if (new_object->ce->default_properties_count) { in zend_objects_clone_obj()
274 zval *end = p + new_object->ce->default_properties_count; in zend_objects_clone_obj()
H A Dzend_objects_API.h84 (ce->default_properties_count - in zend_object_properties_size()
101 ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count); in zend_get_property_info_for_slot()
H A Dzend_inheritance.c1372 if (ce->default_properties_count == 0) { in zend_build_properties_info_table()
1387 if (ce->parent && ce->parent->default_properties_count != 0) { in zend_build_properties_info_table()
1395 if (ce->default_properties_count == ce->parent->default_properties_count) { in zend_build_properties_info_table()
1439 if (parent_ce->default_properties_count) { in zend_do_inheritance_ex()
1442 if (ce->default_properties_count) { in zend_do_inheritance_ex()
1443 …zval *table = pemalloc(sizeof(zval) * (ce->default_properties_count + parent_ce->default_propertie… in zend_do_inheritance_ex()
1445 end = table + parent_ce->default_properties_count; in zend_do_inheritance_ex()
1446 dst = end + ce->default_properties_count; in zend_do_inheritance_ex()
1457 dst = end + parent_ce->default_properties_count; in zend_do_inheritance_ex()
1485 ce->default_properties_count += parent_ce->default_properties_count; in zend_do_inheritance_ex()
[all …]
H A Dzend_object_handlers.c68 zobj->properties = zend_new_array(ce->default_properties_count); in rebuild_object_properties()
69 if (ce->default_properties_count) { in rebuild_object_properties()
71 for (i = 0; i < ce->default_properties_count; i++) { in rebuild_object_properties()
99 ht = zend_new_array(ce->default_properties_count); in zend_std_build_object_properties_array()
100 if (ce->default_properties_count) { in zend_std_build_object_properties_array()
102 for (i = 0; i < ce->default_properties_count; i++) { in zend_std_build_object_properties_array()
144 *n = zobj->ce->default_properties_count; in zend_std_get_gc()
530 zv = zobj->properties_table + zobj->ce->default_properties_count; in zend_get_property_guard()
1646 if (!zobj1->ce->default_properties_count) { in zend_std_compare_objects()
1660 for (i = 0; i < zobj1->ce->default_properties_count; i++) { in zend_std_compare_objects()
/dports/www/mod_php73/php-7.3.33/Zend/
H A Dzend_objects.c36 ZVAL_UNDEF(object->properties_table + object->ce->default_properties_count); in zend_object_std_init()
53 if (EXPECTED(object->ce->default_properties_count)) { in zend_object_std_dtor()
54 end = p + object->ce->default_properties_count; in zend_object_std_dtor()
185 if (old_object->ce->default_properties_count) { in zend_objects_clone_members()
188 zval *end = src + old_object->ce->default_properties_count; in zend_objects_clone_members()
277 if (new_object->ce->default_properties_count) { in zend_objects_clone_obj()
279 zval *end = p + new_object->ce->default_properties_count; in zend_objects_clone_obj()
H A Dzend_inheritance.c827 if (parent_ce->default_properties_count) { in zend_do_inheritance()
830 if (ce->default_properties_count) { in zend_do_inheritance()
831 …zval *table = pemalloc(sizeof(zval) * (ce->default_properties_count + parent_ce->default_propertie… in zend_do_inheritance()
832 src = ce->default_properties_table + ce->default_properties_count; in zend_do_inheritance()
833 end = table + parent_ce->default_properties_count; in zend_do_inheritance()
834 dst = end + ce->default_properties_count; in zend_do_inheritance()
844 …end = pemalloc(sizeof(zval) * parent_ce->default_properties_count, ce->type == ZEND_INTERNAL_CLASS… in zend_do_inheritance()
845 dst = end + parent_ce->default_properties_count; in zend_do_inheritance()
848 src = parent_ce->default_properties_table + parent_ce->default_properties_count; in zend_do_inheritance()
871 ce->default_properties_count += parent_ce->default_properties_count; in zend_do_inheritance()
[all …]
/dports/www/mod_php74/php-7.4.27/Zend/
H A Dzend_objects.c37 ZVAL_UNDEF(object->properties_table + object->ce->default_properties_count); in _zend_object_std_init()
59 if (EXPECTED(object->ce->default_properties_count)) { in zend_object_std_dtor()
60 end = p + object->ce->default_properties_count; in zend_object_std_dtor()
205 if (old_object->ce->default_properties_count) { in zend_objects_clone_members()
208 zval *end = src + old_object->ce->default_properties_count; in zend_objects_clone_members()
304 if (new_object->ce->default_properties_count) { in zend_objects_clone_obj()
306 zval *end = p + new_object->ce->default_properties_count; in zend_objects_clone_obj()
H A Dzend_objects_API.h84 (ce->default_properties_count - in zend_object_properties_size()
102 ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count); in zend_get_property_info_for_slot()
H A Dzend_inheritance.c1083 if (ce->default_properties_count == 0) { in zend_build_properties_info_table()
1088 size = sizeof(zend_property_info *) * ce->default_properties_count; in zend_build_properties_info_table()
1098 if (ce->parent && ce->parent->default_properties_count != 0) { in zend_build_properties_info_table()
1106 if (ce->default_properties_count == ce->parent->default_properties_count) { in zend_build_properties_info_table()
1163 if (parent_ce->default_properties_count) { in zend_do_inheritance_ex()
1166 if (ce->default_properties_count) { in zend_do_inheritance_ex()
1167 …zval *table = pemalloc(sizeof(zval) * (ce->default_properties_count + parent_ce->default_propertie… in zend_do_inheritance_ex()
1169 end = table + parent_ce->default_properties_count; in zend_do_inheritance_ex()
1170 dst = end + ce->default_properties_count; in zend_do_inheritance_ex()
1181 dst = end + parent_ce->default_properties_count; in zend_do_inheritance_ex()
[all …]
/dports/lang/php74/php-7.4.27/Zend/
H A Dzend_objects.c37 ZVAL_UNDEF(object->properties_table + object->ce->default_properties_count); in _zend_object_std_init()
59 if (EXPECTED(object->ce->default_properties_count)) { in zend_object_std_dtor()
60 end = p + object->ce->default_properties_count; in zend_object_std_dtor()
205 if (old_object->ce->default_properties_count) { in zend_objects_clone_members()
208 zval *end = src + old_object->ce->default_properties_count; in zend_objects_clone_members()
304 if (new_object->ce->default_properties_count) { in zend_objects_clone_obj()
306 zval *end = p + new_object->ce->default_properties_count; in zend_objects_clone_obj()
H A Dzend_objects_API.h84 (ce->default_properties_count - in zend_object_properties_size()
102 ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count); in zend_get_property_info_for_slot()
H A Dzend_inheritance.c1083 if (ce->default_properties_count == 0) { in zend_build_properties_info_table()
1088 size = sizeof(zend_property_info *) * ce->default_properties_count; in zend_build_properties_info_table()
1098 if (ce->parent && ce->parent->default_properties_count != 0) { in zend_build_properties_info_table()
1106 if (ce->default_properties_count == ce->parent->default_properties_count) { in zend_build_properties_info_table()
1163 if (parent_ce->default_properties_count) { in zend_do_inheritance_ex()
1166 if (ce->default_properties_count) { in zend_do_inheritance_ex()
1167 …zval *table = pemalloc(sizeof(zval) * (ce->default_properties_count + parent_ce->default_propertie… in zend_do_inheritance_ex()
1169 end = table + parent_ce->default_properties_count; in zend_do_inheritance_ex()
1170 dst = end + ce->default_properties_count; in zend_do_inheritance_ex()
1181 dst = end + parent_ce->default_properties_count; in zend_do_inheritance_ex()
[all …]

1234567891011