Lines Matching refs:exponent
90 $exponent = 0;
93 $exponent--;
97 $exponent += ($pointpos - 1);
103 return array('normalized'=>$binarypointnumber, 'exponent'=>(int) $exponent);
187 $exponent = pow(2, getid3_lib::Bin2Dec($exponentstring) - 16383);
189 $floatvalue = $exponent * $fraction;
202 $exponent = getid3_lib::Bin2Dec($exponentstring);
205 if (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction != 0)) {
208 } elseif (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction == 0)) {
214 } elseif (($exponent == 0) && ($fraction == 0)) {
221 } elseif (($exponent == 0) && ($fraction != 0)) {
227 } elseif ($exponent != 0) {
228 …$floatvalue = pow(2, ($exponent - (pow(2, $exponentbits - 1) - 1))) * (1 + getid3_lib::DecimalBina…