Home
last modified time | relevance | path

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

/php-src/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-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
207 u128 = (lxb_uint128_t) (lhs.significand) in lexbor_diyfp_mul()
219 return lexbor_diyfp(h, lhs.exp + rhs.exp + 64); in lexbor_diyfp_mul()
225 a = lhs.significand >> 32; in lexbor_diyfp_mul()
226 b = lhs.significand & 0xffffffff; in lexbor_diyfp_mul()
242 lhs.exp + rhs.exp + 64); in lexbor_diyfp_mul()
/php-src/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-src/Zend/tests/nullsafe_operator/
H A D020.phpt2 Test nullsafe lhs of assignment to nested property chain
/php-src/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-src/ext/fileinfo/libmagic/
H A Dsoftmagic.c1473 if (lhs >= UINT_MAX || lhs <= INT_MIN || in do_ops()
1483 offset = lhs & off; in do_ops()
1486 offset = lhs | off; in do_ops()
1489 offset = lhs ^ off; in do_ops()
1492 offset = lhs + off; in do_ops()
1508 offset = lhs; in do_ops()
1601 intmax_t lhs; in mget() local
1742 lhs = BE32(p); in mget()
1744 lhs = cvt_id3(ms, CAST(uint32_t, lhs)); in mget()
1752 lhs = LE32(p); in mget()
[all …]
/php-src/Zend/
H A Dzend_closures.c427 zend_closure *lhs = (zend_closure*) Z_OBJ_P(o1); 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.c302 zval *lhs = &f->val; in php_array_data_compare_unstable_i() local
303 ZVAL_DEREF(lhs); in php_array_data_compare_unstable_i()
304 if (Z_TYPE_P(lhs) == IS_OBJECT && (Z_OBJCE_P(lhs)->ce_flags & ZEND_ACC_ENUM)) { in php_array_data_compare_unstable_i()
1291 zval *lhs, *rhs; variable
1293 Z_FLF_PARAM_ZVAL(1, lhs);
1311 lhs_dval = Z_DVAL_P(lhs);
1324 RETURN_COPY(zend_compare(lhs, rhs) < 0 ? lhs : rhs);
1419 zval *lhs, *rhs; variable
1421 Z_FLF_PARAM_ZVAL(1, lhs);
1439 lhs_dval = Z_DVAL_P(lhs);
[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 84 milliseconds