Searched refs:byteword (Results 1 – 5 of 5) sorted by relevance
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
D | getid3.lib.php | 234 * @param string $byteword 238 public static function LittleEndian2Float($byteword) { argument 239 return self::BigEndian2Float(strrev($byteword)); 248 * @param string $byteword 252 public static function BigEndian2Float($byteword) { argument 253 $bitword = self::BigEndian2Bin($byteword); 262 switch (strlen($byteword) * 8) { 327 * @param string $byteword 334 public static function BigEndian2Int($byteword, $synchsafe=false, $signed=false) { argument 336 $bytewordlen = strlen($byteword); [all …]
|
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/ |
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); 242 $intvalue = $intvalue | (ord($byteword{$i}) & 0x7F) << (($bytewordlen - 1 - $i) * 7); 244 $intvalue += ord($byteword{$i}) * pow(256, ($bytewordlen - 1 - $i)); 269 function LittleEndian2Int($byteword, $signed=false) { argument [all …]
|
/plugin/photogallery/phpThumb/ |
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/ |
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); 400 $intvalue = $intvalue | (ord($byteword[$i]) & 0x7F) << (($bytewordlen - 1 - $i) * 7); 402 $intvalue += ord($byteword[$i]) * pow(256, ($bytewordlen - 1 - $i)); 428 function LittleEndian2Int($byteword, $signed=false) { argument [all …]
|