Searched refs:properties_info_table (Results 1 – 15 of 15) sorted by relevance
/PHP-8.2/Zend/ |
H A D | zend_objects_API.h | 99 zend_property_info **table = obj->ce->properties_info_table; in zend_get_property_info_for_slot()
|
H A D | zend.h | 170 struct _zend_property_info **properties_info_table; member
|
H A D | zend_opcode.c | 496 if (ce->properties_info_table) { in destroy_zend_class() 497 free(ce->properties_info_table); in destroy_zend_class()
|
H A D | zend_object_handlers.c | 73 prop_info = ce->properties_info_table[i]; in rebuild_object_properties() 104 prop_info = ce->properties_info_table[i]; in zend_std_build_object_properties_array() 1712 info = zobj1->ce->properties_info_table[i]; in zend_std_compare_objects()
|
H A D | zend_API.c | 1487 prop_info = class_type->properties_info_table[i]; in zend_update_class_constants() 4264 ZEND_ASSERT(ce->properties_info_table != NULL); in zend_declare_typed_property() 4265 ce->properties_info_table[OBJ_PROP_TO_NUM(property_info->offset)] = property_info; in zend_declare_typed_property() 4273 …ce->properties_info_table = perealloc(ce->properties_info_table, sizeof(zend_property_info *) * ce… in zend_declare_typed_property() 4274 ce->properties_info_table[ce->default_properties_count - 1] = property_info; in zend_declare_typed_property()
|
H A D | zend_inheritance.c | 1422 ZEND_ASSERT(ce->properties_info_table == NULL); in zend_build_properties_info_table() 1425 ce->properties_info_table = table = zend_arena_alloc(&CG(arena), size); in zend_build_properties_info_table() 1427 ce->properties_info_table = table = pemalloc(size, 1); in zend_build_properties_info_table() 1434 zend_property_info **parent_table = ce->parent->properties_info_table; in zend_build_properties_info_table()
|
H A D | zend_compile.c | 1870 ce->properties_info_table = NULL; in zend_initialize_class_data()
|
/PHP-8.2/ext/opcache/ |
H A D | zend_persist.c | 953 if (ce->properties_info_table) { in zend_persist_class_entry() 958 ce->properties_info_table = zend_shared_memdup( in zend_persist_class_entry() 959 ce->properties_info_table, size); in zend_persist_class_entry() 962 if (ce->properties_info_table[i]) { in zend_persist_class_entry() 964 ce->properties_info_table[i]); in zend_persist_class_entry() 966 ce->properties_info_table[i] = prop_info; in zend_persist_class_entry()
|
H A D | zend_file_cache.c | 755 if (ce->properties_info_table) { 759 SERIALIZE_PTR(ce->properties_info_table); 760 table = ce->properties_info_table; 1594 if (ce->properties_info_table) { 1596 UNSERIALIZE_PTR(ce->properties_info_table); 1599 UNSERIALIZE_PTR(ce->properties_info_table[i]);
|
H A D | zend_persist_calc.c | 472 if (ce->properties_info_table) { in zend_persist_class_entry_calc()
|
H A D | ZendAccelerator.c | 3788 zend_property_info *prop = ce->properties_info_table[i];
|
/PHP-8.2/ext/json/ |
H A D | json_encoder.c | 145 prop_info = ce->properties_info_table[i]; in php_json_encode_array()
|
/PHP-8.2/ext/standard/ |
H A D | var.c | 1207 prop_info = ce->properties_info_table[i]; in php_var_serialize_intern() 1222 prop_info = ce->properties_info_table[i]; in php_var_serialize_intern()
|
/PHP-8.2/ext/opcache/jit/ |
H A D | zend_jit_arm64.dasc | 12339 | ldr REG0, [REG0, #offsetof(zend_class_entry, properties_info_table)] 12745 | ldr REG0, [REG0, #offsetof(zend_class_entry, properties_info_table)] 13204 | ldr REG0, [REG0, #offsetof(zend_class_entry, properties_info_table)] 13586 | ldr REG0, [REG0, #offsetof(zend_class_entry, properties_info_table)]
|
H A D | zend_jit_x86.dasc | 13109 | mov r0, aword [r0 + offsetof(zend_class_entry, properties_info_table)] 13516 | mov r0, aword [r0 + offsetof(zend_class_entry, properties_info_table)] 14022 | mov r0, aword [r0 + offsetof(zend_class_entry, properties_info_table)] 14452 | mov r0, aword [r0 + offsetof(zend_class_entry, properties_info_table)]
|
Completed in 146 milliseconds