Home
last modified time | relevance | path

Searched refs:ceil (Results 1 – 25 of 282) sorted by relevance

12345678910>>...12

/plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/src/WebService/Http/
H A DCurlRequest.php74 $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 Dround.test7 {{ 2.1|round(0, 'ceil') }}
10 {{ 21.3|round(-1, 'ceil')}}
/plugin/swiftmail/Swift/Plugin/
H A DThrottler.php56 $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 Doutput.png.class.php178 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 Dmedia.layout.inc.php105 return '0 0 '.ceil(mm2pt($this->size['width'])).' '.ceil(mm2pt($this->size['height']));
H A Dstrategy.page.break.simple.php8 $num_pages = ceil($box->get_height() / mm2pt($media->real_height()));
/plugin/diagramsnet/lib/js/
H A Dexport.js591 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 DMathExpression.php363 $height = ceil($height2 / 2 + $height1);
368 imagecopy($result, $img1, 0, ceil($height2 / 2), 0, 0, $width1, $height1);
371 $height = ceil($height1 / 2 + $height2);
398 $height = ceil($height2 / 2 + $height1);
406 $height = ceil($height1 / 2 + $height2);
537 $width = max($widthSup, $widthExp) + ceil($size / 8);
565 $width = max($widthInf, $widthExp) + ceil($size / 8);
638 $l + ceil($widthColumn[$col] - $width[$i]) / 2,
727 $l + ceil($widthColumn[$col] - $width[$i]) / 2,
862 $width = max($widthSup, $widthExp) + ceil($size / 8);
[all …]
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
H A DEditorRuler.java475 .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 Dmathpublisher.php638 $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 DBinaryField.php62 $t = ceil($m / 8);
68 $pad = ceil($bitLen / 8);
/plugin/nspages/printers/
H A DprinterNice.php138 $nbItemPerCol[] = ceil(($idx + 1) * $collength) - ceil($idx * $collength);
/plugin/combo/vendor/hidehalo/nanoid-php/src/
H A DCore.php14 $step = (int) ceil(1.6 * $mask * $size / $len);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/
H A DScopeIndentSniff.php388 … $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 DUidProcessor.php57 return substr(bin2hex(random_bytes((int) ceil($length / 2))), 0, $length);
/plugin/logindelay/helper/
H A Dlog.php68 return (int) $remainingDelay >= 0 ? ceil($remainingDelay) : 0;
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dwrite.id3v2.php685 …$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 Dpagecache.js85 batchSize = Math.ceil(idsA.length / 4);
87 for (var x=0; x<Math.ceil(idsA.length / batchSize); x++) {
/plugin/statistics/inc/
H A DStatisticsGraph.class.php137 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 DVerboseTarLib.class.php82 $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 Dround.rst25 * ``ceil`` always rounds up;
/plugin/svgpureinsert/
H A Dsyntax.php101 $data['height'] = ceil($data['width'] * $h / $w);
/plugin/pgn4web/pgn4web/
H A Dpuzzler.php109 $borderSize = ceil($squareSize / 50);
187 $frameBorderWidth = ceil($squareSize / 50);
/plugin/upgrade/vendor/splitbrain/php-archive/src/
H A DTar.php121 $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 DDatamatrix.php527 …if ($numch[self::ENC_ASCII] <= ceil(min($numch[self::ENC_C40], $numch[self::ENC_TXT], $numch[self:…
530 …if ($numch[self::ENC_BASE256] < ceil(min($numch[self::ENC_ASCII], $numch[self::ENC_C40], $numch[se…
533 …if ($numch[self::ENC_EDF] < ceil(min($numch[self::ENC_ASCII], $numch[self::ENC_C40], $numch[self::…
536 …if ($numch[self::ENC_TXT] < ceil(min($numch[self::ENC_ASCII], $numch[self::ENC_C40], $numch[self::…
539 …if ($numch[self::ENC_X12] < ceil(min($numch[self::ENC_ASCII], $numch[self::ENC_C40], $numch[self::…
551 $numch[self::ENC_ASCII] = ceil($numch[self::ENC_ASCII]);
554 $numch[self::ENC_ASCII] = ceil($numch[self::ENC_ASCII]);

12345678910>>...12