Lines Matching refs:default_properties_table
1520 zval *default_properties_table = NULL; in zend_update_class_constants() local
1590 default_properties_table = class_type->default_properties_table; in zend_update_class_constants()
1594 default_properties_table = mutable_data->default_properties_table; in zend_update_class_constants()
1595 if (!default_properties_table) { in zend_update_class_constants()
1596 …default_properties_table = zend_arena_alloc(&CG(arena), sizeof(zval) * class_type->default_propert… in zend_update_class_constants()
1597 src = class_type->default_properties_table; in zend_update_class_constants()
1598 dst = default_properties_table; in zend_update_class_constants()
1605 mutable_data->default_properties_table = default_properties_table; in zend_update_class_constants()
1615 val = &default_properties_table[i]; in zend_update_class_constants()
4599 zval_ptr_dtor(&ce->default_properties_table[OBJ_PROP_TO_NUM(property_info->offset)]); in zend_declare_typed_property()
4611 …ce->default_properties_table = perealloc(ce->default_properties_table, sizeof(zval) * ce->default_… in zend_declare_typed_property()
4619 property_default_ptr = &ce->default_properties_table[OBJ_PROP_TO_NUM(property_info->offset)]; in zend_declare_typed_property()