next_op           434 Zend/zend_opcode.c 	zend_op *next_op;
next_op           441 Zend/zend_opcode.c 	next_op = &(op_array->opcodes[next_op_num]);
next_op           443 Zend/zend_opcode.c 	init_op(next_op);
next_op           445 Zend/zend_opcode.c 	return next_op;
next_op           173 ext/opcache/Optimizer/pass1_5.c 				zend_op *next_op = opline + 1;
next_op           185 ext/opcache/Optimizer/pass1_5.c 				while (next_op->opcode == ZEND_ADD_STRING || next_op->opcode == ZEND_ADD_CHAR) {
next_op           186 ext/opcache/Optimizer/pass1_5.c 					if (ZEND_RESULT(opline).var != ZEND_RESULT(next_op).var) {
next_op           189 ext/opcache/Optimizer/pass1_5.c 					if (next_op->opcode == ZEND_ADD_CHAR) {
next_op           192 ext/opcache/Optimizer/pass1_5.c 						final_length += Z_STRLEN(ZEND_OP2_LITERAL(next_op));
next_op           194 ext/opcache/Optimizer/pass1_5.c 					next_op++;
next_op           199 ext/opcache/Optimizer/pass1_5.c 				last_op = next_op;
next_op           218 ext/opcache/Optimizer/pass1_5.c 				next_op = opline + 1;
next_op           219 ext/opcache/Optimizer/pass1_5.c 				while (next_op < last_op) {
next_op           220 ext/opcache/Optimizer/pass1_5.c 					if (next_op->opcode == ZEND_ADD_STRING) {
next_op           221 ext/opcache/Optimizer/pass1_5.c 						memcpy(ptr, Z_STRVAL(ZEND_OP2_LITERAL(next_op)), Z_STRLEN(ZEND_OP2_LITERAL(next_op)));
next_op           222 ext/opcache/Optimizer/pass1_5.c 						ptr += Z_STRLEN(ZEND_OP2_LITERAL(next_op));
next_op           223 ext/opcache/Optimizer/pass1_5.c 						literal_dtor(&ZEND_OP2_LITERAL(next_op));
next_op           225 ext/opcache/Optimizer/pass1_5.c 						*ptr = (char)Z_LVAL(ZEND_OP2_LITERAL(next_op));
next_op           228 ext/opcache/Optimizer/pass1_5.c 					MAKE_NOP(next_op);
next_op           229 ext/opcache/Optimizer/pass1_5.c 					next_op++;
next_op           409 ext/opcache/Optimizer/pass3.c 					zend_op *next_op = opline + 1;
next_op           411 ext/opcache/Optimizer/pass3.c 					if (next_op >= end) {
next_op           414 ext/opcache/Optimizer/pass3.c 					if (next_op->opcode == ZEND_FREE &&
next_op           415 ext/opcache/Optimizer/pass3.c 						ZEND_OP1(next_op).var == ZEND_RESULT(opline).var) {
next_op           416 ext/opcache/Optimizer/pass3.c 						MAKE_NOP(next_op);