Home
last modified time | relevance | path

Searched refs:ord (Results 176 – 200 of 242) sorted by last modified time

12345678910

/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DDatamatrix.php545 $chr = ord($data[$pos + $charscount]);
620 $tmpchr = ord($data{$k});
707 … ($data_length - 1)) AND ($this->isCharMode(ord($data[$pos]), self::ENC_ASCII_NUM) AND $this->isCh…
722 $chr = ord($data[$pos]);
750 $chr = ord($data[$epos]);
868 $chr = ord($data[$epos]);
930 $chr = ord($data[$pos]);
H A DPDF417.php872 $chval = ord($code{$i});
882 …if (((($i + 1) == $codelen) OR ((($i + 1) < $codelen) AND (array_search(ord($code{($i + 1)}), $thi…
928 $t = bcmul(''.ord($code[0]), '1099511627776');
929 $t = bcadd($t, bcmul(''.ord($code[1]), '4294967296'));
930 $t = bcadd($t, bcmul(''.ord($code[2]), '16777216'));
931 $t = bcadd($t, bcmul(''.ord($code[3]), '65536'));
932 $t = bcadd($t, bcmul(''.ord($code[4]), '256'));
933 $t = bcadd($t, ''.ord($code[5]));
946 $cw[] = ord($code{$i});
972 $cw[] = ord($code);
H A DQRcode.php1128 $b22 = ord($frameY[$x]) & ord($frameY[$x-1]) & ord($frameYM[$x]) & ord($frameYM[$x-1]);
1129 $w22 = ord($frameY[$x]) | ord($frameY[$x-1]) | ord($frameYM[$x]) | ord($frameYM[$x-1]);
1139 if ((ord($frameY[$x]) ^ ord($frameY[$x-1])) & 1) {
1224 return ((ord($str[$pos]) >= ord('0'))&&(ord($str[$pos]) <= ord('9')));
1257 $word = (ord($c) << 8) | ord($d);
1450 if ((ord($this->dataStr[$p]) >= ord('a')) AND (ord($this->dataStr[$p]) <= ord('z'))) {
1502 $val += (ord($inputitem['data'][$i*3+2]) - ord('0'));
1506 $val = ord($inputitem['data'][$words*3]) - ord('0');
1510 $val += (ord($inputitem['data'][$words*3+1]) - ord('0'));
1708 if ((ord($data[$i]) < ord('0')) OR (ord($data[$i]) > ord('9'))){
[all …]
/plugin/shortcutkey/
H A Daction.php30 $JSINFO['key_'.$_a] = (ord($this->getConf('key_'.$_a)));
33 $JSINFO['key_random']=ord($this->getConf('key_random'));
34 $JSINFO['key_nsrandom']=ord($this->getConf('key_nsrandom'));
/plugin/icalevents/vendor/squizlabs/php_codesniffer/
H A DCodeSniffer.php2028 $ascii = ord($string{$i});
/plugin/authgoogle/google/service/
H A DGoogle_Utils.php58 $ordinalValue = ord($str{$ret});
/plugin/authg2fa/
H A DGoogleAuthenticator.php55 $offset = ord(substr($hm, -1)) & 0x0F;
146 … $binaryString .= ( ($y = chr(base_convert($eightBits[$z], 2, 10))) || ord($y) == 48 ) ? $y:"";
168 $binaryString .= str_pad(base_convert(ord($secret[$i]), 10, 2), 8, '0', STR_PAD_LEFT);
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
H A DText.php256 $ord = ord($val[$ii]);
258 if ($ord >= 32 && $ord <= 126) {
/plugin/icalevents/vendor/sabre/vobject/lib/Parser/
H A DMimeDir.php155 && ord($line[0]) === 0xef
156 && ord($line[1]) === 0xbb
157 && ord($line[2]) === 0xbf) {
/plugin/publist/bib2tpl/lib/
H A DBibTex.php811 $ord = ord($letter);
812 if ($ord == 123) { //Open brace
815 if ($ord == 125) { //Closing brace
818 … if (($ord>=65) && ($ord<=90) && (0==$openbrace)) { //The first character is uppercase
821 … } elseif ( ($ord>=97) && ($ord<=122) && (0==$openbrace) ) { //The first character is lowercase
/plugin/judge/helper/
H A Dnumbers.php28 $code = ord(substr($string, 0, 1));
40 $code2 = ord(substr($string, $offset, 1)) - 128;
/plugin/scrape/
H A DHTMLPurifier.standalone.php
/plugin/jukebox/id3/
H A Dgetid3.lib.php708 $charval = ord($string{$i});
753 if ((ord($string{$offset}) | 0x07) == 0xF7) {
773 $charval = ord($string{$offset});
796 if ((ord($string{$offset}) | 0x07) == 0xF7) {
816 $charval = ord($string{$offset});
839 if ((ord($string{$offset}) | 0x07) == 0xF7) {
859 $charval = ord($string{$offset});
1043 $char_ord_val = ord($string{$i});
1051 $charval += (ord($string{++$i}) & 0x3F);
1055 $charval += (ord($string{++$i}) & 0x3F);
[all …]
H A Dgetid3.php249 $this->info['id3v2']['majorversion'] = ord($header{3});
250 $this->info['id3v2']['minorversion'] = ord($header{4});
H A Dmodule.tag.id3v1.php35 $ParsedID3v1['genreid'] = ord(substr($id3v1tag, 127, 1));
40 $ParsedID3v1['track'] = ord(substr($ParsedID3v1['comment'], 29, 1));
H A Dmodule.audio.mp3.php669 $thisfile_mpeg_audio['toc'][$i] = ord($LAMEtocData{$i});
1703 $MPEGrawHeader['version'] = (ord($Header4Bytes{1}) & 0x18) >> 3; // BB
1704 $MPEGrawHeader['layer'] = (ord($Header4Bytes{1}) & 0x06) >> 1; // CC
1705 $MPEGrawHeader['protection'] = (ord($Header4Bytes{1}) & 0x01); // D
1706 $MPEGrawHeader['bitrate'] = (ord($Header4Bytes{2}) & 0xF0) >> 4; // EEEE
1707 $MPEGrawHeader['sample_rate'] = (ord($Header4Bytes{2}) & 0x0C) >> 2; // FF
1708 $MPEGrawHeader['padding'] = (ord($Header4Bytes{2}) & 0x02) >> 1; // G
1710 $MPEGrawHeader['channelmode'] = (ord($Header4Bytes{3}) & 0xC0) >> 6; // II
1711 $MPEGrawHeader['modeextension'] = (ord($Header4Bytes{3}) & 0x30) >> 4; // JJ
1712 $MPEGrawHeader['copyright'] = (ord($Header4Bytes{3}) & 0x08) >> 3; // K
[all …]
H A Dmodule.tag.id3v2.php75 $id3_flags = ord($header{5});
991 if (ord($frame_idstring) === 0) {
1116 if (ord($frame_idstring) === 0) {
1233 if (ord($frame_mimetype) === 0) {
1293 if (ord($frame_mimetype) === 0) {
1303 if (ord($frame_filename) === 0) {
1419 if (ord($frame_ownerid) === 0) {
1453 if (ord($frame_url) === 0) {
1630 if (ord($frame_ownerid) === 0) {
1653 if (ord($frame_ownerid) === 0) {
[all …]
/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/markdownextra/
H A Dmarkdown.php1525 $ord = ord($char);
1527 if ($ord < 128) {
1532 else if ($r < 45) $chars[$key] = '&#x'.dechex($ord).';';
1533 else $chars[$key] = '&#'.$ord.';';
1612 return $this->hashPart("&#". ord($token{1}). ";");
/plugin/freechat/phpfreechat/lib/utf8/
H A Dutf8_char2byte_pos.php27 $c = (int)ord($str{$i});
37 while ((ord($str{$i}) & 0x80) && !(ord($str{$i}) & 0x40)) { $i++; }
H A Dutf8_strlen.php16 $c = ord($str{$i});
/plugin/freechat/phpfreechat/lib/json/
H A DJSON.php156 $bytes = (ord($utf16{0}) << 8) | ord($utf16{1});
209 return chr(0x07 & (ord($utf8{0}) >> 2))
210 . chr((0xC0 & (ord($utf8{0}) << 6))
211 | (0x3F & ord($utf8{1})));
216 return chr((0xF0 & (ord($utf8{0}) << 4))
217 | (0x0F & (ord($utf8{1}) >> 2)))
218 . chr((0xC0 & (ord($utf8{1}) << 6))
219 | (0x7F & ord($utf8{2})));
264 $ord_var_c = ord($var{$c});
308 ord($var{$c + 1}),
[all …]
/plugin/pgn4web/pgn4web/
H A Dpgn-encoder.php303 if (ord(substr($ov, $i, 1)) > 255) { $bits = $bits . $LetterCodes[42]; }
304 else { $bits = $bits . $LetterCodes[ord(substr($ov, $i, 1))]; }
/plugin/authucenter/lib/api/
H A Duc.php313 $rndkey[$i] = ord($cryptkey[$i % $key_length]);
329 $result .= chr(ord($string[$i]) ^ ($box[($box[$a] + $box[$j]) % 256]));
/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]));

12345678910