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

  /external/aac/libSBRdec/src/
env_extr.h 106 #define EXP_BITS 6
117 #define MASK_M (((1 << (FRACT_BITS - EXP_BITS)) - 1) << EXP_BITS) /*!< Mask for extracting the mantissa of a pseudo float envelope value */
118 #define MASK_E ((1 << EXP_BITS) - 1) /*!< Mask for extracting the exponent of a pseudo float envelope value */
121 #define ROUNDING ( (FIXP_SGL)(1<<(EXP_BITS-1)) ) /*!< 0.5-offset for rounding the mantissa of a pseudo-float envelope value */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
real.h 36 #define EXP_BITS (32 - 6)
37 #define MAX_EXP ((1 << (EXP_BITS - 1)) - 1)
50 unsigned int uexp : EXP_BITS;
55 ((int)((REAL)->uexp ^ (unsigned int)(1 << (EXP_BITS - 1))) \
56 - (1 << (EXP_BITS - 1)))
58 ((REAL)->uexp = ((unsigned int)(EXP) & (unsigned int)((1 << EXP_BITS) - 1)))

Completed in 45 milliseconds