Home
last modified time | relevance | path

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

/PHP-5.5/Zend/
H A Dzend_objects.c52 for (i = 0; i < object->ce->default_properties_count; i++) { in zend_object_std_dtor()
166 new_object->properties_table = emalloc(sizeof(zval*) * old_object->ce->default_properties_count); in zend_objects_clone_members()
167 … memset(new_object->properties_table, 0, sizeof(zval*) * old_object->ce->default_properties_count); in zend_objects_clone_members()
169 for (i = 0; i < old_object->ce->default_properties_count; i++) { in zend_objects_clone_members()
H A Dzend_object_handlers.c75 if (ce->default_properties_count) { in rebuild_object_properties()
86 while (ce->parent && ce->parent->default_properties_count) { in rebuild_object_properties()
131 *n = zobj->ce->default_properties_count; in zend_std_get_gc()
1360 for (i = 0; i < zobj1->ce->default_properties_count; i++) { in zend_std_compare_objects()
H A Dzend_opcode.c286 for (i = 0; i < ce->default_properties_count; i++) { in destroy_zend_class()
322 for (i = 0; i < ce->default_properties_count; i++) { in destroy_zend_class()
H A Dzend_API.c1099 for (i = 0; i < class_type->default_properties_count; i++) { in zend_update_class_constants()
1155 if (class_type->default_properties_count) { in object_properties_init()
1156 object->properties_table = emalloc(sizeof(zval*) * class_type->default_properties_count); in object_properties_init()
1157 for (i = 0; i < class_type->default_properties_count; i++) { in object_properties_init()
3444 property_info.offset = ce->default_properties_count++; in zend_declare_property_ex()
3445 …e = perealloc(ce->default_properties_table, sizeof(zval*) * ce->default_properties_count, ce->type… in zend_declare_property_ex()
H A Dzend.h490 int default_properties_count; member
H A Dzend_compile.c3635 if (parent_ce->default_properties_count) { in zend_do_inheritance()
3636 int i = ce->default_properties_count + parent_ce->default_properties_count; in zend_do_inheritance()
3639 if (ce->default_properties_count) { in zend_do_inheritance()
3640 while (i-- > parent_ce->default_properties_count) { in zend_do_inheritance()
3641 …efault_properties_table[i] = ce->default_properties_table[i - parent_ce->default_properties_count]; in zend_do_inheritance()
3644 for (i = 0; i < parent_ce->default_properties_count; i++) { in zend_do_inheritance()
3662 ce->default_properties_count += parent_ce->default_properties_count; in zend_do_inheritance()
3714 property_info->offset += parent_ce->default_properties_count; in zend_do_inheritance()
6850 ce->default_properties_count = 0; in zend_initialize_class_data()
/PHP-5.5/ext/opcache/
H A Dzend_persist_calc.c246 ADD_SIZE(sizeof(zval*) * ce->default_properties_count);
247 for (i = 0; i < ce->default_properties_count; i++) {
H A Dzend_persist.c468 zend_accel_store(ce->default_properties_table, sizeof(zval*) * ce->default_properties_count);
469 for (i = 0; i < ce->default_properties_count; i++) {
H A Dzend_accelerator_util_funcs.c651 ce->default_properties_table = emalloc(sizeof(zval*) * old_ce->default_properties_count);
652 for (i = 0; i < old_ce->default_properties_count; i++) {

Completed in 84 milliseconds