Home
last modified time | relevance | path

Searched refs:ord (Results 176 – 200 of 242) sorted by relevance

12345678910

/plugin/jukebox/id3/
H A Dgetid3.php249 $this->info['id3v2']['majorversion'] = ord($header{3});
250 $this->info['id3v2']['minorversion'] = ord($header{4});
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.ruleset.class.php108 while (ord($css{$pos}) > 127 && $pos < $len) { $pos ++; };
H A Doutput.pdflib.class.php445 fwrite($output, sprintf("0x%04X 0x%02X\n", $utf, ord($code)));
/plugin/sphinxsearch-was/
H A Dfunctions.php55 $current = ord($value{
/plugin/qstat/
H A Dsyntax.php445 $ascii = ord($str[$i+1]);
/plugin/sphinxsearch/
H A Dfunctions.php57 $current = ord($value{$i});
/plugin/markdownextra/lib/meltdown/js/lib/
H A Djs-markdown-extra.js1542 var ord = c.charCodeAt(0);
1544 if(ord < 128) {
1549 else if(r < 45) { chars[i] = '&#x' + ord.toString(16) + ';'; }
1550 else { chars[i] = '&#' + ord.toString(10) + ';'; }
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DOtl.php3104 $x = ord($dict[$dictptr]);
3123 $m = ord($dict[$dictptr]);
3127 $next = ord($dict[$dictptr + 1]);
3145 $d = ord($dict[$dictptr]);
3151 $offset = (ord($dict[$dictptr]) * 16777216) + (ord($dict[$dictptr + 1]) << 16) + (ord($dict[$dictptr + 2]) << 8) + ord($dict[$dictptr + 3]);
5856 return (ord($this->glyphIDtoUni[$gid * 3]) << 16) + (ord(
[all...]
/plugin/swiftmail/Swift/Message/
H A DEncoder.php243 $val = ord($string{$i});
/plugin/authucenter/lib/uc_client/model/
H A Duser.php57 $value = ord($str[$i]);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DCommon.php288 $sign = (bool) (ord($y[0]) & 0x80);
/plugin/authucenter/lib/uc_client/
H A Dclient.php186 $rndkey[$i] = ord($cryptkey[$i % $key_length]);
202 $result .= chr(ord($string[$i]) ^ ($box[($box[$a] + $box[$j]) % 256]));
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.flac.php189 $info['md5_data_source'] .= str_pad(dechex(ord($md5[$i])), 2, '00', STR_PAD_LEFT);
H A Dmodule.audio.ogg.php276 …$info['ogg']['flac']['header']['version_major'] = ord(substr($filedata, …
277 …$info['ogg']['flac']['header']['version_minor'] = ord(substr($filedata, …
H A Dwrite.id3v2.php1131 $framedata .= ord($source_data_array['methodsymbol']);
1145 $framedata .= ord($source_data_array['groupsymbol']);
1165 $framedata .= ord($source_data_array['groupsymbol']);
1966 $nextchar = ord($data[$i + 1]);
H A Dmodule.audio.mpc.php513 $thisbyte = ord(substr($data, ($packetLength - 1), 1));
/plugin/fedauth/Auth/OpenID/
H A DFileStore.php586 $filename .= sprintf("_%02X", ord($c));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPublicKey.php260 if (substr($db, 0, $temp) != str_repeat(chr(0), $temp) || ord($db[$temp]) != 1) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php152 $xbit = decbin(ord($x[0]));
/plugin/siteexport/renderer/
H A Dpdf.php387 $o = ord($c);
/plugin/openid/Auth/OpenID/
H A DFileStore.php637 $filename .= sprintf("_%02X", ord($c));
/plugin/adfs/phpsaml/extlib/xmlseclibs/
H A Dxmlseclibs.php221 $byte = ord($key[$i]) & 0xfe;
332 $decrypted_data = substr($decrypted_data, 0, $dataLen - ord($paddingLength));
426 if (ord($string) > 0x7f)
/plugin/sha3sum/
H A DSha3.php145 $temp[$rsiz - 1] = chr(ord($temp[$rsiz - 1]) | 0x80);
/plugin/captcha/
H A DEasySVG.php52 $thisValue = ord($str[$i]);
/plugin/columns/
H A Dsyntax.php452 $result .= '.' . chr(ord('A') + $columnId - 1);

12345678910