| /plugin/openid/Auth/OpenID/ |
| D | BigMath.php | 220 * @param int $exponent 223 abstract protected function pow($base, $exponent); argument 248 function pow($base, $exponent) argument 250 return bcpow($base, $exponent); 283 * @param int $exponent 287 function _powmod($base, $exponent, $modulus) argument 291 while($this->cmp($exponent, 0) > 0) { 292 if ($this->mod($exponent, 2)) { 296 $exponent = $this->div($exponent, 2); 301 function powmod($base, $exponent, $modulus) argument [all …]
|
| /plugin/fedauth/Auth/OpenID/ |
| D | BigMath.php | 203 function pow($base, $exponent) argument 205 return bcpow($base, $exponent); 238 function _powmod($base, $exponent, $modulus) argument 242 while($this->cmp($exponent, 0) > 0) { 243 if ($this->mod($exponent, 2)) { 247 $exponent = $this->div($exponent, 2); 252 function powmod($base, $exponent, $modulus) argument 255 return bcpowmod($base, $exponent, $modulus); 257 return $this->_powmod($base, $exponent, $modulus); 289 function pow($base, $exponent) argument [all …]
|
| /plugin/jukebox/id3/ |
| D | getid3.lib.php | 90 $exponent = 0; 93 $exponent--; 97 $exponent += ($pointpos - 1); 103 return array('normalized'=>$binarypointnumber, 'exponent'=>(int) $exponent); 187 $exponent = pow(2, getid3_lib::Bin2Dec($exponentstring) - 16383); 189 $floatvalue = $exponent * $fraction; 202 $exponent = getid3_lib::Bin2Dec($exponentstring); 205 if (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction != 0)) { 208 } elseif (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction == 0)) { 214 } elseif (($exponent == 0) && ($fraction == 0)) { [all …]
|
| /plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
| D | getid3.lib.php | 158 $exponent = 0; 161 $exponent--; 165 $exponent += ($pointpos - 1); 171 return array('normalized'=>$binarypointnumber, 'exponent'=>(int) $exponent); 279 $exponent = pow(2, self::Bin2Dec($exponentstring) - 16383); 281 $floatvalue = $exponent * $fraction; 292 $exponent = self::Bin2Dec($exponentstring); 295 if (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction != 0)) { 298 } elseif (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction == 0)) { 304 } elseif (($exponent == 0) && ($fraction == 0)) { [all …]
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| D | RSA.php | 234 protected $exponent; variable in phpseclib3\\Crypt\\RSA 432 $privatekey->exponent = $d; 467 $key->exponent = $key->publicExponent; 470 $key->exponent = $key->privateExponent;
|
| /plugin/codemirror/dist/modes/ |
| D | cobol.min.js | 1 …exponent:/e/i,keyword_char:/[^\s\(\[\;\)\]]/,symbol:/[\w*+\-]/};function o(a,b){if(a==="0"&&b.eat(… property
|
| D | cobol.min.js.map | 1 …exponent","keyword_char","symbol","isNumber","ch","stream","eat","eatWhile","test","peek","next","…
|
| D | mathematica.min.js.map | 1 … // (``float). Note: while 1.2` is possible 1.2`` is not. At the end an exponent (float*^+12) can …
|
| D | fortran.min.js.map | 1 …", \"erfc\", \"etime\",\n \"exit\", \"exp\", \"exponent\", \"extends_type…
|
| D | haskell.min.js.map | 1 …numFromThenTo\",\n \"enumFromTo\", \"error\", \"even\", \"exp\", \"exponent\", \"fail\", \"fi…
|
| D | erlang.min.js.map | 1 … } else {\n if (stream.eat(/[eE]/)) { // float with exponent\n if (…
|
| /plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/ |
| D | Verify.php | 234 $exponent = new $bigIntClass($this->jwt->urlsafeB64Decode($cert['e']), 256); 235 $component = array('n' => $modulus, 'e' => $exponent);
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/ |
| D | PublicKey.php | 47 return $x->modPow($this->exponent, $this->modulus); 516 $new->exponent = $this->exponent;
|
| D | PrivateKey.php | 115 return $x->modPow($this->exponent, $this->modulus); 519 return $type::savePublicKey($this->modulus, $this->exponent, $options); 522 …return $type::savePrivateKey($this->modulus, $this->publicExponent, $this->exponent, $this->primes…
|
| /plugin/jplayer/vendor/james-heinrich/getid3/demos/ |
| D | demo.mp3header.php | 248 $exponent = 0; 251 $exponent--; 255 $exponent += ($pointpos - 1); 261 return array('normalized'=>$binarypointnumber, 'exponent'=>(int) $exponent); 351 $exponent = Bin2Dec($exponentstring); 358 return pow(2, ($exponent - 16382)) * DecimalBinary2Float($fractionstring); 362 if (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction != 0)) { 365 } elseif (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction == 0)) { 371 } elseif (($exponent == 0) && ($fraction == 0)) { 378 } elseif (($exponent == 0) && ($fraction != 0)) { [all …]
|
| /plugin/const/ |
| D | class.evalmath.php | 1028 * @param double|int $exponent Exponent. 1031 public static function power( $base, $exponent ) { argument 1032 return pow( $base, $exponent );
|
| /plugin/saml/phpsaml/extlib/xmlseclibs/ |
| D | xmlseclibs.php | 449 static function convertRSA($modulus, $exponent) { argument 451 $exponentEncoding = XMLSecurityKey::makeAsnSegment(0x02, $exponent); 1668 $exponent = null; 1673 $exponent = base64_decode($exponentNode->nodeValue); 1675 if (empty($modulus) || empty($exponent)) { 1678 $publicKey = XMLSecurityKey::convertRSA($modulus, $exponent);
|
| /plugin/adfs/phpsaml/extlib/xmlseclibs/ |
| D | xmlseclibs.php | 449 static function convertRSA($modulus, $exponent) { argument 451 $exponentEncoding = XMLSecurityKey::makeAsnSegment(0x02, $exponent); 1668 $exponent = null; 1673 $exponent = base64_decode($exponentNode->nodeValue); 1675 if (empty($modulus) || empty($exponent)) { 1678 $publicKey = XMLSecurityKey::convertRSA($modulus, $exponent);
|
| /plugin/asciidocjs/node_modules/@asciidoctor/opal-runtime/src/ |
| D | opal.js | 19645 exponent, 20046 exponent = parseInt(str.split('e')[1], 10); 20047 if (!(exponent < -4 || exponent >= (precision === -1 ? 6 : precision))) { 20080 exponent = parseInt(str.split('e')[1], 10); 20081 if (!(exponent < -4 || exponent >= (precision === -1 ? 6 : precision))) { 20941 $def(self, '$ldexp', function $$ldexp(mantissa, exponent) { argument 20945 exponent = $$('Math')['$integer!'](exponent); 20947 if (isNaN(exponent)) { 20951 return mantissa * Math.pow(2, exponent);
|
| /plugin/dirtylittlehelper/mermaid/editor/docs/ |
| D | 7.7.js.map | 1 … 'expand',\n 'expanding',\n 'expiration',\n 'explicit',\n 'exponent',\n 'export',\…
|
| /plugin/dirtylittlehelper/script/ |
| D | mermaid.min.js | 1 …exponent=t,n}(3),No=function t(e){function n(t){return 1-Math.pow(1-t,e)}return e=+e,n.exponent=t,…
|
| /plugin/diagramsnet/lib/js/mermaid/ |
| D | mermaid.min.js | 6 …exponent=t,n}(3),Bo=function t(e){function n(t){return 1-Math.pow(1-t,e)}return e=+e,n.exponent=t,…
|
| /plugin/datatables/assets/pdfmake/ |
| D | pdfmake.js | 28707 var exponent, mantissa, c; 28713 exponent = eMax; 28715 exponent = floor(log(number) / LN2); 28716 if (number * (c = pow(2, -exponent)) < 1) { 28717 exponent--; 28720 if (exponent + eBias >= 1) { 28726 exponent++; 28729 if (exponent + eBias >= eMax) { 28731 exponent = eMax; 28732 } else if (exponent + eBias >= 1) { [all …]
|
| /plugin/flowcharts/ |
| D | mermaid.min.js | 1 …exponent=t,n}(3),Co=function t(e){function n(t){return 1-Math.pow(1-t,e)}return e=+e,n.exponent=t,…
|
| /plugin/c3chart/assets/ |
| D | d3.min.js | 2 …exponent=function(n){return arguments.length?(t=+n,e(e())):t},n.copy=function(){return li(n,Mi().e… function
|