Home
last modified time | relevance | path

Searched refs:ord (Results 101 – 125 of 242) sorted by relevance

12345678910

/plugin/authgooglesheets/vendor/symfony/polyfill-intl-normalizer/
H A DNormalizer.php175 $L = \ord($lastUchr[2]) - 0x80;
176 $V = \ord($uchr[2]) - 0xA1;
182 $T = \ord($uchr[2]) - 0xA7;
/plugin/davcal/vendor/sabre/vobject/lib/Parser/
H A DMimeDir.php107 && ord($line[0]) === 0xef
108 && ord($line[1]) === 0xbb
109 && ord($line[2]) === 0xbf) {
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php1231 return sprintf('\\%X ', 1 === \strlen($char) ? \ord($char) : twig_ord($char));
1243 $ord = \ord($chr);
1249 …if (($ord <= 0x1f && "\t" != $chr && "\n" != $chr && "\r" != $chr) || ($ord >= 0x7f && $ord <= 0x9…
1271 if (isset($entityMap[$ord])) {
1272 return $entityMap[$ord];
1275 return sprintf('&#x%02X;', $ord);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DBCMath.php99 0x1000000 * ord($x[$i]) + ((ord($x[$i + 1]) << 16) | (ord(
101 ) << 8) | ord($x[$i + 3])),
H A DEngine.php152 if ($base == -256 && (ord($x[0]) & 0x80)) {
262 if (ord($bytes[0]) & 0x80) {
474 $pre_msb = decbin(ord($temp[0]));
476 $msb = decbin(ord($temp[0]));
519 $temp = ord($x[$i]) << $shift | $carry;
548 $temp = ord($bits[0]);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DTTFontFileAnalysis.php231 $this->panose[] = ord($panose[$p]);
432 $bFamilyType = ord($panose[0]);
434 $bSerifStyle = ord($panose[1]);
442 $bProportion = ord($panose[3]);
/plugin/webdav/vendor/sabre/vobject/lib/Parser/
H A DMimeDir.php149 && 0xef === ord($line[0])
150 && 0xbb === ord($line[1])
151 && 0xbf === ord($line[2])) {
/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/jukebox/id3/
H A Dmodule.tag.id3v1.php35 $ParsedID3v1['genreid'] = ord(substr($id3v1tag, 127, 1));
40 $ParsedID3v1['track'] = ord(substr($ParsedID3v1['comment'], 29, 1));
/plugin/webdav/vendor/sabre/http/lib/
H A Dfunctions.php390 return '%' . sprintf('%02x', ord($match[0]));
408 return '%' . sprintf('%02x', ord($match[0]));
/plugin/davcal/vendor/sabre/http/lib/
H A Dfunctions.php390 return '%' . sprintf('%02x', ord($match[0]));
408 return '%' . sprintf('%02x', ord($match[0]));
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.graphic.jpg.php116 $version_subparts[$i] = ord(substr($info['jpg']['exif']['GPS']['GPSVersion'], $i, 1));
154 …$info['jpg']['exif']['GPS']['GPSAltitudeRef'] = ord($info['jpg']['exif']['GPS']['GPSAltitudeRef'])…
H A Dmodule.tag.id3v1.php47 $ParsedID3v1['genreid'] = ord(substr($id3v1tag, 127, 1));
52 $ParsedID3v1['track_number'] = ord(substr($ParsedID3v1['comment'], 29, 1));
H A Dmodule.audio.amr.php55 $AMR_frame_header = ord(substr($buffer, 0, 1));
/plugin/authgoogle/google/service/
H A DGoogle_Utils.php58 $ordinalValue = ord($str{$ret});
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Util/
H A DXMLTest.php31 ord($char)
/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/rssticker/
H A DlastRSS.php240 $c = ord($str[$i]);
250 $b = ord($str[$i]);
/plugin/elwikiupgrade/
H A DVerboseTarLib.class.php478 $chks += ord($data_first[$i]);
481 $chks += ord($data_last[$j]);
499 $chks += ord($block[$i]);
502 $chks += ord($block[$i]);
/plugin/diagramsnet/lib/math/jax/input/MathML/entities/
H A Do.js19 …ominus:"\u2296",opar:"\u29B7",operp:"\u29B9",oplus:"\u2295",orarr:"\u21BB",ord:"\u2A5D",order:"\u2…
/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]);
/plugin/authradius/
H A Dmschap.php46 $a = ord($str{$i}) << 8;
/plugin/distributedacl/
H A Daction.php92 $user .= "%".dechex(ord( $u[$j] ));
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/
H A DReader.php221 $middle = (0xF0 & \ord($bytes[3])) >> 4;
223 $middle = 0x0F & \ord($bytes[0]);
/plugin/openid/Auth/OpenID/
H A DCryptUtil.php97 $n = ord(Auth_OpenID_CryptUtil::getBytes(1));

12345678910