Searched refs:byteword (Results 1 – 5 of 5) sorted by relevance
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | getid3.lib.php | 234 * @param string $byteword 248 * @param string $byteword 253 $bitword = self::BigEndian2Bin($byteword); 262 switch (strlen($byteword) * 8) { 327 * @param string $byteword 336 $bytewordlen = strlen($byteword); 363 * @param string $byteword 373 * @param string $byteword 378 return self::BigEndian2Bin(strrev($byteword)); 382 * @param string $byteword [all …]
|
H A D | module.audio-video.riff.php | 2779 * @param string $byteword 2784 private function EitherEndian2Int($byteword, $signed=false) { argument 2786 return getid3_lib::LittleEndian2Int($byteword, $signed); 2788 return getid3_lib::BigEndian2Int($byteword, false, $signed);
|
/plugin/jukebox/id3/ |
H A D | getid3.lib.php | 154 function LittleEndian2Float($byteword) { argument 155 return getid3_lib::BigEndian2Float(strrev($byteword)); 159 function BigEndian2Float($byteword) { argument 164 $bitword = getid3_lib::BigEndian2Bin($byteword); 170 switch (strlen($byteword) * 8) { 237 function BigEndian2Int($byteword, $synchsafe=false, $signed=false) { argument 239 $bytewordlen = strlen($byteword); 269 function LittleEndian2Int($byteword, $signed=false) { argument 270 return getid3_lib::BigEndian2Int(strrev($byteword), false, $signed); 274 function BigEndian2Bin($byteword) { argument [all …]
|
/plugin/photogallery/phpThumb/ |
H A D | phpthumb.bmp.php | 812 public function LittleEndian2Int($byteword) { argument 814 $byteword = strrev($byteword); 815 $bytewordlen = strlen($byteword); 817 $intvalue += ord($byteword[$i]) * pow(256, $bytewordlen - 1 - $i); 822 public function BigEndian2Int($byteword) { argument 823 return $this->LittleEndian2Int(strrev($byteword)); 826 public function BigEndian2Bin($byteword) { argument 828 $bytewordlen = strlen($byteword); 830 $binvalue .= str_pad(decbin(ord($byteword[$i])), 8, '0', STR_PAD_LEFT);
|
/plugin/jplayer/vendor/james-heinrich/getid3/demos/ |
H A D | demo.mp3header.php | 315 function LittleEndian2Float($byteword) { argument 316 return BigEndian2Float(strrev($byteword)); 321 function BigEndian2Float($byteword) { argument 326 $bitword = BigEndian2Bin($byteword); 329 switch (strlen($byteword) * 8) { 395 function BigEndian2Int($byteword, $synchsafe=false, $signed=false) { argument 397 $bytewordlen = strlen($byteword); 428 function LittleEndian2Int($byteword, $signed=false) { argument 429 return BigEndian2Int(strrev($byteword), false, $signed); 434 function BigEndian2Bin($byteword) { argument [all …]
|