Lines Matching refs:default_properties_table
1391 zval *default_properties_table = NULL; in zend_update_class_constants() local
1461 default_properties_table = class_type->default_properties_table; in zend_update_class_constants()
1465 default_properties_table = mutable_data->default_properties_table; in zend_update_class_constants()
1466 if (!default_properties_table) { in zend_update_class_constants()
1467 …default_properties_table = zend_arena_alloc(&CG(arena), sizeof(zval) * class_type->default_propert… in zend_update_class_constants()
1468 src = class_type->default_properties_table; in zend_update_class_constants()
1469 dst = default_properties_table; in zend_update_class_constants()
1476 mutable_data->default_properties_table = default_properties_table; in zend_update_class_constants()
1486 val = &default_properties_table[i]; in zend_update_class_constants()
4257 zval_ptr_dtor(&ce->default_properties_table[OBJ_PROP_TO_NUM(property_info->offset)]); in zend_declare_typed_property()
4269 …ce->default_properties_table = perealloc(ce->default_properties_table, sizeof(zval) * ce->default_… in zend_declare_typed_property()
4277 property_default_ptr = &ce->default_properties_table[OBJ_PROP_TO_NUM(property_info->offset)]; in zend_declare_typed_property()