Home
last modified time | relevance | path

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

/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
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;
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/
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/
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/statistics/vendor/mustangostang/spyc/
DSpyc.php693 $intvalue = (int)$value;
694 if ($intvalue != PHP_INT_MAX && $intvalue != ~PHP_INT_MAX)
695 $value = $intvalue;
/plugin/photogallery/phpThumb/
Dphpthumb.bmp.php813 $intvalue = 0;
817 $intvalue += ord($byteword[$i]) * pow(256, $bytewordlen - 1 - $i);
819 return $intvalue;
/plugin/statistics/vendor/mustangostang/spyc/php4/
Dspyc.php4572 $intvalue = (int)$value;
573 if ($intvalue != PHP_INT_MAX)
574 $value = $intvalue;
/plugin/sketchcanvas/phplib/
Dspyc.php588 $intvalue = (int)$value;
589 if ($intvalue != PHP_INT_MAX)
590 $value = $intvalue;