Home
last modified time | relevance | path

Searched refs:exponent (Results 1 – 25 of 34) sorted by relevance

12

/plugin/openid/Auth/OpenID/
H A DBigMath.php220 * @param int $exponent
248 function pow($base, $exponent) argument
250 return bcpow($base, $exponent);
283 * @param int $exponent
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
338 function pow($base, $exponent) argument
340 return gmp_pow($base, $exponent);
[all …]
/plugin/fedauth/Auth/OpenID/
H A DBigMath.php203 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
289 function pow($base, $exponent) argument
291 return gmp_pow($base, $exponent);
319 function powmod($base, $exponent, $modulus) argument
[all …]
/plugin/jukebox/id3/
H A Dgetid3.lib.php90 $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)) {
214 } elseif (($exponent == 0) && ($fraction == 0)) {
221 } elseif (($exponent == 0) && ($fraction != 0)) {
[all …]
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dgetid3.lib.php158 $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)) {
304 } elseif (($exponent == 0) && ($fraction == 0)) {
311 } elseif (($exponent == 0) && ($fraction != 0)) {
[all …]
/plugin/codemirror/dist/modes/
H A Dcobol.min.js1exponent:/e/i,keyword_char:/[^\s\(\[\;\)\]]/,symbol:/[\w*+\-]/};function o(a,b){if(a==="0"&&b.eat(… property in AnonymousFunction62d85bf80200.n
H A Dcobol.min.js.map1exponent","keyword_char","symbol","isNumber","ch","stream","eat","eatWhile","test","peek","next","…
H A Dmathematica.min.js.map1 … // (``float). Note: while 1.2` is possible 1.2`` is not. At the end an exponent (float*^+12) can …
H A Dfortran.min.js.map1 …", \"erfc\", \"etime\",\n \"exit\", \"exp\", \"exponent\", \"extends_type…
H A Dhaskell.min.js.map1 …numFromThenTo\",\n \"enumFromTo\", \"error\", \"even\", \"exp\", \"exponent\", \"fail\", \"fi…
H A Derlang.min.js.map1 … } else {\n if (stream.eat(/[eE]/)) { // float with exponent\n if (…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php234 protected $exponent; variable in phpseclib3\\Crypt\\RSA
432 $privatekey->exponent = $d;
467 $key->exponent = $key->publicExponent;
470 $key->exponent = $key->privateExponent;
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DVerify.php234 $exponent = new $bigIntClass($this->jwt->urlsafeB64Decode($cert['e']), 256);
235 $component = array('n' => $modulus, 'e' => $exponent);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPublicKey.php47 return $x->modPow($this->exponent, $this->modulus);
516 $new->exponent = $this->exponent;
H A DPrivateKey.php115 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/
H A Ddemo.mp3header.php248 $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/
H A Dclass.evalmath.php1028 * @param double|int $exponent Exponent.
1031 public static function power( $base, $exponent ) { argument
1032 return pow( $base, $exponent );
/plugin/adfs/phpsaml/extlib/xmlseclibs/
H A Dxmlseclibs.php449 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/dirtylittlehelper/mermaid/editor/docs/
H A D7.7.js.map1 … 'expand',\n 'expanding',\n 'expiration',\n 'explicit',\n 'exponent',\n 'export',\…
/plugin/dirtylittlehelper/script/
H A Dmermaid.min.js1exponent=t,n}(3),No=function t(e){function n(t){return 1-Math.pow(1-t,e)}return e=+e,n.exponent=t,… function
H A Dmermaid.min.js.map1exponent.js","webpack://mermaid/./node_modules/d3-format/src/formatSpecifier.js","webpack://mermai…
/plugin/diagramsnet/lib/js/mermaid/
H A Dmermaid.min.js6exponent=t,n}(3),Bo=function t(e){function n(t){return 1-Math.pow(1-t,e)}return e=+e,n.exponent=t,… function
/plugin/flowcharts/
H A Dmermaid.min.js1exponent=t,n}(3),Co=function t(e){function n(t){return 1-Math.pow(1-t,e)}return e=+e,n.exponent=t,… function
/plugin/c3chart/assets/
H A Dd3.min.js2exponent=function(n){return arguments.length?(t=+n,e(e())):t},n.copy=function(){return li(n,Mi().e… function
/plugin/diagramsnet/lib/js/
H A Dextensions.min.js1705exponent=t,n}(3),Bo=function t(e){function n(t){return 1-Math.pow(1-t,e)}return e=+e,n.exponent=t,… function
/plugin/edittable/lib/
H A Dhandsontable.full.js12346 exponent,
12355 exponent = str.split('e')[1];
12360 if (+exponent > 0) {
12362 str = beforeDec + afterDec + zeroes(exponent - afterDec.length);
12377 zerosStr = zeroes((-1 * exponent) - 1);
12384 if (+exponent > 0 && precision > 0) {

12