/plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/src/WebService/Http/ |
H A D | CurlRequest.php | 74 $opts[CURLOPT_CONNECTTIMEOUT_MS] = ceil($connectTimeout * 1000); 76 $opts[CURLOPT_CONNECTTIMEOUT] = ceil($connectTimeout); 81 $opts[CURLOPT_TIMEOUT_MS] = ceil($timeout * 1000); 83 $opts[CURLOPT_TIMEOUT] = ceil($timeout);
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/ |
H A D | round.test | 7 {{ 2.1|round(0, 'ceil') }} 10 {{ 21.3|round(-1, 'ceil')}}
|
/plugin/swiftmail/Swift/Plugin/ |
H A D | Throttler.php | 56 $seconds_allowed_so_far = ceil($bytes_sent / $bytes_per_sec); 75 $seconds_allowed_so_far = ceil($emails_sent / $emails_per_sec);
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | output.png.class.php | 178 return ceil($x * $scale); 184 return ceil($y * $scale); 378 $cy = $start_y - ceil($this->_fixSizeY($oy) / $dest_height) * $dest_height; 400 $cx = $start_x - ceil($this->_fixSizeX($oy) / $dest_width) * $dest_width; 428 $cx = $start_x - ceil($this->_fixSizeX($ox) / $dest_width) * $dest_width; 429 $cy = $start_y - ceil($this->_fixSizeY($oy) / $dest_height) * $dest_height; 441 $cx = $start_x - ceil($this->_fixSizeX($ox) / $dest_width) * $dest_width;
|
H A D | media.layout.inc.php | 105 return '0 0 '.ceil(mm2pt($this->size['width'])).' '.ceil(mm2pt($this->size['height']));
|
H A D | strategy.page.break.simple.php | 8 $num_pages = ceil($box->get_height() / mm2pt($media->real_height()));
|
/plugin/diagramsnet/lib/js/ |
H A D | export.js | 591 var x = Math.ceil(bounds.x / this.view.scale - this.view.translate.x); 592 var y = Math.ceil(bounds.y / this.view.scale - this.view.translate.y); 598 var w0 = Math.ceil((x + w) / size.width) - x0; 599 var h0 = Math.ceil((y + h) / size.height) - y0; 702 …bounds.width = Math.ceil(bounds.width + data.border) + 1; //The 1 extra pixels to prevent cutting … 703 …bounds.height = Math.ceil(bounds.height + data.border) + 1; //The 1 extra pixels to prevent starti… 721 …pf.width = Math.ceil(pf.width * printScale) + 1; //The 1 extra pixels to prevent cutting the cells… 722 …pf.height = Math.ceil(pf.height * printScale) + 1; //The 1 extra pixels to prevent starting a new … 795 document.body.style.width = Math.ceil(bounds.x + bounds.width) + 'px'; 796 document.body.style.height = Math.ceil(bounds.y + bounds.height) + 'px';
|
/plugin/mathpublish/phpmathpublisher/ |
H A D | MathExpression.php | 363 $height = ceil($height2 / 2 + $height1); 368 imagecopy($result, $img1, 0, ceil($height2 / 2), 0, 0, $width1, $height1); 371 $height = ceil($height1 / 2 + $height2); 376 imagecopy($result, $img1, 0, ceil($height2 - $height1 / 2), 0, 0, $width1, $height1); 398 $height = ceil($height2 / 2 + $height1); 404 imagecopy($result, $img2, $width1, ceil($height1 - $height2 / 2), 0, 0, $width2, $height2); 406 $height = ceil($height1 / 2 + $height2); 412 imagecopy($result, $img2, $width1, ceil($height1 / 2), 0, 0, $width2, $height2); 537 $width = max($widthSup, $widthExp) + ceil($size / 8); 565 $width = max($widthInf, $widthExp) + ceil( [all...] |
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/ |
H A D | EditorRuler.java | 475 .round(Math.ceil(tickDistance / stepping) / 2) * 2; in paintComponent() 493 double xe = Math.ceil(right / stepping) * stepping; in paintComponent() 494 xe += (int) Math.ceil(stepping); in paintComponent() 522 double ye = Math.ceil(bottom / stepping) * stepping; in paintComponent() 523 ye += (int) Math.ceil(stepping); in paintComponent()
|
/plugin/math2/phpmathpublisher/ |
H A D | mathpublisher.php | 638 $dx = max($wdim[2], $wdim[4]) - min($wdim[0], $wdim[6])+ceil($taille /8); 639 $dy = max($hdim[1], $hdim[3]) - min($hdim[5], $hdim[7])+ ceil($taille /8); 663 $dx = max($wdim[2], $wdim[4]) - min($wdim[0], $wdim[6])+ceil($taille /8); 1060 $hauteur = ceil($hauteur2/2+$hauteur1); 1072 $hauteur = ceil($hauteur1/2+$hauteur2); 1100 $hauteur = ceil($hauteur2/2+$hauteur1); 1112 $hauteur = ceil($hauteur1/2+$hauteur2); 1247 $largeur=max($largeursup,$largeurexp)+ceil($taille/8); 1275 $largeur=max($largeurinf,$largeurexp)+ceil($taille/8); 1531 $largeur=max($largeursup,$largeurexp)+ceil($taille/8); [all …]
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/ |
H A D | BinaryField.php | 62 $t = ceil($m / 8); 68 $pad = ceil($bitLen / 8);
|
/plugin/nspages/printers/ |
H A D | printerNice.php | 138 $nbItemPerCol[] = ceil(($idx + 1) * $collength) - ceil($idx * $collength);
|
/plugin/combo/vendor/hidehalo/nanoid-php/src/ |
H A D | Core.php | 14 $step = (int) ceil(1.6 * $mask * $size / $len);
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/ |
H A D | ScopeIndentSniff.php | 388 … $currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent); 615 … $currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent); 725 $currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent); 726 $checkIndent = (int) (ceil($checkIndent / $this->indent) * $this->indent); 772 $checkIndent = (int) (ceil($tokenIndent / $this->indent) * $this->indent); 808 $checkIndent = (int) (ceil($checkIndent / $this->indent) * $this->indent); 954 $currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent); 989 $currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent); 1107 $currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent); 1260 $currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent);
|
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/ |
H A D | UidProcessor.php | 57 return substr(bin2hex(random_bytes((int) ceil($length / 2))), 0, $length);
|
/plugin/logindelay/helper/ |
H A D | log.php | 68 return (int) $remainingDelay >= 0 ? ceil($remainingDelay) : 0;
|
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | write.id3v2.php | 685 …$framedata .= getid3_lib::BigEndian2String($val['peakvolume'], ceil($val['bitspeakvolume'] / 8), f… 722 …$framedata .= getid3_lib::BigEndian2String($source_data_array['volumechange']['right'], ceil($sour… 723 …$framedata .= getid3_lib::BigEndian2String($source_data_array['volumechange']['left'], ceil($sour… 724 …$framedata .= getid3_lib::BigEndian2String($source_data_array['peakvolume']['right'], ceil($source… 725 …$framedata .= getid3_lib::BigEndian2String($source_data_array['peakvolume']['left'], ceil($source… 737 …etid3_lib::BigEndian2String($source_data_array['volumechange']['center'], ceil($source_data_array[… 738 …$framedata .= getid3_lib::BigEndian2String($source_data_array['peakvolume']['center'], ceil($sourc… 741 …$framedata .= getid3_lib::BigEndian2String($source_data_array['volumechange']['bass'], ceil($sourc… 742 …$framedata .= getid3_lib::BigEndian2String($source_data_array['peakvolume']['bass'], ceil($source_… 791 …$framedata .= getid3_lib::BigEndian2String($val, ceil($source_data_array['adjustmentbits'] / 8), f… [all …]
|
/plugin/fastwiki/ |
H A D | pagecache.js | 85 batchSize = Math.ceil(idsA.length / 4); 87 for (var x=0; x<Math.ceil(idsA.length / batchSize); x++) {
|
/plugin/statistics/inc/ |
H A D | StatisticsGraph.class.php | 137 45, 1, false, ceil(count($times) / 12) 301 ($hours ? 0 : 45), 1, false, ceil(count($times) / 12) 351 ($hours ? 0 : 45), 1, false, ceil(count($times) / 12)
|
/plugin/elwikiupgrade/ |
H A D | VerboseTarLib.class.php | 82 $this->skipbytes(ceil($header['size'] / 512) * 512); 190 … $this->skipbytes(ceil($header['size'] / 512) * 512); // the size is usually 0 for directories 193 $this->skipbytes(ceil($header['size'] / 512) * 512); 527 $filename = trim($this->readbytes(ceil($header['size'] / 512) * 512));
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
H A D | round.rst | 25 * ``ceil`` always rounds up;
|
/plugin/svgpureinsert/ |
H A D | syntax.php | 101 $data['height'] = ceil($data['width'] * $h / $w);
|
/plugin/pgn4web/pgn4web/ |
H A D | puzzler.php | 109 $borderSize = ceil($squareSize / 50); 187 $frameBorderWidth = ceil($squareSize / 50);
|
/plugin/upgrade/vendor/splitbrain/php-archive/src/ |
H A D | Tar.php | 121 $this->skipbytes(ceil($header['size'] / 512) * 512); 181 $this->skipbytes(ceil($header['size'] / 512) * 512); 211 $this->skipbytes(ceil($header['size'] / 512) * 512); // the size is usually 0 for directories 632 $filename = trim($this->readbytes(ceil($return['size'] / 512) * 512));
|
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/ |
H A D | Datamatrix.php | 527 if ($numch[self::ENC_ASCII] <= ceil(min($numch[self::ENC_C40], $numch[self::ENC_TXT], $numch[self::ENC_X12], $numch[self::ENC_EDF], $numch[self::ENC_BASE256]))) { 530 if ($numch[self::ENC_BASE256] < ceil(min($numch[self::ENC_ASCII], $numch[self::ENC_C40], $numch[self::ENC_TXT], $numch[self::ENC_X12], $numch[self::ENC_EDF]))) { 533 if ($numch[self::ENC_EDF] < ceil(min($numch[self::ENC_ASCII], $numch[self::ENC_C40], $numch[self::ENC_TXT], $numch[self::ENC_X12], $numch[self::ENC_BASE256]))) { 536 if ($numch[self::ENC_TXT] < ceil(min($numch[self::ENC_ASCII], $numch[self::ENC_C40], $numch[self::ENC_X12], $numch[self::ENC_EDF], $numch[self::ENC_BASE256]))) { 539 if ($numch[self::ENC_X12] < ceil(min($numch[self::ENC_ASCII], $numch[self::ENC_C40], $numch[self::ENC_TXT], $numch[self::ENC_EDF], $numch[self::ENC_BASE256]))) { 551 $numch[self::ENC_ASCII] = ceil($numch[self::ENC_ASCII]); 554 $numch[self::ENC_ASCII] = ceil($numch[self::ENC_ASCII]);
|