| /dokuwiki/lib/tpl/dokuwiki/images/ |
| H A D | pagetools-build.php | 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,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 D | Hex.php | 49 $hex = ''; 57 $hex .= \pack( 63 return $hex; 78 $hex = ''; 87 $hex .= \pack( 93 return $hex;
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/ |
| H A D | MBOXCreator.php | 31 … $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 D | adLDAPUtils.php | 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 D | Entities.php | 176 $hex = true; 181 $hex = false; 189 if ($hex) {
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/ |
| H A D | BigInteger.php | 69 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 D | Engine.php | 121 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 D | GMP.php | 122 $hex = $this->toHex($twos_compliment); 124 $bits = gmp_strval(gmp_init($hex, 16), 2);
|
| /dokuwiki/ |
| H A D | composer.lock | 264 "hex",
|
| /dokuwiki/vendor/geshi/geshi/ |
| H A D | CHANGELOG | 165 * 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 D | SSH2.php | 4797 $hex = substr(preg_replace_callback('#.#s', function ($matches) { 4804 … $output .= str_pad($hex, $this->log_long_width - $this->log_short_width, ' ') . $raw . "\r\n";
|