Home
last modified time | relevance | path

Searched refs:lhs (Results 1 – 13 of 13) sorted by relevance

/PHP-8.3/ext/spl/tests/
H A Ddualiterator.inc30 private $lhs;
36 * @param lhs Left Hand Side Iterator
40 function __construct(Iterator $lhs, Iterator $rhs,
43 $this->lhs = $lhs;
52 return $this->lhs;
80 $this->lhs->rewind();
101 return $this->lhs->current();
117 return $this->lhs->key();
129 $this->lhs->next();
157 * @param lhs Left Hand Side Iterator
[all …]
H A Drecursivedualiterator.inc23 * @param lhs Left Hand Side Iterator
27 function __construct(RecursiveIterator $lhs, RecursiveIterator $rhs,
30 parent::__construct($lhs, $rhs, $flags);
/PHP-8.3/Zend/tests/prop_const_expr/
H A Dlhs_class_not_found.phpt2 Property constant expression lhs error
H A Dlhs_class_not_found_nullsafe.phpt2 Nullsafe property constant expression lhs error
H A Dlhs_non_object.phpt2 Property constant expression lhs wrong type
H A Dnon_enums_cost.phpt2 Disallow fetching properties in constant expressions on non-enums even if lhs is other const
/PHP-8.3/Zend/tests/nullsafe_operator/
H A D020.phpt2 Test nullsafe lhs of assignment to nested property chain
/PHP-8.3/Zend/tests/traits/
H A Dlanguage015.phpt2 Invalid conflict resolution (unused trait as lhs of "insteadof")
H A Dlanguage017.phpt2 Invalid conflict resolution (unused trait as lhs of "as")
/PHP-8.3/ext/fileinfo/libmagic/
H A Dsoftmagic.c1467 offset = lhs & off; in do_ops()
1470 offset = lhs | off; in do_ops()
1473 offset = lhs ^ off; in do_ops()
1476 offset = lhs + off; in do_ops()
1479 offset = lhs - off; in do_ops()
1492 offset = lhs; in do_ops()
1580 intmax_t lhs; in mget() local
1717 lhs = BE32(p); in mget()
1719 lhs = cvt_id3(ms, CAST(uint32_t, lhs)); in mget()
1726 lhs = LE32(p); in mget()
[all …]
/PHP-8.3/Zend/
H A Dzend_closures.c426 zend_closure *lhs = (zend_closure*) Z_OBJ_P(o1); 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.c301 zval *lhs = &f->val; in php_array_data_compare_unstable_i() local
302 ZVAL_DEREF(lhs); in php_array_data_compare_unstable_i()
303 if (Z_TYPE_P(lhs) == IS_OBJECT && (Z_OBJCE_P(lhs)->ce_flags & ZEND_ACC_ENUM)) { in php_array_data_compare_unstable_i()
305 uintptr_t lhs_uintptr = (uintptr_t)Z_OBJ_P(lhs); in php_array_data_compare_unstable_i()

Completed in 47 milliseconds