Searched refs:lhs (Results 1 – 14 of 14) sorted by relevance
/php-src/ext/spl/tests/ |
H A D | dualiterator.inc | 30 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 D | recursivedualiterator.inc | 23 * @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 D | diyfp.h | 194 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 D | lhs_class_not_found.phpt | 2 Property constant expression lhs error
|
H A D | lhs_class_not_found_nullsafe.phpt | 2 Nullsafe property constant expression lhs error
|
H A D | lhs_non_object.phpt | 2 Property constant expression lhs wrong type
|
H A D | non_enums_cost.phpt | 2 Disallow fetching properties in constant expressions on non-enums even if lhs is other const
|
/php-src/Zend/tests/nullsafe_operator/ |
H A D | 020.phpt | 2 Test nullsafe lhs of assignment to nested property chain
|
/php-src/Zend/tests/traits/ |
H A D | language015.phpt | 2 Invalid conflict resolution (unused trait as lhs of "insteadof")
|
H A D | language017.phpt | 2 Invalid conflict resolution (unused trait as lhs of "as")
|
/php-src/ext/fileinfo/libmagic/ |
H A D | softmagic.c | 1473 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 D | zend_closures.c | 427 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 D | array.c | 296 zval *lhs = &f->val; in php_array_data_compare_unstable_i() local 297 ZVAL_DEREF(lhs); in php_array_data_compare_unstable_i() 298 if (Z_TYPE_P(lhs) == IS_OBJECT && (Z_OBJCE_P(lhs)->ce_flags & ZEND_ACC_ENUM)) { in php_array_data_compare_unstable_i() 1285 zval *lhs, *rhs; variable 1287 Z_FLF_PARAM_ZVAL(1, lhs); 1305 lhs_dval = Z_DVAL_P(lhs); 1318 RETURN_COPY(zend_compare(lhs, rhs) < 0 ? lhs : rhs); 1413 zval *lhs, *rhs; variable 1415 Z_FLF_PARAM_ZVAL(1, lhs); 1433 lhs_dval = Z_DVAL_P(lhs); [all …]
|
/php-src/ext/hash/xxhash/ |
H A D | xxhash.h | 3269 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 73 milliseconds