Home
last modified time | relevance | path

Searched refs:rhs (Results 1 – 25 of 27) sorted by relevance

12

/plugin/structcondstyle/
H A Daction.php34 $not_func = function($lhs, $rhs){return $lhs !== $rhs;};
35 $in_func = function($lhs, $rhs){
38 return strpos($lhs, $rhs) !== false;
43 … $this->ops = [ "=" => new Operator("=", function($lhs, $rhs){return $lhs == $rhs;}),
46 … "<" => new NumericOperator("<", function($lhs, $rhs){return $lhs < $rhs;}),
47 … "<=" => new NumericOperator("<=", function($lhs, $rhs){return $lhs <= $rhs;}),
48 … ">" => new NumericOperator(">", function($lhs, $rhs){return $lhs > $rhs;}),
49 … ">=" => new NumericOperator(">=", function($lhs, $rhs){return $lhs >= $rhs;}),
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DBarrett.php65 $rhs = new $class();
67 $rhs->value = $m;
68 list(, $temp) = $lhs->divide($rhs);
86 $rhs = new $class();
87 $rhs->value = $m;
89 list($u, $m1) = $lhs->divide($rhs);
159 $rhs = new $class();
161 $rhs->value = $n;
162 list(, $temp) = $lhs->divide($rhs);
173 $rhs = new $class();
[all …]
H A DClassic.php41 $rhs = new $class();
42 $rhs->value = $n;
43 list(, $temp) = $lhs->divide($rhs);
H A DPowerOfTwo.php54 $rhs = new $class();
55 $rhs->value = $n;
60 $result = $lhs->bitwise_and($rhs->subtract($temp));
H A DMontgomery.php41 $rhs = new $class();
42 $rhs->value = $n;
44 list(, $temp) = $lhs->divide($rhs);
H A DEvalBarrett.php86 $rhs = new $class();
95 $rhs = new $class();
/plugin/structcondstyle/meta/
H A DOperator.php27 function evaluate($lhs, $rhs){ argument
30 return $eval($lhs,$rhs);
51 function evaluate($lhs, $rhs) argument
55 $rvalue = $this->make_numeric($rhs);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPublicKey.php112 $rhs = $curve->multiplyPoint($qa, $k);
113 $rhs = $curve->addPoint($rhs, $R);
114 $rhs = $curve->convertToAffine($rhs);
116 return $lhs[0]->equals($rhs[0]) && $lhs[1]->equals($rhs[1]);
/plugin/strata/helper/
H A Dsyntax.php390 'rhs'=>$pattern
403 'rhs'=>$optional
418 if($f['rhs']['type'] == 'variable' && !in_array($f['rhs']['text'], $scope)) {
419 $this->_fail(sprintf($this->getLang('error_query_filterscope'),utf8_tohtml(hsc($f['rhs']['text']))), $line);
426 'rhs'=>$filters
438 'rhs'=>$minus
471 list($rhs, $s) = $this->transformGroup($sub, $typemap);
476 'rhs'=>$rhs
[all...]
H A Dtriples.php300 'rhs'=>array(
561 $gp2 = $this->_dispatch($query['rhs']);
570 $gp2 = $this->_dispatch($query['rhs']);
579 $fs = $query['rhs'];
594 if($f['rhs']['type'] == 'variable') {
595 $rhs = $this->_name($f['rhs']);
598 $rhs = ':'.$id;
599 $this->literals[$id] = $f['rhs']['text'];
611 $filters[] = '( ' . $this->_ci($lhs) . ' '.$f['operator'].' ' . $this->_ci($rhs)
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DKoblitzPrime.php93 $rhs = $this->p[0]->multiply($this->beta);
94 $lambda = $lhs->equals($rhs) ? $lambdas[0] : $lambdas[1];
245 $rhs = $temp->add($this->b);
247 return $lhs->equals($rhs);
305 $rhs = $a0->multiply($a0)->add($b0->multiply($b0));
307 if ($lhs->compare($rhs) <= 0) {
H A DTwistedEdwards.php215 $rhs = $this->d->multiply($x2)->multiply($y2)->add($this->one);
217 return $lhs->equals($rhs);
H A DBinary.php304 $rhs = $x3->add($this->a->multiply($x2))->add($this->b);
306 return $lhs->equals($rhs);
H A DPrime.php482 $rhs = $temp->add($this->b);
484 return $lhs->equals($rhs);
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dcommons-lang3-3.5.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php590 static $temp, $lhs, $rhs;
594 $rhs = new static();
599 $rhs = new static();
602 $rhs_value = &$rhs->value;
643 while ($lhs->compare($rhs) > 0) {
/plugin/codemirror/dist/keymaps/
H A Dvim.min.js.map1rhs","ctx","exCommandDispatcher","unmap","noremap","toCtxArray","ctxsToMap","actualLength","origLe…
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js46051 var rhs = this.c2.redSub(this.a.redMul(x2));
46053 var y2 = rhs.redMul(lhs.redInvm());
46067 var rhs = y2.redMul(this.d).redMul(this.c2).redSub(this.a);
46068 var x2 = lhs.redMul(rhs.redInvm());
46087 var rhs = this.c2.redMul(this.one.redAdd(this.d.redMul(x2).redMul(y2)));
46088 return lhs.cmp(rhs) === 0;
46414 var rhs = x2.redMul(x).redAdd(x2.redMul(this.a)).redAdd(x);
46415 var y = rhs.redSqrt();
46416 return y.redSqr().cmp(rhs) === 0;
46777 var rhs = x.redSqr().redMul(x).redIAdd(ax).redIAdd(this.b);
[all …]
/plugin/dirtylittlehelper/script/
H A Dmermaid.min.js28 …ank:o,partition:function(t,e){var n={lhs:[],rhs:[]};return r.forEach(t,(function(t){e(t)?n.lhs.pus… property in t.exports.partition.n
H A Dmermaid.min.js.map1rhs","notime","layout","debug","cachedSetTimeout","cachedClearTimeout","defaultSetTimout","default…
/plugin/diagramsnet/lib/js/mermaid/
H A Dmermaid.min.js29 …ank:o,partition:function(t,e){var n={lhs:[],rhs:[]};return r.forEach(t,(function(t){e(t)?n.lhs.pus… property in t.exports.partition.n
/plugin/flowcharts/
H A Dmermaid.min.js24 …ank:o,partition:function(t,e){var n={lhs:[],rhs:[]};return r.forEach(t,(function(t){e(t)?n.lhs.pus… property in t.exports.partition.n
/plugin/diagramsnet/lib/js/
H A Dextensions.min.js1728 …ank:o,partition:function(t,e){var n={lhs:[],rhs:[]};return r.forEach(t,(function(t){e(t)?n.lhs.pus… property in t.exports.partition.n
/plugin/dirtylittlehelper/mermaid/editor/
H A Dbundle.js403 …tition(e,(function(e){return i.has(e,"barycenter")})),s=n.lhs,a=i.sortBy(n.rhs,(function(e){return…
426 …tition(e,(function(e){return i.has(e,"barycenter")})),s=n.lhs,a=i.sortBy(n.rhs,(function(e){return…
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Dbundle.js403 …tition(e,(function(e){return i.has(e,"barycenter")})),s=n.lhs,a=i.sortBy(n.rhs,(function(e){return…
426 …tition(e,(function(e){return i.has(e,"barycenter")})),s=n.lhs,a=i.sortBy(n.rhs,(function(e){return…

12