Searched defs:mant (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/codecs/g711/dec/
H A DSoftG711.cpp269 int32_t mant = ix & 0x0f; local
272 mant += 16;
275 mant = (mant << 4) + 8;
278 mant = mant << (iexp - 1);
281 *out++ = (x > 127) ? mant : -mant;

Completed in 51 milliseconds