Home
last modified time | relevance | path

Searched refs:intvalue (Results 1 – 6 of 6) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.mpc.php453 * @param int $intvalue
457 public function MPCpeakDBLookup($intvalue) { argument
458 if ($intvalue > 0) {
459 return ((log10($intvalue) / log10(2)) - 15) * 6;
H A Dgetid3.lib.php335 $intvalue = 0;
343 $intvalue += (ord($byteword[$i]) & 0x7F) * pow(2, ($bytewordlen - 1 - $i) * 7);
345 $intvalue += ord($byteword[$i]) * pow(256, ($bytewordlen - 1 - $i));
352 if ($intvalue & $signMaskBit) {
353 $intvalue = 0 - ($intvalue & ($signMaskBit - 1));
359 return self::CastAsInt($intvalue);
/plugin/jukebox/id3/
H A Dgetid3.lib.php238 $intvalue = 0;
242 $intvalue = $intvalue | (ord($byteword{$i}) & 0x7F) << (($bytewordlen - 1 - $i) * 7);
244 $intvalue += ord($byteword{$i}) * pow(256, ($bytewordlen - 1 - $i));
255 if ($intvalue & $signmaskbit) {
256 $intvalue = 0 - ($intvalue & ($signmaskbit - 1));
265 return getid3_lib::CastAsInt($intvalue);
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.mp3header.php396 $intvalue = 0;
400 $intvalue = $intvalue | (ord($byteword[$i]) & 0x7F) << (($bytewordlen - 1 - $i) * 7);
402 $intvalue += ord($byteword[$i]) * pow(256, ($bytewordlen - 1 - $i));
413 if ($intvalue & $signmaskbit) {
414 $intvalue = 0 - ($intvalue & ($signmaskbit - 1));
423 return CastAsInt($intvalue);
520 function Bool2IntString($intvalue) { argument
521 return ($intvalue ? '1' : '0');
/plugin/photogallery/phpThumb/
H A Dphpthumb.bmp.php813 $intvalue = 0;
817 $intvalue += ord($byteword[$i]) * pow(256, $bytewordlen - 1 - $i);
819 return $intvalue;
/plugin/sketchcanvas/phplib/
H A Dspyc.php588 $intvalue = (int)$value;
589 if ($intvalue != PHP_INT_MAX)
590 $value = $intvalue;