Home
last modified time | relevance | path

Searched refs:subtract (Results 1 – 25 of 204) sorted by relevance

123456789

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DPrime.php208 $x3 = $r->multiply($r)->subtract($h3)->subtract($v->multiply($this->two));
211 )->subtract(
245 $x3 = $r->multiply($r)->subtract($h3)->subtract($v->multiply($this->two));
248 )->subtract(
287 )->subtract(
344 $x = $slope->multiply($slope)->subtract($p[0])->subtract($q[0]);
345 $y = $slope->multiply($p[0]->subtract($x))->subtract($p[1]);
378 $y1 = $m->multiply($s->subtract($x1))->subtract(
399 $y1 = $m->multiply($s->subtract($x1))->subtract(
433 $x = $slope->multiply($slope)->subtract($p[0])->subtract($p[0]);
[all …]
H A DKoblitzPrime.php72 $inv->subtract($s)
89 $inv->subtract($s)
131 $k1 = $k->subtract($p1)->subtract($p2);
200 $d = $d->multiply($d)->subtract($a)->subtract($c)->multiply($this->two);
203 $x3 = $f->subtract($this->two->multiply($d));
204 $y3 = $e->multiply($d->subtract($x3))->subtract(
225 $s = $s->multiply($s)->subtract($xx)->subtract($yyyy)->multiply($this->two);
229 $y3 = $s->subtract($t);
282 $v = $temp->subtract($v->multiply($q));
286 $c = $temp->subtract($a->multiply($q));
[all …]
H A DMontgomery.php121 $this->a24 = $this->a->subtract($two)->divide($four);
192 $b = $x2->subtract($z2);
194 $e = $aa->subtract($bb);
196 $d = $x3->subtract($z3);
201 $temp = $da->subtract($cb);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DEd448.php70 $u = $y2->subtract($this->one);
71 $v = $this->d->multiply($y2)->subtract($this->one);
84 if (!$x->multiply($x)->subtract($x2)->equals($this->zero)) {
212 $j = $e->subtract($this->two->multiply($h));
214 $x3 = $b->subtract($e)->multiply($j);
215 $y3 = $c->subtract($d)->multiply($e);
260 $f = $b->subtract($e);
264 $x3 = $a->multiply($f)->multiply($h->subtract($c)->subtract($d));
265 $y3 = $a->multiply($g)->multiply($d->subtract($c));
H A DEd25519.php114 $u = $y2->subtract($this->one);
137 if (!$x->multiply($x)->subtract($x2)->equals($this->zero)) {
138 $temp = $this->getModulo()->subtract(new BigInteger(1));
142 if (!$x->multiply($x)->subtract($x2)->equals($this->zero)) {
271 $e = $h->subtract($temp->multiply($temp));
272 $g = $a->subtract($b);
317 $a = $y1->subtract($x1)->multiply($y2->subtract($x2));
321 $e = $b->subtract($a);
322 $f = $d->subtract($c);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php176 $temp->value = $temp->value->subtract(static::$modulo[$this->instanceID]);
187 public function subtract(self $x) function in phpseclib3\\Math\\PrimeField\\Integer
192 $temp->value = $this->value->subtract($x->value);
252 $p_1 = static::$modulo[$this->instanceID]->subtract($one);
279 … $b = $c->powMod($two->pow($m->subtract($i)->subtract($one)), static::$modulo[$this->instanceID]);
309 … return new static($this->instanceID, static::$modulo[$this->instanceID]->subtract($this->value));
371 $d->bitwise_and($mask)->subtract($sub) :
375 $d = $d->subtract($bigInteger);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DEngine.php321 return $this->normalize($n->subtract($temp));
822 $max = $max->subtract($min->subtract(static::$one[static::class]));
848 $random = $random->subtract($max_multiple);
849 $random_max = $random_max->subtract($max_multiple);
952 $n_1 = $n->subtract(static::$one[static::class]);
953 $n_2 = $n->subtract(static::$two[static::class]);
1062 $g = $g->subtract($step);
1071 $g = $g->subtract($step);
1182 $v = $temp->subtract($v->multiply($q));
1186 $c = $temp->subtract($a->multiply($q));
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDSA.php153 $p = $x->subtract($c->subtract(self::$one));
156 $p_1 = $p->subtract(self::$one);
215 $private->x = BigInteger::randomRange(self::$one, $private->q->subtract(self::$one));
H A DDH.php250 $max = $max->subtract($one);
252 $max = $params->prime->subtract($one);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DPuTTY.php84 $temp = $primes[1]->subtract($one);
86 $temp = $primes[2]->subtract($one);
H A DOpenSSH.php75 $temp = $primes[1]->subtract($one);
77 $temp = $primes[2]->subtract($one);
H A DRaw.php122 $temp = $components['primes'][1]->subtract($one);
124 $temp = $components['primes'][2]->subtract($one);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php125 $h = $m_i[1]->subtract($m_i[2]);
136 $h = $m_i->subtract($m);
150 $r = BigInteger::randomRange(self::$one, $smallest->subtract(self::$one));
156 $h = $m_i[1]->subtract($m_i[2]);
167 $h = $m_i->subtract($m);
/plugin/mikioplugin/icons/bootstrap-icons/svg/
H A Dsubtract.svg1 <svg class="bi bi-subtract" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DPowerOfTwo.php60 $result = $lhs->bitwise_and($rhs->subtract($temp));
/plugin/ckgdoku/ckeditor/plugins/a11yhelp/dialogs/lang/
H A Daf.js10 …umpad8:"Nommerblok 8",numpad9:"Nommerblok 9",multiply:"Maal",add:"Plus",subtract:"Minus",decimalPo…
H A Dar.js10 numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"إضافة",subtract:"Subtract",decimalPo…
H A Daz.js10 …",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Vurma",add:"Əlavə et",subtract:"Çıxma",decimalPo…
H A Dbg.js10 numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoin…
H A Dcs.js11 add:"Přidat",subtract:"Numerická klávesa odečítání",decimalPoint:"Desetinná tečka",divide:"Numerick…
H A Dcy.js10 … 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decima…
H A Dda.js10 …ad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Gange",add:"Plus",subtract:"Minus",decimalPo…
H A Dde.js10 …ck 8",numpad9:"Ziffernblock 9",multiply:"Multiplizieren",add:"Addieren",subtract:"Subtrahieren",de…
H A Del.js11 multiply:"Πολλαπλασιασμός",add:"Πρόσθεση",subtract:"Αφαίρεση",decimalPoint:"Υποδιαστολή",divide:"Δι…
H A Dro.js10 … 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decima…

123456789