Home
last modified time | relevance | path

Searched refs:abs (Results 26 – 50 of 420) sorted by relevance

12345678910>>...17

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DMeter.php250 $w = $this->mpdf->FontSize / (10 / Mpdf::SCALE) * abs($info['w']) / Mpdf::SCALE;
251 $h = $this->mpdf->FontSize / (10 / Mpdf::SCALE) * abs($info['h']) / Mpdf::SCALE;
256 $w = $info['h'] ? abs($h * $info['w'] / $info['h']) : INF;
259 $h = $info['w'] ? abs($w * $info['h'] / $info['w']) : INF;
270 $h = abs($w * $info['h'] / $info['w']);
275 $w = abs($h * $info['w'] / $info['h']);
H A DInput.php241 $w = abs($info['w']) / (20 * Mpdf::SCALE);
242 $h = abs($info['h']) / (20 * Mpdf::SCALE);
246 $w = abs($info['w']) / Mpdf::SCALE;
247 $h = abs($info['h']) / Mpdf::SCALE;
/plugin/rrdgraph/
H A Dscript.js88 if ((Math.abs(downX - upX) > 100) && (Math.abs(downY - upY) < 50))
/plugin/combo/ComboStrap/
H A DColorHsl.php87 $chroma = (1 - abs(2 * $lightness - 1)) * $saturation;
88 $x = $chroma * (1 - abs(fmod(($hue / 60), 2) - 1));
/plugin/math2/phpmathpublisher/
H A Dmathpublisher.php417 $tmp_largeur = abs($tmp_dim[2] - $tmp_dim[0])+2;
447 $nx = abs($ex - $sx);
448 $ny = abs($ey - $sy);
460 $tmp_largeur = abs($tmp_dim[2] - $tmp_dim[0]);
491 $nx = abs($ex - $sx);
492 $ny = abs($ey - $sy);
543 $nx = abs($ex - $sx);
544 $ny = abs($ey - $sy);
572 while ((abs($tmp_dim[3] - $tmp_dim[5])<$haut));
605 $nx = abs($ex - $sx);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dindex.rst7 abs
/plugin/struct/types/
H A DDecimal.php57 $exp = $pfkey * $exp / abs($exp);
134 $out = number_format(abs((float) $tmp[0]), 0, $dec_point, $thousands_sep);
/plugin/imagecarousel/vendor/swipebox/js/
H A Djquery.swipebox.js320 if ( Math.abs( vDistance ) >= vSwipMinDistance || vSwipe ) {
321 var opacity = 0.75 - Math.abs(vDistance) / slider.height();
334 if ( ! hSwipe && ! vSwipe && Math.abs( hDistance ) >= hSwipMinDistance ) {
397 …if ( Math.abs( vDistance ) >= 2 * vSwipMinDistance && Math.abs( vDistance ) > Math.abs( vDistanceL…
H A Djquery.swipebox.min.js2abs(d)>=m||i)){var p=.75-Math.abs(d)/r.height();r.css({top:d+"px"}),r.css({opacity:p}),i=!0}e=b,b=…
/plugin/freechat/phpfreechat/lib/utf8/
H A Dutf8_char2byte_pos.php16 $p = abs($pos); // number of characters wanted
/plugin/findologicxmlexport/vendor/hoa/math/Sampler/
H A DRandom.php100 return $lower + lcg_value() * abs($upper - $lower);
/plugin/indexmenu2/cms/extensions/
H A Dnumberextensions.js1 …(!i)return this.valueOf();if(!l)l='0';return this.toString(i).padLeft(Math.abs(I),l);};Number.prot…
/plugin/virtualkeyboard/vk/extensions/
H A Dnumberextensions.js4 return this.toString(r).padLeft(Math.abs(n), c);
/plugin/authucenter/lib/uc_client/control/
H A Dmail.php33 $mail['level'] = abs(intval($this->input('level')));
/plugin/photogallery/lightGallery/js/
H A Djquery.mousewheel.min.js8 …ata(this,"mousewheel-page-height");j*=r,m*=r,l*=r}if(n=Math.max(Math.abs(m),Math.abs(l)),(!f||f>n)…
/plugin/gallery/swipebox/js/
H A Djquery.swipebox.js
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/
H A DDateTimeComparator.php45 $delta = new \DateInterval(sprintf('PT%sS', abs($delta)));
H A DNumericComparator.php53 abs($actual - $expected) > $delta) {
/plugin/geotag/syntax/
H A Dgeotag.php230 $dms = $this->convertDDtoDMS(abs($decimaldegrees));
265 $dms = $this->convertDDtoDMS(abs($decimaldegrees));
/plugin/struct/meta/
H A DConfigParser.php82 $this->config['min'] = abs((int)$val);
86 $this->config['limit'] = abs((int)$val);
/plugin/dokukiwix/
H A Dcommon.php47 function dokukiwix_wl($id='',$more='',$abs=false,$sep='&amp;'){ argument
/plugin/securelogin/
H A Drsalib.js403 var x = this.abs(), y = a.abs();
418 var x = this.abs();
438 var pm = m.abs();
441 var pt = this.abs();
503 this.abs().divRemTo(a, null, r);
580 x.abs().dlShiftTo(this.m.t, r);
692 BigInteger.prototype.abs = bnAbs; method in BigInteger
/plugin/codemirror/dist/modes/
H A Dwast.min.js.map1abs|add|ceil|copysign|div|eq|floor|[gl][et]|max|min|mul|nearest|neg?|sqrt|sub|trunc)|i(32|64)\\.(a…
/plugin/sketchcanvas/phplib/
H A Dimage.php270 imageellipse($im, ($p1[0] + $p2[0]) / 2, ($p1[1] + $p2[1]) / 2, abs($p2[0] - $p1[0]), abs($p2[1] - $p1[1]), $c);
272 imagefilledellipse($im, ($p1[0] + $p2[0]) / 2, ($p1[1] + $p2[1]) / 2, abs($p2[0] - $p1[0]), abs($p2[1] - $p1[1]), $c);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DIsIdentical.php66 $success = abs($this->value - $other) < self::EPSILON;

12345678910>>...17