/plugin/codemirror/dist/modes/ |
H A D | toml.min.js | 1 …lhs:true,inArray:0}},token:function(a,b){if(!b.inString&&(a.peek()=='"'||a.peek()=="'")){b.stringT…
|
H A D | toml.min.js.map | 1 …lhs","inArray","token","stream","state","peek","next","sol","eol","match","skipTo","skipToEnd","ea…
|
H A D | pegjs.min.js | 1 …lhs:true,localState:null}},token:function(b,e){if(b)if(!e.inString&&!e.inComment&&(b.peek()=='"'||…
|
H A D | ebnf.min.js | 1 …lhs:true,localState:null,stack:[],inDefinition:false}},token:function(b,f){if(!b)return;if(f.stack…
|
H A D | pegjs.min.js.map | 1 …lhs","localState","token","state","peek","next","eol","skipToEnd","text","current","i","length","i…
|
H A D | ebnf.min.js.map | 1 …lhs","localState","stack","inDefinition","token","stream","state","length","peek","next","unshift"…
|
/plugin/structcondstyle/ |
H A D | action.php | 34 $not_func = function($lhs, $rhs){return $lhs !== $rhs;}; 35 $in_func = function($lhs, $rhs){ 37 if(is_string($lhs)){ 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 D | Barrett.php | 64 $lhs = new $class(); 66 $lhs->value = $n; 68 list(, $temp) = $lhs->divide($rhs); 82 $lhs = new $class(); 83 $lhs_value = &$lhs->value; 89 list($u, $m1) = $lhs->divide($rhs); 158 $lhs = new $class(); 160 $lhs->value = $x; 162 list(, $temp) = $lhs->divide($rhs); 169 $lhs = new $class(); [all …]
|
H A D | Classic.php | 39 $lhs = new $class(); 40 $lhs->value = $x; 43 list(, $temp) = $lhs->divide($rhs);
|
H A D | PowerOfTwo.php | 52 $lhs = new $class(); 53 $lhs->value = $x; 60 $result = $lhs->bitwise_and($rhs->subtract($temp));
|
H A D | Montgomery.php | 39 $lhs = new $class(); 40 $lhs->value = array_merge(self::array_repeat(0, count($n)), $x); 44 list(, $temp) = $lhs->divide($rhs);
|
H A D | EvalBarrett.php | 81 $lhs = new $class(); 82 $lhs_value = &$lhs->value; 88 list($u, $m1) = $lhs->divide($m); 97 list($u) = $lhs->divide($m);
|
/plugin/structcondstyle/meta/ |
H A D | Operator.php | 27 function evaluate($lhs, $rhs){ argument 30 return $eval($lhs,$rhs); 51 function evaluate($lhs, $rhs) argument 54 $lvalue = $this->make_numeric($lhs);
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/ |
H A D | Barrett.php | 89 $lhs = '1' . str_repeat('0', $m_length + ($m_length >> 1)); 90 $u = bcdiv($lhs, $m, 0); 91 $m1 = bcsub($lhs, bcmul($u, $m)); 169 $lhs = '1' . str_repeat('0', 2 * $n_length); 170 $cache[self::DATA][] = bcdiv($lhs, $n, 0);
|
H A D | EvalBarrett.php | 71 $lhs = '1' . str_repeat('0', $m_length + ($m_length >> 1)); 72 $u = bcdiv($lhs, $m, 0); 73 $m1 = bcsub($lhs, bcmul($u, $m));
|
/plugin/strata/helper/ |
H A D | syntax.php | 389 'lhs'=>$result, 402 'lhs'=>$result, 415 if($f['lhs']['type'] == 'variable' && !in_array($f['lhs']['text'], $scope)) { 416 $this->_fail(sprintf($this->getLang('error_query_filterscope'),utf8_tohtml(hsc($f['lhs']['text']))), $line); 425 'lhs'=>$result, 437 'lhs'=>$result, 475 'lhs'=>$result, 572 list(,$lhs, $ltype, $operator, $rhs, $rtype) = $match; 574 $lhs [all...] |
H A D | triples.php | 299 'lhs'=>$query['group'], 560 $gp1 = $this->_dispatch($query['lhs']); 569 $gp1 = $this->_dispatch($query['lhs']); 578 $gp = $this->_dispatch($query['lhs']); 585 if($f['lhs']['type'] == 'variable') { 586 $lhs = $this->_name($f['lhs']); 589 $lhs = ':'.$id; 590 $this->literals[$id] = $f['lhs']['text']; 611 $filters[] = '( ' . $this->_ci($lhs) [all...] |
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/ |
H A D | KoblitzPrime.php | 92 $lhs = $this->multiplyPoint($this->p, $lambdas[0])[0]; 94 $lambda = $lhs->equals($rhs) ? $lambdas[0] : $lambdas[1]; 243 $lhs = $y->multiply($y); 247 return $lhs->equals($rhs); 306 $lhs = $v->multiply($v)->add($b->multiply($b)); 307 if ($lhs->compare($rhs) <= 0) {
|
H A D | Binary.php | 300 $lhs = $y->multiply($y); 301 $lhs = $lhs->add($x->multiply($y)); 306 return $lhs->equals($rhs);
|
H A D | TwistedEdwards.php | 214 $lhs = $this->a->multiply($x2)->add($y2); 217 return $lhs->equals($rhs);
|
H A D | Prime.php | 479 $lhs = $y->multiply($y); 484 return $lhs->equals($rhs);
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/ |
H A D | PublicKey.php | 111 $lhs = $curve->multiplyPoint($curve->getBasePoint(), $S); 116 return $lhs[0]->equals($rhs[0]) && $lhs[1]->equals($rhs[1]);
|
/plugin/diagramsnet/lib/WEB-INF/lib/ |
H A D | commons-lang3-3.5.jar | META-INF/MANIFEST.MF
META-INF/
org/
org/apache/
org/ ... |
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/ |
H A D | PHP.php | 590 static $temp, $lhs, $rhs; 593 $lhs = new static(); 598 $lhs = new static(); 638 $lhs->value = [$quotient_value[$q_index]]; 639 $lhs = $lhs->multiply($temp); 643 while ($lhs->compare($rhs) > 0) { 646 $lhs->value = [$quotient_value[$q_index]]; 647 $lhs = $lhs->multiply($temp);
|
/plugin/codemirror/dist/keymaps/ |
H A D | vim.min.js.map | 1 …lhs","rhs","ctx","exCommandDispatcher","unmap","noremap","toCtxArray","ctxsToMap","actualLength","…
|