Home
last modified time | relevance | path

Searched refs:is_negative (Results 1 – 6 of 6) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP32.php117 $temp = self::addHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
130 $temp = self::subtractHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
143 $temp = self::multiplyHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
255 return $this->compareHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
268 return $this->value === $x->value && $this->is_negative == $x->is_negative;
H A DPHP64.php121 $temp = self::addHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
134 $temp = self::subtractHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
147 $temp = self::multiplyHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
259 return parent::compareHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
272 return $this->value === $x->value && $this->is_negative == $x->is_negative;
H A DEngine.php94 protected $is_negative; variable in phpseclib3\\Math\\BigInteger\\Engines\\Engine
154 $this->is_negative = true;
162 if ($this->is_negative) {
170 $this->is_negative = true;
176 $is_negative = false;
178 $this->is_negative = $is_negative = true;
185 if ($is_negative) {
204 $this->is_negative = true;
212 if ($temp->is_negative) {
213 $this->is_negative = true;
[all …]
H A DPHP.php118 $this->is_negative = true;
166 $temp->is_negative = false;
185 if ($this->is_negative) {
545 $quotient->is_negative = $this->is_negative != $y->is_negative;
552 $x_sign = $x->is_negative;
553 $y_sign = $y->is_negative;
555 $x->is_negative = $y->is_negative = false;
740 $result->is_negative = $arr[self::SIGN];
761 $result->is_negative = false;
1204 return $this->is_negative;
[all …]
H A DBCMath.php106 if ($this->is_negative) {
113 $this->value = $this->is_negative ? '-' . $temp->value : $temp->value;
114 $this->is_negative = false;
H A DGMP.php94 if ($this->is_negative) {
99 $temp = $this->is_negative ? '-0x' . $this->value : '0x' . $this->value;