HomeSort by relevance Sort by last modified time
    Searched defs:iexp (Results 1 - 2 of 2) sorted by null

  /external/eigen/Eigen/src/Core/
StableNorm.h 61 int ibeta, it, iemin, iemax, iexp; local
77 iexp = -((1-iemin)/2);
78 b1 = RealScalar(pow(RealScalar(ibeta),RealScalar(iexp))); // lower boundary of midrange
79 iexp = (iemax + 1 - it)/2;
80 b2 = RealScalar(pow(RealScalar(ibeta),RealScalar(iexp))); // upper boundary of midrange
82 iexp = (2-iemin)/2;
83 s1m = RealScalar(pow(RealScalar(ibeta),RealScalar(iexp))); // scaling factor for lower range
84 iexp = - ((iemax+it)/2);
85 s2m = RealScalar(pow(RealScalar(ibeta),RealScalar(iexp))); // scaling factor for upper range
  /frameworks/av/media/libstagefright/codecs/g711/dec/
SoftG711.cpp 293 int32_t iexp = ix >> 4; local
296 if (iexp > 0) {
302 if (iexp > 1) {
303 mant = mant << (iexp - 1);

Completed in 67 milliseconds