Searched refs:zend_is_identical (Results 1 – 3 of 3) sorted by relevance
/PHP-7.3/Zend/ |
H A D | zend_operators.h | 60 ZEND_API int ZEND_FASTCALL zend_is_identical(zval *op1, zval *op2); 791 return zend_is_identical(op1, op2); in fast_is_identical_function() 801 return !zend_is_identical(op1, op2); in fast_is_not_identical_function()
|
H A D | zend_operators.c | 2206 ZEND_API int ZEND_FASTCALL zend_is_identical(zval *op1, zval *op2) /* {{{ */ in zend_is_identical() function 2237 ZVAL_BOOL(result, zend_is_identical(op1, op2)); in is_identical_function() 2244 ZVAL_BOOL(result, !zend_is_identical(op1, op2)); in is_not_identical_function()
|
/PHP-7.3/ext/opcache/Optimizer/ |
H A D | sccp.c | 185 ZEND_ASSERT(zend_is_identical(value, new)); in set_value() 1944 if (val2 && zend_is_identical(val1, val2)) { in join_hash_tables() 2012 } else if (!zend_is_identical(a, b)) { in join_phi_values()
|
Completed in 22 milliseconds