Home
last modified time | relevance | path

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

/dokuwiki/lib/tpl/dokuwiki/images/
H A Dpagetools-build.php72 * Convert a hex color code to an rgb array
74 function hex2rgb($hex) { argument
76 $hex = str_replace('#', '', $hex);
79 if(strlen($hex) == 3){
80 $hex = substr($hex,0,1).
81 substr($hex,0,1).
82 substr($hex,1,1).
83 substr($hex,
[all...]
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DMBOXCreator.php31 $hex = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F');
47 $c = $escape.$hex["$h2"].$hex["$h1"];
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPUtils.php164 * Converts a little-endian hex number to one that hexdec() can convert
166 * @param string $hex A hex code
169 public function littleEndian($hex) argument
172 for ($x = strlen($hex) - 2; $x >= 0; $x = $x - 2) {
173 $result .= substr($hex, $x, 2);
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Decode/HTML/
H A DEntities.php177 $hex = true;
182 $hex = false;
190 if ($hex) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php69 private $hex;
222 * Converts a BigInteger to a hex string (eg. base-16).
414 $this->hex = $this->toHex(true);
415 $vars = ['hex'];
429 $temp = new static($this->hex, -16);
442 * @return array{hex: string, precision?: int]
447 $result = ['hex' => $this->toHex(true)];
229 var $hex; global() variable in phpseclib\\Math\\BigInteger
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php4712 $hex = substr(preg_replace_callback('#.#s', function ($matches) {
4719 $output .= str_pad($hex, $this->log_long_width - $this->log_short_width, ' ') . $raw . "\r\n";
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG163 * Fix a problem with Delphi/Pascal regarding hex numbers/chars (BenBE)
235 - Added support for $-prefixed hex numbers and @-prefixed octal numbers
335 * Added support for line numbers, file handles and hex\octal numbers for QBasic (BenBE)