Searched refs:zend_is_identical (Results 1 – 7 of 7) sorted by relevance
/PHP-8.3/ext/spl/tests/ |
H A D | fixedarray_023.phpt | 7 …$x[0] = NAN; // Test NAN just in case this check is incorrectly refactored to use zend_is_identical
|
/PHP-8.3/Zend/ |
H A D | zend_operators.h | 71 ZEND_API bool ZEND_FASTCALL zend_is_identical(const zval *op1, const zval *op2); 872 return zend_is_identical(op1, op2); in fast_is_identical_function() 882 return !zend_is_identical(op1, op2); in fast_is_not_identical_function()
|
H A D | zend_operators.c | 2375 ZEND_API bool ZEND_FASTCALL zend_is_identical(const zval *op1, const zval *op2) /* {{{ */ in zend_is_identical() function 2406 ZVAL_BOOL(result, zend_is_identical(op1, op2)); in is_identical_function() 2413 ZVAL_BOOL(result, !zend_is_identical(op1, op2)); in is_not_identical_function()
|
H A D | zend_execute.c | 3597 if (!zend_is_identical(&coerced_value, &tmp)) { in zend_verify_ref_assignable_zval()
|
/PHP-8.3/Zend/Optimizer/ |
H A D | sccp.c | 184 ZEND_ASSERT(zend_is_identical(value, new) || in set_value() 1913 if (val2 && zend_is_identical(val1, val2)) { in join_hash_tables() 1981 } else if (!zend_is_identical(a, b)) { in join_phi_values()
|
/PHP-8.3/ext/opcache/jit/ |
H A D | zend_jit_x86.dasc | 8322 if (zend_is_identical(Z_ZV(op1_addr), Z_ZV(op2_addr))) { 8458 | EXT_CALL zend_is_identical, r0
|
H A D | zend_jit_arm64.dasc | 7708 if (zend_is_identical(Z_ZV(op1_addr), Z_ZV(op2_addr))) { 7844 | EXT_CALL zend_is_identical, REG0
|
Completed in 91 milliseconds