Home
last modified time | relevance | path

Searched refs:cp (Results 1 – 4 of 4) sorted by last modified time

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDES.php1240 $cp = $pc2mapc1[ $c >> 24 ] | $pc2mapc2[($c >> 16) & 0xFF] |
1246 $val1 = ( $cp & intval(0xFF000000)) | (($cp << 8) & 0x00FF0000) |
1248 $val2 = (($cp << 8) & intval(0xFF000000)) | (($cp << 16) & 0x00FF0000) |
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php540 function _decode_digit($cp) argument
542 $cp = ord($cp);
543 return ($cp - 48 < 10) ? $cp - 22 : (($cp - 65 < 26) ? $cp - 65 : (($cp - 97 < 26) ? $cp - 97 : $this->_base));
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php806 while (false !== ($cp = readdir($dh))) {
807 if ($cp == '.' || $cp == '..' || !str_ends_with(strtolower($cp), '.php')) continue;
809 $plugin = plugin_load($type, $this->base . '_' . substr($cp, 0, -4));
/dokuwiki/inc/Utf8/
H A DConversion.php24 foreach (Unicode::fromUtf8($str) as $cp) {
25 if ($cp < 0x80 && !$all) {
26 $ret .= chr($cp);
27 } elseif ($cp < 0x100) {
28 $ret .= "&#$cp;";
30 $ret .= '&#x' . dechex($cp) . ';';
113 $cp = hexdec($ent[3]);
116 $cp = (int) $ent[3];
119 return Unicode::toUtf8([$cp]);
139 foreach ($uni as $cp) {
[all...]