Home
last modified time | relevance | path

Searched refs:s0 (Results 1 – 25 of 52) sorted by path

123

/plugin/abc2/abc-libraries/abc2svg/
H A Dabc2svg-1.js1584 function draw_tuplet(s1){var s2,s3,g,upstaff,nb_only,some_slur,x1,x2,y1,y2,xm,ym,a,s0,yy,yx,dy,a,dir,r,tp=s1.tp.shift()
1670 xm=.5*(x1+x2);ym=.5*(y1+y2);a=(y2-y1)/(x2-x1);s0=3*(s2.notes[s2.nhd].pit-s1.notes[s1.nhd].pit)/(x2-x1)
1671 if(s0>0){if(a<0)
1673 else if(a>s0)
1674 a=s0}else{if(a>0)
1676 else if(a<s0)
1677 a=s0}
1699 xm=.5*(x1+x2);ym=.5*(y1+y2);a=(y2-y1)/(x2-x1);s0=3*(s2.notes[0].pit-s1.notes[0].pit)/(x2-x1)
1700 if(s0>0){if(a<0)
1702 else if(a>s0)
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php1389 $s0 = $temp[0]->bitwise_xor($temp[1]);
1390 $s0 = $s0->bitwise_xor($temp[2]);
1399 $w[$i] = $w[$i]->add($s0);
1421 $s0 = $temp[0]->bitwise_xor($temp[1]);
1422 $s0 = $s0->bitwise_xor($temp[2]);
1430 $t2 = $s0->add($maj);
H A DTwofish.php465 list($s3, $s2, $s1, $s0) = $this->mdsrem($le_longs[3], $le_longs[4]);
482 $S0[$i] = $m0[$q0[$q0[$i] ^ $s4] ^ $s0];
491 list($s3, $s2, $s1, $s0) = $this->mdsrem($le_longs[5], $le_longs[6]);
508 $S0[$i] = $m0[$q0[$q0[$q1[$i] ^ $s8] ^ $s4] ^ $s0];
518 list($s3, $s2, $s1, $s0) = $this->mdsrem($le_longs[7], $le_longs[8]);
535 $S0[$i] = $m0[$q0[$q0[$q1[$q1[$i] ^ $sc] ^ $s8] ^ $s4] ^ $s0];
/plugin/combo/resources/brand/whatsapp/
H A Dsolid-circle.svg2 <path d="m12 0c-6.6 0-12 5.4-12 12s5.4 12 12 12 12-5.4 12-12-5.4-12-12-12zm0 3.8c2.2 0 4.2 0.9 5.7 2.4 1.6 1.5 2.4 3.6 2.5 5.7 0 4.5-3.6 8.1-8.1 8.1-1.4 0-2.7-0.4-3.9-1l-4.4 1.1 1.2-4.2c-0.8-1.2-1.1-2.6-1.1-4 0-4.5 3.6-8.1 8.1-8.1zm0.1 1.5c-3.7 0-6.7 3-6.7 6.7 0 1.3 0.3 2.5 1 3.6l0.1 0.3-0.7 2.4 2.5-0.7 0.3 0.099c1 0.7 2.2 1 3.4 1 3.7 0 6.8-3 6.9-6.6 0-1.8-0.7-3.5-2-4.8s-3-2-4.8-2zm-3 2.9h0.4c0.2 0 0.4-0.099 0.5 0.3s0.5 1.5 0.6 1.7 0.1 0.2 0 0.3-0.1 0.2-0.2 0.3l-0.3 0.3c-0.1 0.1-0.2 0.2-0.1 0.4 0.2 0.2 0.6 0.9 1.2 1.4 0.7 0.7 1.4 0.9 1.6 1 0.2 0 0.3 0.001 0.4-0.099s0.5-0.6 0.6-0.8c0.2-0.2 0.3-0.2 0.5-0.1l1.4 0.7c0.2 0.1 0.3 0.2 0.5 0.3 0 0.1 0.1 0.5-0.099 1s-1 0.9-1.4 1c-0.3 0-0.8 0.001-1.3-0.099-0.3-0.1-0.7-0.2-1.2-0.4-2.1-0.9-3.4-3-3.5-3.1s-0.8-1.1-0.8-2.1c0-1 0.5-1.5 0.7-1.7s0.4-0.3 0.5-0.3z"/>
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php140 if ($dfa->s0 === null) {
143 return $this->execATN($input, $dfa->s0);
175 $this->decisionToDFA[$this->mode]->s0 = $next;
H A DParserATNSimulator.php354 $s0 = $dfa->getPrecedenceStartState($this->parser->getPrecedence());
356 // The start state for a "regular" DFA is just s0.
357 $s0 = $dfa->s0;
360 if ($s0 === null) {
388 * than simply setting DFA.s0.
391 if ($dfa->s0 === null) {
392 throw new \RuntimeException('DFA.s0 cannot be null.');
395 $dfa->s0->configs = $s0_closure; // not used for prediction but useful to know start configs anyway
399 $s0
456 execATN(DFA $dfa, DFAState $s0, TokenStream $input, int $startIndex, ParserRuleContext $outerContext) global() argument
755 execATNWithFullContext(DFA $dfa, DFAState $D, ATNConfigSet $s0, TokenStream $input, int $startIndex, ParserRuleContext $outerContext) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFA.php24 public $s0; variable in Antlr\\Antlr4\\Runtime\\Dfa\\DFA
58 $this->s0 = $precedenceState;
65 * start state {@see DFA::$s0} which is not stored in {@see DFA::$states}.
92 if (!$this->precedenceDfa || $this->s0 === null) {
96 if ($this->s0->edges === null) {
97 throw new \RuntimeException('s0.edges cannot be null for a precedence DFA.');
100 if ($precedence < 0 || $precedence >= \count($this->s0->edges)) {
104 return $this->s0->edges[$precedence] ?? null;
118 if (!$this->precedenceDfa || $this->s0 === null) {
126 if ($this->s0
[all...]
H A DDFASerializer.php29 if ($this->dfa->s0 === null) {
/plugin/diagramsnet/lib/images/
H A Dnotion-logo-white.svg1 …0.87-15.831 0-19.796-4.945-31.654-19.76l-96.944-152.19v147.248l30.677 6.922s0 17.78-24.75 17.78l-6…
H A Dnotion-logo.svg1 …0.87-15.831 0-19.796-4.945-31.654-19.76l-96.944-152.19v147.248l30.677 6.922s0 17.78-24.75 17.78l-6…
/plugin/diagramsnet/lib/img/lib/allied_telesis/computer_and_terminals/
H A DVOIP_IP_phone.svg1s0-1.375-.375-1.875-1-1-1-1l-13-7.625z"/></g><g transform="translate(0 45.201)"><defs><filter id="…
/plugin/diagramsnet/lib/img/lib/allied_telesis/switch/
H A DSwitch_24_port_L3.svg1 …c1.597-.6 3.1-.927 4.506-.947s2.577.25 3.5.805c.643.385 1.032.84 1.17 1.367s0 1.054-.412 1.577-1 .…
H A DSwitch_24_port_L3_Alternative.svg1 …c1.597-.6 3.1-.927 4.506-.947s2.577.25 3.5.805c.643.385 1.032.84 1.17 1.367s0 1.054-.412 1.577-1 .…
H A DSwitch_24_port_L3_POE.svg1 …-.7c1.074-.4 2.086-.623 3.032-.636s1.732.167 2.36.54c.433.26.696.565.787.92s0 .708-.277 1.06-.68.6…
H A DSwitch_48_port_L3.svg1 …c1.597-.6 3.1-.927 4.506-.947s2.577.25 3.5.805c.643.385 1.032.84 1.17 1.367s0 1.054-.412 1.577-1 .…
H A DSwitch_48_port_L3_POE.svg1 …-.7c1.074-.4 2.086-.623 3.032-.636s1.732.167 2.36.54c.433.26.696.565.787.92s0 .708-.277 1.06-.68.6…
H A DSwitch_52_port_L3.svg1 …c1.597-.6 3.1-.927 4.506-.947s2.577.25 3.5.805c.643.385 1.032.84 1.17 1.367s0 1.054-.412 1.577-1 .…
/plugin/diagramsnet/lib/img/lib/ibm/applications/
H A Dapi_polyglot_runtimes.svg1 …round"/><path d="M11.1 51.6c.2 0 .3-.2.3-.5l-1.3-5.6 5.6 1.2c.2.1.4 0 .5-.2s0-.4-.2-.5h-.1l-6.2-1.…
H A Dservice_broker.svg1 …9l-13.3 8.7-3.9 2.4c-.9.1-1.9.4-2.9.5h-.9zm-.9-35.5h.3c.3 0 .6.2.6.5l.3 1.6s0 .1.1.1l.7.3h.1l1.3-.…
/plugin/diagramsnet/lib/img/lib/ibm/blockchain/
H A Dclient_application.svg1 ….6-1.9-.5-.4 0-.8.2-.9.6-.1.5.2.8.6.9l1.9.6c1 .2 1.7 1 1.9 2 .1 0 .1 0 .1.1s0 0-.1 0v.7c0 .5-.2 1.…
H A Dexisting_enterprise_systems.svg1 ….1v6.3c0 .1.1.3.2.3l5.3 3 .2.1v-6.3c0-.1-.1-.2-.2-.3l-4.4-2.5-1.1-.6zm-24 0s0 .1 0 0v6.4c0 .1.1.2.…
H A Dkey_management.svg1 ….7-1.7-1.8z" fill="#fff"/><path id="A" d="M15.2 18.4c-4.2 1.8-9-.2-10.9-4.5s0-9.2 4.2-11 9 .2 10.9…
H A Dservices.svg1 …25.7 44.2v-1.8c0-.6.5-.9 1-.5l5.5 3.7c.5.3.5.7 0 1l-5.5 3.7c-.5.3-.9.1-1-.5s0-1.2 0-1.8h-7.8c-1 .1…
/plugin/diagramsnet/lib/img/lib/ibm/miscellaneous/
H A Dcognitive_services.svg1s0-.6 0-1v-3.6h-.1l-1.6 1.5-1 1.1c0-.1-.1-.2 0-.3l1.1-1.2 1.5-1.5s.1-.1.1-.2v-1.1l.1-2v-.1l.1-1.4.…
/plugin/diagramsnet/lib/img/lib/ibm/security/
H A Dapi_security.svg1 ….2-.5.2-.3.1-.5.1h-.4c-.1 0-.3-.1-.4-.1-.1-.1-.2-.1-.3-.3-.1-.1-.1-.2-.1-.4s0-.3.1-.5c.1-.1.1-.2.3…

123