Home
last modified time | relevance | path

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

/php-src/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-src/ext/dom/lexbor/lexbor/core/
H A Ddiyfp.h194 lexbor_diyfp_sub(lexbor_diyfp_t lhs, lexbor_diyfp_t rhs) in lexbor_diyfp_sub() argument
196 return lexbor_diyfp(lhs.significand - rhs.significand, lhs.exp); in lexbor_diyfp_sub()
200 lexbor_diyfp_mul(lexbor_diyfp_t lhs, lexbor_diyfp_t rhs) in lexbor_diyfp_mul() argument
208 * (lxb_uint128_t) (rhs.significand); in lexbor_diyfp_mul()
219 return lexbor_diyfp(h, lhs.exp + rhs.exp + 64); in lexbor_diyfp_mul()
227 c = rhs.significand >> 32; in lexbor_diyfp_mul()
228 d = rhs.significand & 0xffffffff; in lexbor_diyfp_mul()
242 lhs.exp + rhs.exp + 64); in lexbor_diyfp_mul()
/php-src/Zend/tests/
H A Doss_fuzz_57821.phpt2 oss-fuzz #57821: Unevaluated rhs of class constant fetch in constant expression
/php-src/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-src/Zend/tests/traits/
H A Dlanguage016.phpt2 Invalid conflict resolution (unused trait as rhs of "insteadof")
/php-src/Zend/tests/list/
H A Dlist_reference_008.phpt28 * We do not allow references to the same variable of rhs.
/php-src/Zend/
H A Dzend_closures.c428 zend_closure *rhs = (zend_closure*) Z_OBJ_P(o2); in zend_closure_compare() local
430 …if (!((lhs->func.common.fn_flags & ZEND_ACC_FAKE_CLOSURE) && (rhs->func.common.fn_flags & ZEND_ACC… in zend_closure_compare()
434 if (Z_TYPE(lhs->this_ptr) != Z_TYPE(rhs->this_ptr)) { in zend_closure_compare()
438 if (Z_TYPE(lhs->this_ptr) == IS_OBJECT && Z_OBJ(lhs->this_ptr) != Z_OBJ(rhs->this_ptr)) { in zend_closure_compare()
442 if (lhs->called_scope != rhs->called_scope) { in zend_closure_compare()
446 if (lhs->func.type != rhs->func.type) { in zend_closure_compare()
450 if (lhs->func.common.scope != rhs->func.common.scope) { in zend_closure_compare()
454 if (!zend_string_equals(lhs->func.common.function_name, rhs->func.common.function_name)) { in zend_closure_compare()
/php-src/ext/standard/
H A Darray.c298 ZVAL_DEREF(rhs); in php_array_data_compare_unstable_i()
1291 zval *lhs, *rhs; variable
1302 RETURN_COPY_VALUE(lhs_lval < Z_LVAL_P(rhs) ? lhs : rhs);
1315 RETURN_COPY_VALUE(lhs_dval < Z_DVAL_P(rhs) ? lhs : rhs);
1316 …} else if (Z_TYPE_P(rhs) == IS_LONG && (zend_dval_to_lval((double) Z_LVAL_P(rhs)) == Z_LVAL_P(rhs)…
1324 RETURN_COPY(zend_compare(lhs, rhs) < 0 ? lhs : rhs);
1419 zval *lhs, *rhs; variable
1430 RETURN_COPY_VALUE(lhs_lval >= Z_LVAL_P(rhs) ? lhs : rhs);
1443 RETURN_COPY_VALUE(lhs_dval >= Z_DVAL_P(rhs) ? lhs : rhs);
1444 …} else if (Z_TYPE_P(rhs) == IS_LONG && (zend_dval_to_lval((double) Z_LVAL_P(rhs)) == Z_LVAL_P(rhs)…
[all …]
/php-src/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 …]

Completed in 49 milliseconds