Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 25 of 153) sorted by relevance

1234567

/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A DHex.php44 $hex = '';
52 $hex .= pack(
58 return $hex;
71 $hex = '';
80 $hex .= pack(
86 return $hex;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
H A DImb.php320 $hex = [];
328 array_push($hex, '0');
330 array_push($hex, strtoupper(dechex(bcmod($number, '16'))));
335 $hex = array_reverse($hex);
336 return implode($hex);
343 * @param string $hex
346 private function hexToDec($hex) argument
350 $len = strlen($hex);
352 $dec = bcadd($dec, bcmul(hexdec($hex[
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Utils/
H A DUtfString.php57 public static function codeHex2utf($hex, $lo = true) argument
59 $num = hexdec($hex);
61 return '&#x' . $hex . ';';
/plugin/pgn4web/pgn4web/
H A Dcrc32.js27 var hex = "0123456789ABCDEF";
33 s = hex.charAt(r) + s;
/plugin/shorturl/
H A Dhelper.php90 $hex = md5($pageID);
91 $hexLen = strlen($hex);
95 $subHex = substr ($hex, $i * 8, 8);
/plugin/fedauth/Auth/OpenID/
H A DHMAC.php35 $hex = sha1($text);
38 $hexcode = substr($hex, $i, 2);
/plugin/openid/Auth/OpenID/
H A DHMAC.php35 $hex = sha1($text);
38 $hexcode = substr($hex, $i, 2);
/plugin/combo/ComboStrap/
H A DColorRgb.php217 const VALUE_TYPE_RGB_HEX = "rgb-hex";
473 * @param mixed $hex
477 function hex2rgb($hex = '#000000'): array argument
479 if ($hex[0] !== "#") {
480 throw new ExceptionBadArgument("The color value ($hex) does not start with a #, this is not valid CSS hexadecimal color value");
482 $digits = str_replace("#", "", $hex);
497 throw new ExceptionBadArgument("The digit color value ($hex) is not 3 or 6 in length, this is not a valid CSS hexadecimal color value");
501 throw new ExceptionBadArgument("The digit color value ($hex) is not a hexadecimal value, this is not a valid CSS hexadecimal color value");
875 $this->name = $qualifiedName; // hex is a also a name, the previous setHex overwrite the name
/plugin/vcard/
H A Dvcard.php39 $hex = array('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F');
57 $c = $escape.$hex["$h2"].$hex["$h1"];
/plugin/dropfiles/
H A D.stylelintrc5 "color-hex-length": "long"
/plugin/codemirror/dist/modes/
H A Dcobol.min.js1 …/,hex:/[0-9a-f]/i,sign:/[+-]/,exponent:/e/i,keyword_char:/[^\s\(\[\;\)\]]/,symbol:/[\w*+\-]/};func… property in AnonymousFunction62d85bf80200.n
/plugin/indexmenu2/cms/extensions/
H A Dnumberextensions.js1 …ion(i,I){return this.radix(0x0A,(isUndefined(i))?2:i,I);};Number.prototype.hex=function(i,I){retur… method in Number
/plugin/virtualkeyboard/vk/extensions/
H A Dnumberextensions.js19 Number.prototype.hex = function(n, c) { method in Number
/plugin/photogallery/phpThumb/docs/
H A Dphpthumb.readme.txt200 Set to hex color string of background. Opacity is
233 and 1, and <bgcolor> is the hex background color
234 bg = background hex color (default = FFFFFF)
235 bc = border hex color (default = 000000)
276 the hex color to colorize to (default=A28065).
313 where <c> is the target hex color to white balance
329 <c> is a semicolon-separated list of hex colors to
402 <c> is the hex color of the text;
409 <b> is the hex color of the background;
434 where <w> is the bevel width, <c1> is the hex color
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php73 private $hex; variable in phpseclib3\\Math\\BigInteger
418 $this->hex = $this->toHex(true);
433 $temp = new static($this->hex, -16);
/plugin/remotescript/lib/JsHttpRequest/
H A DJsHttpRequest.php342 $hex = $p[1];
343 $dec = hexdec($hex);
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DBarcode1D.php2079 $hex = array();
2085 array_push($hex, '0');
2087 array_push($hex, strtoupper(dechex(bcmod($number, '16'))));
2091 $hex = array_reverse($hex);
2092 return implode($hex);
2101 public function hex_to_dec($hex) { argument
2104 $len = strlen($hex);
2106 $dec = bcadd($dec, bcmul(hexdec($hex{$pos}), $bitval));
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D30.30.js1 …],[/\d*\.\d+([eE][\-+]?\d+)?/,"number.float"],[/0[xX][0-9a-fA-F]+/,"number.hex"],[/\d+/,"number"],…
H A D0.0.js1 …/,"number.float"],[/0[xX][0-9a-fA-F']*[0-9a-fA-F](@integersuffix)/,"number.hex"],[/0[0-7']*[0-7](@…
H A D46.46.js.map1hex',\n 'abs',\n 'all',\n 'any',\n 'apply',\n 'basestring',\n …
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A Dbootstrap.php31 function mb_encode_numericentity($string, $map, $encoding = null, $hex = false) { return p\Mbstring::mb_encode_numericentity($string, $map, $encoding, $hex); } argument
H A Dbootstrap80.php27 function mb_encode_numericentity(?string $string, array $map, ?string $encoding = null, ?bool $hex = false): string { return p\Mbstring::mb_encode_numericentity((string) $string, $map, $encoding, (bool) $hex); } argument
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DEngine.php126 protected $hex; variable in phpseclib3\\Math\\BigInteger\\Engines\\Engine
291 $hex = $this->toBytes($twos_compliment);
292 $bits = Strings::bin2bits($hex);
348 $this->hex = $this->toHex(true);
365 $temp = new static($this->hex, -16);
H A DGMP.php128 $hex = $this->toHex($twos_compliment);
130 $bits = gmp_strval(gmp_init($hex, 16), 2);
/plugin/diagramsnet/lib/js/diagramly/util/
H A DmxJsCanvas.js80 mxJsCanvas.prototype.hexToRgb = function(hex) { argument
83 hex = hex.replace(shorthandRegex, function(m, r, g, b) {
87 var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);

1234567