Searched refs:default_properties_count (Results 1 – 20 of 20) sorted by relevance
/PHP-7.0/Zend/ |
H A D | zend_objects.c | 40 if (EXPECTED(ce->default_properties_count != 0)) { in zend_object_std_init() 41 end = p + ce->default_properties_count; in zend_object_std_init() 66 if (EXPECTED(object->ce->default_properties_count)) { in zend_object_std_dtor() 67 end = p + object->ce->default_properties_count; in zend_object_std_dtor() 171 if (old_object->ce->default_properties_count) { in zend_objects_clone_members() 174 zval *end = src + old_object->ce->default_properties_count; in zend_objects_clone_members()
|
H A D | zend_objects_API.h | 87 (ce->default_properties_count - in zend_object_properties_size()
|
H A D | zend_inheritance.c | 790 if (parent_ce->default_properties_count) { in zend_do_inheritance() 793 if (ce->default_properties_count) { in zend_do_inheritance() 794 …zval *table = pemalloc(sizeof(zval) * (ce->default_properties_count + parent_ce->default_propertie… in zend_do_inheritance() 795 src = ce->default_properties_table + ce->default_properties_count; in zend_do_inheritance() 796 end = table + parent_ce->default_properties_count; in zend_do_inheritance() 797 dst = end + ce->default_properties_count; in zend_do_inheritance() 807 …end = pemalloc(sizeof(zval) * parent_ce->default_properties_count, ce->type == ZEND_INTERNAL_CLASS… in zend_do_inheritance() 808 dst = end + parent_ce->default_properties_count; in zend_do_inheritance() 811 src = parent_ce->default_properties_table + parent_ce->default_properties_count; in zend_do_inheritance() 830 ce->default_properties_count += parent_ce->default_properties_count; in zend_do_inheritance() [all …]
|
H A D | zend_object_handlers.c | 80 zend_hash_init(zobj->properties, ce->default_properties_count, NULL, ZVAL_PTR_DTOR, 0); in rebuild_object_properties() 81 if (ce->default_properties_count) { in rebuild_object_properties() 96 while (ce->parent && ce->parent->default_properties_count) { in rebuild_object_properties() 144 *n = zobj->ce->default_properties_count; in zend_std_get_gc() 490 guards = Z_PTR(zobj->properties_table[zobj->ce->default_properties_count]); in zend_get_property_guard() 498 Z_PTR(zobj->properties_table[zobj->ce->default_properties_count]) = guards; in zend_get_property_guard() 1426 if (!zobj1->ce->default_properties_count) { in zend_std_compare_objects() 1431 end = p1 + zobj1->ce->default_properties_count; in zend_std_compare_objects()
|
H A D | zend.h | 138 int default_properties_count; member
|
H A D | zend_opcode.c | 261 zval *end = p + ce->default_properties_count; in destroy_zend_class() 304 zval *end = p + ce->default_properties_count; in destroy_zend_class()
|
H A D | zend_API.c | 1172 if (class_type->default_properties_count) { in object_properties_init() 1175 zval *end = src + class_type->default_properties_count; in object_properties_init() 1194 if (object->ce->default_properties_count) { in object_properties_init_ex() 3651 property_info->offset = OBJ_PROP_TO_OFFSET(ce->default_properties_count); in zend_declare_property_ex() 3652 ce->default_properties_count++; in zend_declare_property_ex() 3653 …le = perealloc(ce->default_properties_table, sizeof(zval) * ce->default_properties_count, ce->type… in zend_declare_property_ex()
|
H A D | zend_builtin_functions.c | 1169 …if (!zobj->ce->default_properties_count && properties == zobj->properties && !ZEND_HASH_GET_APPLY_… in ZEND_FUNCTION()
|
H A D | zend_operators.c | 612 if (!Z_OBJCE_P(op)->default_properties_count && in convert_to_array()
|
H A D | zend_compile.c | 1654 ce->default_properties_count = 0; in zend_initialize_class_data()
|
/PHP-7.0/ext/opcache/ |
H A D | zend_persist_calc.c | 308 ADD_SIZE(sizeof(zval) * ce->default_properties_count); in zend_persist_class_entry_calc() 309 for (i = 0; i < ce->default_properties_count; i++) { in zend_persist_class_entry_calc()
|
H A D | zend_accelerator_util_funcs.c | 401 ce->default_properties_table = emalloc(sizeof(zval) * old_ce->default_properties_count); in zend_class_copy_ctor() 403 end = src + old_ce->default_properties_count; in zend_class_copy_ctor()
|
H A D | zend_persist.c | 745 zend_accel_store(ce->default_properties_table, sizeof(zval) * ce->default_properties_count); in zend_persist_class_entry() 746 for (i = 0; i < ce->default_properties_count; i++) { in zend_persist_class_entry()
|
H A D | zend_file_cache.c | 559 end = p + ce->default_properties_count; in zend_file_cache_serialize_class() 1122 end = p + ce->default_properties_count; in zend_file_cache_unserialize_class()
|
/PHP-7.0/ext/intl/common/ |
H A D | common_enum.cpp | 195 …bject*)ecalloc(1, sizeof(IntlIterator_object) + sizeof(zval) * (ce->default_properties_count - 1)); in IntlIterator_object_create()
|
/PHP-7.0/ext/intl/breakiterator/ |
H A D | breakiterator_class.cpp | 215 …ject*)ecalloc(1, sizeof(BreakIterator_object) + sizeof(zval) * (ce->default_properties_count - 1)); in BreakIterator_object_create()
|
/PHP-7.0/ext/intl/timezone/ |
H A D | timezone_class.cpp | 376 …ne_object*)ecalloc(1, sizeof(TimeZone_object) + sizeof(zval) * (ce->default_properties_count - 1)); in TimeZone_object_create()
|
/PHP-7.0/ext/intl/calendar/ |
H A D | calendar_class.cpp | 261 …ar_object*)ecalloc(1, sizeof(Calendar_object) + sizeof(zval) * (ce->default_properties_count - 1)); in Calendar_object_create()
|
/PHP-7.0/ext/mysqli/ |
H A D | mysqli.c | 1290 if (!ce->default_properties_count && !ce->__set) { in php_mysqli_fetch_into_hash()
|
/PHP-7.0/ext/pgsql/ |
H A D | pgsql.c | 2785 if (!ce->default_properties_count && !ce->__set) {
|
Completed in 103 milliseconds