opcodes_size      177 Zend/zend_compile.c 	CG(context).opcodes_size = (CG(active_op_array)->fn_flags & ZEND_ACC_INTERACTIVE) ? INITIAL_INTERACTIVE_OP_ARRAY_SIZE : INITIAL_OP_ARRAY_SIZE;
opcodes_size       58 Zend/zend_compile.h 	zend_uint  opcodes_size;
opcodes_size      432 Zend/zend_opcode.c 	if (next_op_num >= CG(context).opcodes_size) {
opcodes_size      439 Zend/zend_opcode.c 		CG(context).opcodes_size *= 4;
opcodes_size      440 Zend/zend_opcode.c 		op_array_alloc_ops(op_array, CG(context).opcodes_size);
opcodes_size      741 Zend/zend_opcode.c 	if (!(op_array->fn_flags & ZEND_ACC_INTERACTIVE) && CG(context).opcodes_size != op_array->last) {
opcodes_size      743 Zend/zend_opcode.c 		CG(context).opcodes_size = op_array->last;