Searched refs:ret2 (Results 1 – 13 of 13) sorted by relevance
/PHP-8.4/ext/bcmath/tests/number/operators/ |
H A D | add_int.phpt | 19 $ret2 = ((int) $value1) + (new BcMath\Number($value2)); 20 if ($ret->compare($ret2) !== 0) {
|
H A D | mul_int.phpt | 19 $ret2 = ((int) $value1) * (new BcMath\Number($value2)); 20 if ($ret->compare($ret2) !== 0) {
|
H A D | sub_int.phpt | 19 $ret2 = ((int) $value1) - (new BcMath\Number($value2)); 20 if ($ret->compare($ret2) !== 0) {
|
H A D | mod_int.phpt | 20 $ret2 = ((string) $value1) % (new BcMath\Number($value2)); 21 if ($ret->compare($ret2) !== 0) {
|
H A D | mod_string.phpt | 20 $ret2 = ((string) $value1) % (new BcMath\Number($value2)); 21 if ($ret->compare($ret2) !== 0) {
|
H A D | div_int.phpt | 20 $ret2 = ((int) $value1) / (new BcMath\Number($value2)); 21 if ($ret->compare($ret2) !== 0) {
|
H A D | add_string.phpt | 21 $ret2 = ((string) $value1) + (new BcMath\Number($value2)); 22 if ($ret->compare($ret2) !== 0) {
|
H A D | mul_string.phpt | 21 $ret2 = ((string) $value1) * (new BcMath\Number($value2)); 22 if ($ret->compare($ret2) !== 0) {
|
H A D | pow_int.phpt | 28 $ret2 = ((int) $value) ** (new BcMath\Number($exponent)); 29 if ($ret->compare($ret2) !== 0) {
|
H A D | sub_string.phpt | 21 $ret2 = ((string) $value1) - (new BcMath\Number($value2)); 22 if ($ret->compare($ret2) !== 0) {
|
H A D | div_string.phpt | 22 $ret2 = ((string) $value1) / (new BcMath\Number($value2)); 23 if ($ret->compare($ret2) !== 0) {
|
H A D | pow_string.phpt | 30 $ret2 = ((string) $value) ** (new BcMath\Number($exponent)); 31 if ($ret->compare($ret2) !== 0) {
|
/PHP-8.4/Zend/ |
H A D | zend_operators.c | 3289 uint8_t ret1, ret2; local 3295 (ret2 = is_numeric_string_ex(s2->val, s2->len, &lval2, &dval2, false, &oflow2, NULL))) { 3307 if ((ret1 == IS_DOUBLE) || (ret2 == IS_DOUBLE)) { 3314 } else if (ret2 != IS_DOUBLE) { 3337 uint8_t ret1, ret2; local 3343 (ret2 = is_numeric_string_ex(s2->val, s2->len, &lval2, &dval2, false, &oflow2, NULL))) { 3355 if ((ret1 == IS_DOUBLE) || (ret2 == IS_DOUBLE)) { 3362 } else if (ret2 != IS_DOUBLE) {
|
Completed in 29 milliseconds