/plugin/geophp/vendor/funiq/geophp/src/Geometry/ |
H A D | LineString.php | 96 pow(($previousPoint->x() - $point->x()), 2) + 97 pow(($previousPoint->y() - $point->y()), 2) 130 pow(($previousPoint->x() - $point->x()), 2) + 131 pow(($previousPoint->y() - $point->y()), 2) 147 pow(($previousPoint->x() - $point->x()), 2) + 148 pow(($previousPoint->y() - $point->y()), 2) + 149 pow(($previousPoint->z() - $point->z()), 2) 178 pow(cos($lat2) * sin($deltaLon), 2) + 179 pow(cos($lat1) * sin($lat2) - sin($lat1) * cos($lat2) * cos($deltaLon), 2) 186 pow( [all...] |
H A D | Point.php | 268 pow(($this->x() - $geometry->x()), 2) 269 + pow(($this->y() - $geometry->y()), 2)
|
/plugin/openid/Auth/OpenID/ |
H A D | BigMath.php | 62 $long = $this->div($long, pow(2, 8)); 105 $n = $this->mul($n, pow(2, 8)); 154 $mxrand = $this->pow(256, $nbytes); 223 abstract protected function pow($base, $exponent); function in Auth_OpenID_MathLibrary 248 function pow($base, $exponent) function in Auth_OpenID_BcMathWrapper 338 function pow($base, $exponent) function in Auth_OpenID_GmpMathWrapper
|
/plugin/fedauth/Auth/OpenID/ |
H A D | BigMath.php | 62 $long = $this->div($long, pow(2, 8)); 105 $n = $this->mul($n, pow(2, 8)); 158 $mxrand = $this->pow(256, $nbytes); 203 function pow($base, $exponent) function in Auth_OpenID_BcMathWrapper 289 function pow($base, $exponent) function in Auth_OpenID_GmpMathWrapper
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/ |
H A D | Integer.php | 230 public function pow(BigInteger $x) function in phpseclib3\\Math\\PrimeField\\Integer 255 list($pow) = $p_1->divide($two); 257 $temp = $z->powMod($pow, static::$modulo[$this->instanceID]); 272 while (!$t->powMod($two->pow($i), static::$modulo[$this->instanceID])->equals($one)) { 279 … $b = $c->powMod($two->pow($m->subtract($i)->subtract($one)), static::$modulo[$this->instanceID]);
|
/plugin/badbehaviour/bad-behavior/ |
H A D | functions.inc.php | 50 $mask = pow(2,32) - pow(2, (32 - $mask));
|
/plugin/statdisplay/pchart/ |
H A D | PieChart.php | 250 …$Caption = (round ( $Value * pow ( 10, $Decimals ) * $SplicePercent ) / pow ( 10, $Decimals )) . "… 254 …ption = $iLabels [$Key] . "\r\n" . (round ( $Value * pow ( 10, $Decimals ) * $SplicePercent ) / po… 256 …ption = $iLabels [$Key] . "\r\n" . (round ( $Value * pow ( 10, $Decimals ) * $SplicePercent ) / po… 503 …$Caption = (round ( $rValues [$Key] * pow ( 10, $Decimals ) * $rSplicePercent ) / pow ( 10, $Decim… 507 …ption = $iLabels [$Key] . "\r\n" . (round ( $Value * pow ( 10, $Decimals ) * $SplicePercent ) / po…
|
/plugin/statistics/inc/pchart/ |
H A D | PieChart.php | 266 $Caption = (round($Value * pow(10, $Decimals) * $SplicePercent) / pow(10, $Decimals))."%"; 270 $Caption = $iLabels [$Key]."\r\n".(round($Value * pow(10, $Decimals) * $SplicePercent) / pow(10, $Decimals))."%"; 272 $Caption = $iLabels [$Key]."\r\n".(round($Value * pow(10, $Decimals) * $SplicePercent) / pow(10, $Decimals))."%"; 530 $Caption = (round($rValues [$Key] * pow(10, $Decimals) * $rSplicePercent) / pow(10, $Decimals))."%"; 534 $Caption = $iLabels [$Key]."\r\n".(round($Value * pow(10, $Decimals) * $SplicePercent) / pow(1 [all...] |
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | getid3.lib.php | 111 $hasINT64 = is_int(pow(2, 31)); // 32-bit int are limited to (2^31)-1 226 …$biasedexponent = pow(2, $exponentbits - 1) - 1 + $normalizedbinary['exponent']; // (127 or 102… 279 $exponent = pow(2, self::Bin2Dec($exponentstring) - 16383); 295 if (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction != 0)) { 298 } elseif (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction == 0)) { 313 …$floatvalue = pow(2, (-1 * (pow(2, $exponentbits - 1) - 2))) * self::DecimalBinary2Float($fraction… 318 …$floatvalue = pow(2, ($exponent - (pow(2, $exponentbits - 1) - 1))) * (1 + self::DecimalBinary2Flo… 343 $intvalue += (ord($byteword[$i]) & 0x7F) * pow(2, ($bytewordlen - 1 - $i) * 7); 345 $intvalue += ord($byteword[$i]) * pow(256, ($bytewordlen - 1 - $i)); 458 $decvalue += ((int) substr($binstring, strlen($binstring) - $i - 1, 1)) * pow(2, $i); [all …]
|
H A D | module.audio.ac3.php | 586 0 => pow(2, -3.0 / 6), // 0.707 (-3.0 dB) 587 1 => pow(2, -4.5 / 6), // 0.595 (-4.5 dB) 588 2 => pow(2, -6.0 / 6), // 0.500 (-6.0 dB) 604 0 => pow(2, -3.0 / 6), 605 1 => pow(2, -6.0 / 6),
|
/plugin/jukebox/id3/ |
H A D | getid3.lib.php | 146 …$biasedexponent = pow(2, $exponentbits - 1) - 1 + $normalizedbinary['exponent']; // (127 or 102… 187 $exponent = pow(2, getid3_lib::Bin2Dec($exponentstring) - 16383); 205 if (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction != 0)) { 208 } elseif (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction == 0)) { 223 …$floatvalue = pow(2, (-1 * (pow(2, $exponentbits - 1) - 2))) * getid3_lib::DecimalBinary2Float($fr… 228 …$floatvalue = pow(2, ($exponent - (pow(2, $exponentbits - 1) - 1))) * (1 + getid3_lib::DecimalBina… 244 $intvalue += ord($byteword{$i}) * pow(256, ($bytewordlen - 1 - $i)); 329 $decvalue += ((int) substr($binstring, strlen($binstring) - $i - 1, 1)) * pow(2, $i); 455 …(substr($rawdata, 0, 1)) + (float) (getid3_lib::BigEndian2Int(substr($rawdata, 1, 1)) / pow(2, 8)); 460 …substr($rawdata, 0, 2)) + (float) (getid3_lib::BigEndian2Int(substr($rawdata, 2, 2)) / pow(2, 16));
|
/plugin/findologicxmlexport/vendor/hoa/file/ |
H A D | Finder.php | 316 $number *= pow(1024, 5); 322 $number *= pow(1024, 6); 328 $number *= pow(1024, 7); 334 $number *= pow(1024, 8);
|
/plugin/geophp/vendor/funiq/geophp/src/Adapter/ |
H A D | TWKB.php | 112 $options['precisionFactor'] = pow(10, $options['precision']); 130 $options['zPrecisionFactor'] = pow(10, $options['zPrecision']); 133 $options['mPrecisionFactor'] = pow(10, $options['mPrecision']); 348 'xyFactor' => pow(10, $this->writeOptions['decimalDigitsXY']), 349 'zFactor' => pow(10, $this->writeOptions['decimalDigitsZ']), 350 'mFactor' => pow(10, $this->writeOptions['decimalDigitsM'])
|
H A D | GeoHash.php | 171 $precision = pow(10, -max($lap - 1, $lop - 1, 0)) / 2; 188 $chr |= pow(2, $b); 198 $chr |= pow(2, $b);
|
/plugin/panoview/ |
H A D | script.js | 251 fullSize = this.tileSize * Math.pow(2, this.zoomLevel); 265 fullSize /= Math.pow(2, diff); 312 (this.tileSize * Math.pow(2, this.zoomLevel)); 618 'x': Math.floor(before.x * Math.pow(2, direction)), 619 'y': Math.floor(before.y * Math.pow(2, direction)) 703 … x = Math.round(Math.pow(Math.pow(this.slideAcceleration, 2) / (1 + Math.pow(slope, 2)), .5)); 824 coords.x > (this.tileSize * Math.pow(2, this.zoomLevel) + this.x) || 825 coords.y > (this.tileSize * Math.pow(2, this.zoomLevel) + this.y));
|
H A D | tiles.php | 34 $data['scale'] = (int) pow(2, $data['zoom']);
|
/plugin/jplayer/vendor/james-heinrich/getid3/demos/ |
H A D | demo.mp3header.php | 201 if ($truncatednumber <= pow(2, 30)) { 216 if ($floatnum <= pow(2, 30)) { 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)) { 380 …$floatvalue = pow(2, (-1 * (pow(2, $exponentbits - 1) - 2))) * DecimalBinary2Float($fractionstring… 385 …$floatvalue = pow(2, ($exponent - (pow(2, $exponentbits - 1) - 1))) * (1 + DecimalBinary2Float($fr… 402 $intvalue += ord($byteword[$i]) * pow(256, ($bytewordlen - 1 - $i)); 485 $decvalue += ((int) substr($binstring, strlen($binstring) - $i - 1, 1)) * pow(2, $i); 1282 if (($number > (0 - pow(2, $maxbits - 1))) && ($number <= pow(2, $maxbits - 1))) { [all …]
|
/plugin/logindelay/helper/ |
H A D | log.php | 66 … $delay = $this->getConf('initialDelay') * pow(2, ($strikes - $this->getConf('maxFailures')));
|
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/ |
H A D | File.php | 686 return (string) (pow($ccn, 2) + $ccn); 695 pow($ccn, 2) * pow(1 - $coverage/100, 3) + $ccn
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/ConnectionPool/ |
H A D | StaticNoPingConnectionPool.php | 74 $this->pingTimeout * pow(2, $connection->getPingFailures()),
|
H A D | StaticConnectionPool.php | 91 $this->pingTimeout * pow(2, $connection->getPingFailures()),
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/ |
H A D | Imb.php | 183 $asc = (($characters[$asc_chr[$i]] & pow(2, $asc_pos[$i])) > 0); 184 $dsc = (($characters[$dsc_chr[$i]] & pow(2, $dsc_pos[$i])) > 0);
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/ |
H A D | Ed25519.php | 134 $x = $x2->pow($exp); 140 $temp = $this->two->pow($temp);
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/ |
H A D | RetryMiddleware.php | 54 return (int) pow(2, $retries - 1) * 1000;
|
/plugin/diagramsnet/lib/js/rough/ |
H A D | README.md | 5 - Replace `**` with Math.pow, eg `x ** y` produces the same result as Math.pow(x,y)
|