default_properties_count  492 Zend/zend.h    	int default_properties_count;
default_properties_count 1098 Zend/zend_API.c 		for (i = 0; i < class_type->default_properties_count; i++) {
default_properties_count 1154 Zend/zend_API.c 	if (class_type->default_properties_count) {
default_properties_count 1155 Zend/zend_API.c 		object->properties_table = emalloc(sizeof(zval*) * class_type->default_properties_count);
default_properties_count 1156 Zend/zend_API.c 		for (i = 0; i < class_type->default_properties_count; i++) {
default_properties_count 3455 Zend/zend_API.c 			property_info.offset = ce->default_properties_count++;
default_properties_count 3456 Zend/zend_API.c 			ce->default_properties_table = perealloc(ce->default_properties_table, sizeof(zval*) * ce->default_properties_count, ce->type == ZEND_INTERNAL_CLASS);
default_properties_count 3774 Zend/zend_compile.c 	if (parent_ce->default_properties_count) {
default_properties_count 3775 Zend/zend_compile.c 		int i = ce->default_properties_count + parent_ce->default_properties_count;
default_properties_count 3778 Zend/zend_compile.c 		if (ce->default_properties_count) {
default_properties_count 3779 Zend/zend_compile.c 			while (i-- > parent_ce->default_properties_count) {
default_properties_count 3780 Zend/zend_compile.c 				ce->default_properties_table[i] = ce->default_properties_table[i - parent_ce->default_properties_count];
default_properties_count 3783 Zend/zend_compile.c 		for (i = 0; i < parent_ce->default_properties_count; i++) {
default_properties_count 3801 Zend/zend_compile.c 		ce->default_properties_count += parent_ce->default_properties_count;
default_properties_count 3853 Zend/zend_compile.c 				property_info->offset += parent_ce->default_properties_count;
default_properties_count 6973 Zend/zend_compile.c 	ce->default_properties_count = 0;
default_properties_count   75 Zend/zend_object_handlers.c 		if (ce->default_properties_count) {
default_properties_count   86 Zend/zend_object_handlers.c 			while (ce->parent && ce->parent->default_properties_count) {
default_properties_count  131 Zend/zend_object_handlers.c 			*n = zobj->ce->default_properties_count;
default_properties_count 1386 Zend/zend_object_handlers.c 		for (i = 0; i < zobj1->ce->default_properties_count; i++) {
default_properties_count   52 Zend/zend_objects.c 		for (i = 0; i < object->ce->default_properties_count; i++) {
default_properties_count  166 Zend/zend_objects.c 			new_object->properties_table = emalloc(sizeof(zval*) * old_object->ce->default_properties_count);
default_properties_count  167 Zend/zend_objects.c 			memset(new_object->properties_table, 0, sizeof(zval*) * old_object->ce->default_properties_count);
default_properties_count  169 Zend/zend_objects.c 		for (i = 0; i < old_object->ce->default_properties_count; i++) {
default_properties_count  286 Zend/zend_opcode.c 				for (i = 0; i < ce->default_properties_count; i++) {
default_properties_count  322 Zend/zend_opcode.c 				for (i = 0; i < ce->default_properties_count; i++) {
default_properties_count  713 ext/opcache/zend_accelerator_util_funcs.c 		ce->default_properties_table = emalloc(sizeof(zval*) * old_ce->default_properties_count);
default_properties_count  714 ext/opcache/zend_accelerator_util_funcs.c 		for (i = 0; i < old_ce->default_properties_count; i++) {
default_properties_count  499 ext/opcache/zend_persist.c 			zend_accel_store(ce->default_properties_table, sizeof(zval*) * ce->default_properties_count);
default_properties_count  500 ext/opcache/zend_persist.c 			for (i = 0; i < ce->default_properties_count; i++) {
default_properties_count  275 ext/opcache/zend_persist_calc.c 			ADD_SIZE(sizeof(zval*) * ce->default_properties_count);
default_properties_count  276 ext/opcache/zend_persist_calc.c 			for (i = 0; i < ce->default_properties_count; i++) {