_type 40 Zend/zend_compile.c target ## _type = (src)->op_type; \ _type 49 Zend/zend_compile.c (target)->op_type = src ## _type; \ _type 59 Zend/zend_compile.c target ## _type = src ## _type; \ _type 38 Zend/zend_compile.h #define SET_UNUSED(op) op ## _type = IS_UNUSED _type 414 Zend/zend_language_parser.y function is_reference T_STRING { zend_do_begin_function_declaration(&$1, &$3, 0, $2.op_type, NULL TSRMLS_CC); } _type 566 Zend/zend_language_parser.y { zend_do_receive_param(ZEND_RECV, &$4, NULL, &$1, $2.op_type, $3.op_type TSRMLS_CC); } _type 568 Zend/zend_language_parser.y { zend_do_receive_param(ZEND_RECV_INIT, &$4, &$6, &$1, $2.op_type, $3.op_type TSRMLS_CC); } _type 631 Zend/zend_language_parser.y | method_modifiers function is_reference T_STRING { zend_do_begin_function_declaration(&$2, &$4, 1, $3.op_type, &$1 TSRMLS_CC); } _type 815 Zend/zend_language_parser.y | '+' expr %prec T_INC { ZVAL_LONG(&$1.u.constant, 0); if ($2.op_type == IS_CONST) { add_function(&$2.u.constant, &$1.u.constant, &$2.u.constant TSRMLS_CC); $$ = $2; } else { $1.op_type = IS_CONST; INIT_PZVAL(&$1.u.constant); zend_do_binary_op(ZEND_ADD, &$$, &$1, &$2 TSRMLS_CC); } } _type 816 Zend/zend_language_parser.y | '-' expr %prec T_INC { ZVAL_LONG(&$1.u.constant, 0); if ($2.op_type == IS_CONST) { sub_function(&$2.u.constant, &$1.u.constant, &$2.u.constant TSRMLS_CC); $$ = $2; } else { $1.op_type = IS_CONST; INIT_PZVAL(&$1.u.constant); zend_do_binary_op(ZEND_SUB, &$$, &$1, &$2 TSRMLS_CC); } } _type 852 Zend/zend_language_parser.y | function is_reference { zend_do_begin_lambda_function_declaration(&$$, &$1, $2.op_type, 0 TSRMLS_CC); } _type 855 Zend/zend_language_parser.y | T_STATIC function is_reference { zend_do_begin_lambda_function_declaration(&$$, &$2, $3.op_type, 1 TSRMLS_CC); } _type 898 Zend/zend_language_parser.y | T_NAMESPACE T_NS_SEPARATOR namespace_name { $1.op_type = IS_CONST; ZVAL_EMPTY_STRING(&$1.u.constant); zend_do_build_namespace_name(&$1, &$1, &$3 TSRMLS_CC); $$.u.op.opline_num = zend_do_begin_function_call(&$1, 0 TSRMLS_CC); } _type 540 ext/opcache/Optimizer/block_pass.c # define VAR_NUM_EX(op) ((op ## _type & (IS_TMP_VAR|IS_VAR))?VAR_NUM((op).var):(op).var) _type 545 ext/opcache/Optimizer/block_pass.c # define VAR_UNSET(op) do { if (op ## _type & (IS_TMP_VAR|IS_VAR)) {VAR_SOURCE(op) = NULL;}} while (0) _type 1848 ext/opcache/Optimizer/block_pass.c if ((op ## _type & (IS_VAR | IS_TMP_VAR)) && \ _type 1854 ext/opcache/Optimizer/block_pass.c # define NEVER_USED(op) ((op ## _type & (IS_VAR | IS_TMP_VAR)) && !usage[VAR_NUM(op.var)]) /* !used_ext[op.var] && */ _type 124 ext/opcache/Optimizer/zend_optimizer.c target ## _type = src ## _type; \ _type 47 ext/opcache/Optimizer/zend_optimizer_internal.h # define SAME_VAR(op1, op2) ((((op1 ## _type & IS_VAR) && (op2 ## _type & IS_VAR)) || (op1 ## _type == IS_TMP_VAR && op2 ## _type == IS_TMP_VAR)) && op1.var == op2.var) _type 3511 ext/openssl/openssl.c #define OPENSSL_PKEY_GET_BN(_type, _name) do { \ _type 3512 ext/openssl/openssl.c if (pkey->pkey._type->_name != NULL) { \ _type 3513 ext/openssl/openssl.c int len = BN_num_bytes(pkey->pkey._type->_name); \ _type 3515 ext/openssl/openssl.c BN_bn2bin(pkey->pkey._type->_name, (unsigned char*)str); \ _type 3517 ext/openssl/openssl.c add_assoc_stringl(_type, #_name, str, len, 0); \ _type 3521 ext/openssl/openssl.c #define OPENSSL_PKEY_SET_BN(_ht, _type, _name) do { \ _type 3525 ext/openssl/openssl.c _type->_name = BN_bin2bn( \