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

  /external/deqp/framework/common/
tcuFloat.hpp 47 template <typename StorageType_, int ExponentBits, int MantissaBits, int ExponentBias, deUint32 Flags>
57 EXPONENT_BIAS = ExponentBias,
69 static inline Float convert (const Float<StorageType, ExponentBits, MantissaBits, ExponentBias, Flags>& src) { return src; }
74 * \param exponent Exponent in range [1-ExponentBias, ExponentBias+1]
82 * normal exponent (1-ExponentBias). Additionally having both exponent and
85 * exponent of ExponentBias+1 and the appropriate mantissa (with leading
93 * \param exponent Exponent in range [-ExponentBias, ExponentBias+1]
114 inline int exponent (void) const { return isDenorm() ? 1 - ExponentBias : (int)exponentBits() - ExponentBias;
    [all...]
  /external/ImageMagick/MagickCore/
quantum-private.h 102 #define ExponentBias (127-15)
152 exponent+=ExponentBias;
166 exponent+=ExponentBias;
669 exponent=(int) ((map.fixed_point >> ExponentShift) & 0x000000ff)-ExponentBias;
685 if (exponent == (0xff-ExponentBias))

Completed in 516 milliseconds