next_op           430 Zend/zend_opcode.c 	zend_op *next_op;
next_op           443 Zend/zend_opcode.c 	next_op = &(op_array->opcodes[next_op_num]);
next_op           445 Zend/zend_opcode.c 	init_op(next_op TSRMLS_CC);
next_op           447 Zend/zend_opcode.c 	return next_op;
next_op           150 ext/opcache/Optimizer/pass1_5.c 				zend_op *next_op = opline + 1;
next_op           161 ext/opcache/Optimizer/pass1_5.c 				while (next_op->opcode == ZEND_ADD_STRING || next_op->opcode == ZEND_ADD_CHAR) {
next_op           162 ext/opcache/Optimizer/pass1_5.c 					if (ZEND_RESULT(opline).var != ZEND_RESULT(next_op).var) {
next_op           165 ext/opcache/Optimizer/pass1_5.c 					if (next_op->opcode == ZEND_ADD_CHAR) {
next_op           168 ext/opcache/Optimizer/pass1_5.c 						final_length += ZEND_OP2_LITERAL(next_op).value.str.len;
next_op           170 ext/opcache/Optimizer/pass1_5.c 					next_op++;
next_op           175 ext/opcache/Optimizer/pass1_5.c 				last_op = next_op;
next_op           196 ext/opcache/Optimizer/pass1_5.c 				next_op = opline + 1;
next_op           197 ext/opcache/Optimizer/pass1_5.c 				while (next_op < last_op) {
next_op           198 ext/opcache/Optimizer/pass1_5.c 					if (next_op->opcode == ZEND_ADD_STRING) {
next_op           199 ext/opcache/Optimizer/pass1_5.c 						memcpy(ptr, ZEND_OP2_LITERAL(next_op).value.str.val, ZEND_OP2_LITERAL(next_op).value.str.len);
next_op           200 ext/opcache/Optimizer/pass1_5.c 						ptr += ZEND_OP2_LITERAL(next_op).value.str.len;
next_op           201 ext/opcache/Optimizer/pass1_5.c 						literal_dtor(&ZEND_OP2_LITERAL(next_op));
next_op           203 ext/opcache/Optimizer/pass1_5.c 						*ptr = (char)ZEND_OP2_LITERAL(next_op).value.lval;
next_op           206 ext/opcache/Optimizer/pass1_5.c 					MAKE_NOP(next_op);
next_op           207 ext/opcache/Optimizer/pass1_5.c 					next_op++;
next_op           418 ext/opcache/Optimizer/pass3.c 					zend_op *next_op = opline + 1;
next_op           420 ext/opcache/Optimizer/pass3.c 					if (next_op >= end) {
next_op           423 ext/opcache/Optimizer/pass3.c 					if (next_op->opcode == ZEND_FREE &&
next_op           424 ext/opcache/Optimizer/pass3.c 						ZEND_OP1(next_op).var == ZEND_RESULT(opline).var) {
next_op           425 ext/opcache/Optimizer/pass3.c 						MAKE_NOP(next_op);