Home
last modified time | relevance | path

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

/dokuwiki/lib/tpl/dokuwiki/images/
H A Dpagetools-build.php74 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,1,1).
84 substr($hex,2,1).
85 substr($hex,2,1);
89 …return ['r' => hexdec(substr($hex, 0, 2)), 'g' => hexdec(substr($hex, 2, 2)), 'b' => hexdec(substr…
/dokuwiki/vendor/paragonie/constant_time_encoding/src/
H A DHex.php49 $hex = '';
57 $hex .= \pack(
63 return $hex;
78 $hex = '';
87 $hex .= \pack(
93 return $hex;
/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.php166 * @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.php176 $hex = true;
181 $hex = false;
189 if ($hex) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php69 private $hex; variable in phpseclib3\\Math\\BigInteger
414 $this->hex = $this->toHex(true);
429 $temp = new static($this->hex, -16);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DEngine.php121 protected $hex; variable in phpseclib3\\Math\\BigInteger\\Engines\\Engine
286 $hex = $this->toBytes($twos_compliment);
287 $bits = Strings::bin2bits($hex);
343 $this->hex = $this->toHex(true);
360 $temp = new static($this->hex, -16);
H A DGMP.php122 $hex = $this->toHex($twos_compliment);
124 $bits = gmp_strval(gmp_init($hex, 16), 2);
/dokuwiki/
H A Dcomposer.lock264 "hex",
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG165 * Fix a problem with Delphi/Pascal regarding hex numbers/chars (BenBE)
237 - Added support for $-prefixed hex numbers and @-prefixed octal numbers
337 * Added support for line numbers, file handles and hex\octal numbers for QBasic (BenBE)
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php4797 $hex = substr(preg_replace_callback('#.#s', function ($matches) {
4804 … $output .= str_pad($hex, $this->log_long_width - $this->log_short_width, ' ') . $raw . "\r\n";