Lines Matching refs:default_properties_table
1467 zval *default_properties_table = NULL; in zend_update_class_constants() local
1537 default_properties_table = class_type->default_properties_table; in zend_update_class_constants()
1541 default_properties_table = mutable_data->default_properties_table; in zend_update_class_constants()
1542 if (!default_properties_table) { in zend_update_class_constants()
1543 …default_properties_table = zend_arena_alloc(&CG(arena), sizeof(zval) * class_type->default_propert… in zend_update_class_constants()
1544 src = class_type->default_properties_table; in zend_update_class_constants()
1545 dst = default_properties_table; in zend_update_class_constants()
1552 mutable_data->default_properties_table = default_properties_table; in zend_update_class_constants()
1562 val = &default_properties_table[i]; in zend_update_class_constants()
4390 zval_ptr_dtor(&ce->default_properties_table[OBJ_PROP_TO_NUM(property_info->offset)]); in zend_declare_typed_property()
4402 …ce->default_properties_table = perealloc(ce->default_properties_table, sizeof(zval) * ce->default_… in zend_declare_typed_property()
4410 property_default_ptr = &ce->default_properties_table[OBJ_PROP_TO_NUM(property_info->offset)]; in zend_declare_typed_property()