Home
last modified time | relevance | path

Searched refs:str_pad (Results 1 – 25 of 126) sorted by relevance

123456

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
DInteger.php137 $a = str_pad($a, $length, "\0", STR_PAD_LEFT);
138 $b = str_pad($b, $length, "\0", STR_PAD_LEFT);
180 str_pad($q, $length, "\0", STR_PAD_LEFT) ^
181 str_pad($s, $length, "\0", STR_PAD_LEFT);
184 $r = str_pad($r, $length, "\0", STR_PAD_LEFT) ^
185 str_pad($s, $length, "\0", STR_PAD_LEFT);
206 $x = str_pad($x, $length, '0');
207 $y = str_pad($y, $length, '0');
221 $result ^= str_pad($temp, $size, "\0", STR_PAD_LEFT);
242 $x = str_pad($x, $length, "\0", STR_PAD_LEFT);
[all …]
/plugin/jukebox/id3/
Dmodule.tag.id3v1.php323 $ID3v1Tag .= str_pad(trim(substr($title, 0, 30)), 30, "\x00", STR_PAD_RIGHT);
324 $ID3v1Tag .= str_pad(trim(substr($artist, 0, 30)), 30, "\x00", STR_PAD_RIGHT);
325 $ID3v1Tag .= str_pad(trim(substr($album, 0, 30)), 30, "\x00", STR_PAD_RIGHT);
326 $ID3v1Tag .= str_pad(trim(substr($year, 0, 4)), 4, "\x00", STR_PAD_LEFT);
328 $ID3v1Tag .= str_pad(trim(substr($comment, 0, 28)), 28, "\x00", STR_PAD_RIGHT);
335 $ID3v1Tag .= str_pad(trim(substr($comment, 0, 30)), 30, "\x00", STR_PAD_RIGHT);
Dgetid3.lib.php21 $returnstring .= str_pad(dechex(ord($string{$i})), 2, '0', STR_PAD_LEFT);
102 …$binarypointnumber = str_pad(substr($binarypointnumber, 0, $maxbits + 2), $maxbits + 2, '0', STR_P…
147 $exponentbitstring = str_pad(decbin($biasedexponent), $exponentbits, '0', STR_PAD_LEFT);
148 …$fractionbitstring = str_pad(substr($normalizedbinary['normalized'], 2), $fractionbits, '0', STR_P…
278 $binvalue .= str_pad(decbin(ord($byteword{$i})), 8, '0', STR_PAD_LEFT);
301 return str_pad($intstring, $minbytes, "\x00", STR_PAD_LEFT);
313 …$binstring = (($i == count($bytes) - 1) ? decbin($bytes[$i]) : str_pad(decbin($bytes[$i]), 8, '0',…
357 return str_pad($intstring, $minbytes, "\x00", STR_PAD_RIGHT);
420 return $sign.intval($contentminutes).':'.str_pad($contentseconds, 2, 0, STR_PAD_LEFT);
1140 $gainstring = str_pad(decbin($namecode), 3, '0', STR_PAD_LEFT);
[all …]
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DBitStringType.php91 $bitstring = str_pad($bitstring, $minLength, '0');
110 $pieces[0] = str_pad($pieces[0], 8, '0', STR_PAD_LEFT);
112 $pieces[$num - 1] = str_pad($pieces[$num - 1], 8, '0', STR_PAD_RIGHT);
117 $bitstring = str_pad($bitstring, $minLength, '0');
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
Dmodule.tag.id3v1.php398 $ID3v1Tag .= str_pad(trim(substr($title, 0, 30)), 30, "\x00", STR_PAD_RIGHT);
399 $ID3v1Tag .= str_pad(trim(substr($artist, 0, 30)), 30, "\x00", STR_PAD_RIGHT);
400 $ID3v1Tag .= str_pad(trim(substr($album, 0, 30)), 30, "\x00", STR_PAD_RIGHT);
401 $ID3v1Tag .= str_pad(trim(substr($year, 0, 4)), 4, "\x00", STR_PAD_LEFT);
403 $ID3v1Tag .= str_pad(trim(substr($comment, 0, 28)), 28, "\x00", STR_PAD_RIGHT);
410 $ID3v1Tag .= str_pad(trim(substr($comment, 0, 30)), 30, "\x00", STR_PAD_RIGHT);
Dmodule.audio-video.swf.php72 …$FrameSizeDataString = str_pad(decbin(ord(substr($SWFfileData, 8, 1)) & 0x07), 3, '0', STR_PAD_L…
74 …$FrameSizeDataString .= str_pad(decbin(ord(substr($SWFfileData, 8 + $i, 1))), 8, '0', STR_PAD_LEFT…
129 …$info['swf']['bgcolor'] = strtoupper(str_pad(dechex(getid3_lib::BigEndian2Int($TagData['data'])), …
Dmodule.audio-video.asf.php1659 $GUIDstring = str_pad(dechex(ord($Bytestring[3])), 2, '0', STR_PAD_LEFT);
1660 $GUIDstring .= str_pad(dechex(ord($Bytestring[2])), 2, '0', STR_PAD_LEFT);
1661 $GUIDstring .= str_pad(dechex(ord($Bytestring[1])), 2, '0', STR_PAD_LEFT);
1662 $GUIDstring .= str_pad(dechex(ord($Bytestring[0])), 2, '0', STR_PAD_LEFT);
1664 $GUIDstring .= str_pad(dechex(ord($Bytestring[5])), 2, '0', STR_PAD_LEFT);
1665 $GUIDstring .= str_pad(dechex(ord($Bytestring[4])), 2, '0', STR_PAD_LEFT);
1667 $GUIDstring .= str_pad(dechex(ord($Bytestring[7])), 2, '0', STR_PAD_LEFT);
1668 $GUIDstring .= str_pad(dechex(ord($Bytestring[6])), 2, '0', STR_PAD_LEFT);
1670 $GUIDstring .= str_pad(dechex(ord($Bytestring[8])), 2, '0', STR_PAD_LEFT);
1671 $GUIDstring .= str_pad(dechex(ord($Bytestring[9])), 2, '0', STR_PAD_LEFT);
[all …]
Dgetid3.lib.php29 $returnstring .= str_pad(dechex(ord($string[$i])), 2, '0', STR_PAD_LEFT);
170 …$binarypointnumber = str_pad(substr($binarypointnumber, 0, $maxbits + 2), $maxbits + 2, '0', STR_P…
227 $exponentbitstring = str_pad(decbin($biasedexponent), $exponentbits, '0', STR_PAD_LEFT);
228 …$fractionbitstring = str_pad(substr($normalizedbinary['normalized'], 2), $fractionbits, '0', STR_P…
390 $binvalue .= str_pad(decbin(ord($byteword[$i])), 8, '0', STR_PAD_LEFT);
421 return str_pad($intstring, $minbytes, "\x00", STR_PAD_LEFT);
437 …$binstring = (($i == count($bytes) - 1) ? decbin($bytes[$i]) : str_pad(decbin($bytes[$i]), 8, '0',…
496 return str_pad($intstring, $minbytes, "\x00", STR_PAD_RIGHT);
610 …return $sign.($H ? $H.':' : '').($H ? str_pad($M, 2, '0', STR_PAD_LEFT) : intval($M)).':'.str_pad(…
1455 $gainstring = str_pad(decbin($namecode), 3, '0', STR_PAD_LEFT);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
DBinaryField.php81 $c = str_pad($c, $pad, "\0", STR_PAD_LEFT);
94 $t2 = str_pad($u[$k], $length, "\0", STR_PAD_LEFT);
176 $str = str_pad($str, $pad, "\0", STR_PAD_LEFT);
178 $str = str_pad($str, $size, "\0", STR_PAD_LEFT);
/plugin/photogallery/phpThumb/demo/
Dindex.php23 …echo '<code>'.str_replace(' ', '&nbsp;', str_pad(filesize($file), 10, ' ', STR_PAD_LEFT)).'</code>…
26 …echo '<code>'.str_replace(' ', '&nbsp;', str_pad(filesize($file), 10, ' ', STR_PAD_LEFT)).'</code>…
/plugin/authg2fa/
DGoogleAuthenticator.php66 return str_pad($value % $modulo, $this->_codeLength, '0', STR_PAD_LEFT);
142 … $x .= str_pad(base_convert(@$base32charsFlipped[@$secret[$i + $j]], 10, 2), 5, '0', STR_PAD_LEFT);
168 $binaryString .= str_pad(base_convert(ord($secret[$i]), 10, 2), 8, '0', STR_PAD_LEFT);
174 $base32 .= $base32chars[base_convert(str_pad($fiveBitBinaryArray[$i], 5, '0'), 2, 10)];
/plugin/authgoogle2fa/
DGoogleAuthenticator.php66 return str_pad($value % $modulo, $this->_codeLength, '0', STR_PAD_LEFT);
142 … $x .= str_pad(base_convert(@$base32charsFlipped[@$secret[$i + $j]], 10, 2), 5, '0', STR_PAD_LEFT);
168 $binaryString .= str_pad(base_convert(ord($secret[$i]), 10, 2), 8, '0', STR_PAD_LEFT);
174 $base32 .= $base32chars[base_convert(str_pad($fiveBitBinaryArray[$i], 5, '0'), 2, 10)];
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
Ddemo.mp3header.php18 $returnstring .= str_pad(dechex(ord(substr($string, $i, 1))), 2, '0', STR_PAD_LEFT).' ';
94 $returnstring .= '&#'.str_pad(ord($variable[$i]), 3, '0', STR_PAD_LEFT).';';
260 …$binarypointnumber = str_pad(substr($binarypointnumber, 0, $maxbits + 2), $maxbits + 2, '0', STR_P…
307 $exponentbitstring = str_pad(decbin($biasedexponent), $exponentbits, '0', STR_PAD_LEFT);
308 …$fractionbitstring = str_pad(substr($normalizedbinary['normalized'], 2), $fractionbits, '0', STR_P…
438 $binvalue .= str_pad(decbin(ord($byteword[$i])), 8, '0', STR_PAD_LEFT);
462 return str_pad($intstring, $minbytes, chr(0), STR_PAD_LEFT);
475 …$binstring = (($i == count($bytes) - 1) ? decbin($bytes[$i]) : str_pad(decbin($bytes[$i]), 8, '0',…
515 return str_pad($intstring, $minbytes, chr(0), STR_PAD_RIGHT);
747 return number_format($contentminutes).':'.str_pad($contentseconds, 2, 0, STR_PAD_LEFT);
[all …]
/plugin/wordimport/docx/
DHeading.php36 …return str_pad('', 7 - $this->level, '=') . ' ' . $this->text . ' ' . str_pad('', 7 - $this->level…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/
DSSH2.php76 str_pad($r->toBytes(), 20, "\0", STR_PAD_LEFT) .
77 str_pad($s->toBytes(), 20, "\0", STR_PAD_LEFT)
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DCerDerTrait.php21 use function str_pad; alias
163 str_pad($a['original'], $padding, "\x00"),
164 str_pad($b['original'], $padding, "\x00")
/plugin/character/
Dsyntax.php98 $paddedHex = str_pad($hex, 4, '0', STR_PAD_LEFT);
120 $p = strtoupper(str_pad(dechex($codepoint), 2, '0', STR_PAD_LEFT));
163 … .join(' ', array_map(function ($i) { return str_pad(decbin($i), 8, '0', STR_PAD_LEFT); }, $bytes))
/plugin/icalevents/vendor/sabre/vobject/bin/
Dmergeduplicates.php69 echo str_pad($name, 23, " ", STR_PAD_RIGHT), str_pad($value, 6, " ", STR_PAD_LEFT), "\n";
/plugin/struct/meta/
H A DNestedValue.php187 $return .= str_pad('', $this->getDepth() * 4, ' ');
195 $return .= str_pad('', $this->getDepth() * 4, ' ');
/plugin/letsencrypt/classes/
DHTMLLogger.php13 echo str_pad('', 50000, ' ');
/plugin/clipboardutils/
Dsyntax.php88 $pad =str_pad('',$level*2,' ');
92 $sep =str_pad('',80,'-');
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
DMSBLOB.php211 $e = str_pad(strrev($e->toBytes()), 4, "\0");
236 $e = str_pad(strrev($e->toBytes()), 4, "\0");
/plugin/netlogo/inc/
Dsupport.php22 return str_pad("", count($arFrom) * 3, '..'.$ps).implode($ps, $arTo);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
DEngine.php494 $temp = str_pad($temp, strlen($leading_ones), chr(0), STR_PAD_LEFT);
1240 $left = str_pad($left, $length, chr(0), STR_PAD_LEFT);
1241 $right = str_pad($right, $length, chr(0), STR_PAD_LEFT);
1259 $left = str_pad($left, $length, chr(0), STR_PAD_LEFT);
1260 $right = str_pad($right, $length, chr(0), STR_PAD_LEFT);
1279 $left = str_pad($left, $length, chr(0), STR_PAD_LEFT);
1280 $right = str_pad($right, $length, chr(0), STR_PAD_LEFT);
/plugin/twofactor/
DGoogleAuthenticator.php94 return str_pad($value % $modulo, $this->_codeLength, '0', STR_PAD_LEFT);
201 … $x .= str_pad(base_convert(@$base32charsFlipped[@$secret[$i + $j]], 10, 2), 5, '0', STR_PAD_LEFT);

123456