Home
last modified time | relevance | path

Searched refs:rhs (Results 1 – 10 of 10) sorted by relevance

/PHP-8.3/ext/spl/tests/
H A Ddualiterator.inc31 private $rhs;
37 * @param rhs Right Hand Side Iterator
40 function __construct(Iterator $lhs, Iterator $rhs,
44 $this->rhs = $rhs;
59 return $this->rhs;
81 $this->rhs->rewind();
103 return $this->rhs->current();
119 return $this->rhs->key();
130 $this->rhs->next();
158 * @param rhs Right Hand Side Iterator
[all …]
H A Drecursivedualiterator.inc24 * @param rhs Right Hand Side Iterator
27 function __construct(RecursiveIterator $lhs, RecursiveIterator $rhs,
30 parent::__construct($lhs, $rhs, $flags);
/PHP-8.3/Zend/tests/
H A Doss_fuzz_57821.phpt2 oss-fuzz #57821: Unevaluated rhs of class constant fetch in constant expression
/PHP-8.3/Zend/tests/prop_const_expr/
H A Drhs_object.phpt2 Property constant expression rhs wrong type
H A Drhs_object_nullsafe.phpt2 Nullsafe property constant expression rhs wrong type
/PHP-8.3/Zend/tests/traits/
H A Dlanguage016.phpt2 Invalid conflict resolution (unused trait as rhs of "insteadof")
/PHP-8.3/Zend/tests/list/
H A Dlist_reference_008.phpt28 * We do not allow references to the same variable of rhs.
/PHP-8.3/Zend/
H A Dzend_closures.c427 zend_closure *rhs = (zend_closure*) Z_OBJ_P(o2); in zend_closure_compare() local
429 …if (!((lhs->func.common.fn_flags & ZEND_ACC_FAKE_CLOSURE) && (rhs->func.common.fn_flags & ZEND_ACC… in zend_closure_compare()
433 if (Z_TYPE(lhs->this_ptr) != Z_TYPE(rhs->this_ptr)) { in zend_closure_compare()
437 if (Z_TYPE(lhs->this_ptr) == IS_OBJECT && Z_OBJ(lhs->this_ptr) != Z_OBJ(rhs->this_ptr)) { in zend_closure_compare()
441 if (lhs->called_scope != rhs->called_scope) { in zend_closure_compare()
445 if (lhs->func.type != rhs->func.type) { in zend_closure_compare()
449 if (lhs->func.common.scope != rhs->func.common.scope) { in zend_closure_compare()
453 if (!zend_string_equals(lhs->func.common.function_name, rhs->func.common.function_name)) { in zend_closure_compare()
/PHP-8.3/ext/hash/xxhash/
H A Dxxhash.h3269 XXH_mult64to128(xxh_u64 lhs, xxh_u64 rhs) in XXH_mult64to128() argument
3290 __uint128_t const product = (__uint128_t)lhs * (__uint128_t)rhs; in XXH_mult64to128()
3309 xxh_u64 const product_low = _umul128(lhs, rhs, &product_high); in XXH_mult64to128()
3326 r128.low64 = lhs * rhs; in XXH_mult64to128()
3327 r128.high64 = __umulh(lhs, rhs); in XXH_mult64to128()
3375 xxh_u64 const lo_lo = XXH_mult32to64(lhs & 0xFFFFFFFF, rhs & 0xFFFFFFFF); in XXH_mult64to128()
3376 xxh_u64 const hi_lo = XXH_mult32to64(lhs >> 32, rhs & 0xFFFFFFFF); in XXH_mult64to128()
3377 xxh_u64 const lo_hi = XXH_mult32to64(lhs & 0xFFFFFFFF, rhs >> 32); in XXH_mult64to128()
3378 xxh_u64 const hi_hi = XXH_mult32to64(lhs >> 32, rhs >> 32); in XXH_mult64to128()
3403 XXH3_mul128_fold64(xxh_u64 lhs, xxh_u64 rhs) in XXH3_mul128_fold64() argument
[all …]
/PHP-8.3/ext/standard/
H A Darray.c296 zval *rhs = &s->val; in php_array_data_compare_unstable_i() local
297 ZVAL_DEREF(rhs); in php_array_data_compare_unstable_i()
298 if (UNEXPECTED(Z_TYPE_P(rhs) == IS_OBJECT) in php_array_data_compare_unstable_i()
300 && (Z_OBJCE_P(rhs)->ce_flags & ZEND_ACC_ENUM)) { in php_array_data_compare_unstable_i()
306 uintptr_t rhs_uintptr = (uintptr_t)Z_OBJ_P(rhs); in php_array_data_compare_unstable_i()

Completed in 51 milliseconds