Searched refs:mBits (Results 1 - 12 of 12) sorted by relevance

/external/aac/libFDK/include/
H A DFDK_crc.h177 * Bitstream range for crc calculation can be limited or kept dynamic depending on mBits parameter.
182 * \param mBits Number of bits in crc region to be calculated.
183 * - mBits > 0: Zero padding will be used for CRC calculation, if there
184 * are less than mBits bits available.
185 * - mBits < 0: No zero padding is done.
186 * - mBits = 0: The number of bits used in crc calculation is dynamically,
195 const INT mBits
203 * on mBits parameter of FDKcrcStartReg().
/external/aac/libMpegTPEnc/src/
H A Dtpenc_adts.h183 * If mBits is positive zero padding will be used for CRC calculation, if there
184 * are less than mBits bits available.
185 * If mBits is negative no zero padding is done.
186 * If mBits is zero the memory for the buffer is allocated dynamically, the
191 * \param mBits limit of number of bits to be considered for the requested CRC region
198 int mBits
H A Dtpenc_adts.cpp101 int mBits /*!< number of bits in crc region */
107 return ( FDKcrcStartReg(&pAdts->crcInfo, hBs, mBits) );
H A Dtpenc_lib.cpp547 int transportEnc_CrcStartReg(HANDLE_TRANSPORTENC hTpEnc, int mBits) argument
553 crcReg = adtsWrite_CrcStartReg(&hTpEnc->writer.adts, &hTpEnc->bitStream, mBits);
/external/aac/libMpegTPDec/src/
H A Dtpdec_adts.h155 * If mBits is positive zero padding will be used for CRC calculation, if there
156 * are less than mBits bits available.
157 * If mBits is negative no zero padding is done.
158 * If mBits is zero the memory for the buffer is allocated dynamically, the
163 * \param mBits max number of bits in crc region to be considered
170 int mBits
H A Dtpdec_adts.cpp106 int mBits /*!< number of bits in crc region */
113 return ( FDKcrcStartReg(&pAdts->crcInfo, hBs, mBits) );
H A Dtpdec_lib.cpp1288 int transportDec_CrcStartReg(HANDLE_TRANSPORTDEC pTp, INT mBits) argument
1292 return adtsRead_CrcStartReg(&pTp->parser.adts, &pTp->bitStream[0], mBits);
/external/aac/libMpegTPEnc/include/
H A Dtpenc_lib.h263 * \param mBits Size in bits of the data region. Set to 0 if it should not be of a fixed size.
266 int transportEnc_CrcStartReg(HANDLE_TRANSPORTENC hTpEnc, int mBits);
/external/aac/libFDK/src/
H A DFDK_crc.cpp257 const INT mBits
264 hCrcInfo->crcRegData[reg].maxBits = mBits;
395 * Calculate crc. Lenght depends on mBits parameter in FDKcrcStartReg() configuration.
432 int mBits = bits & 0x7; /* modulo bits */ local
442 if(mBits!=0) {
443 rBits -= calcCrc_Bits(&crc, hCrcInfo->crcMask, hCrcInfo->crcPoly, &bsReader, mBits );
/external/aac/libMpegTPDec/include/
H A Dtpdec_lib.h498 * \param mBits Size in bits of the data region. Set to 0 if it should not be of a fixed size.
502 const INT mBits );
/external/deqp/framework/common/
H A DtcuTextureUtil.cpp1004 const int mBits = 9; local
1008 const float maxVal = (float)(((1<<mBits) - 1) * (1<<(eMax-eBias))) / (float)(1<<mBits);
1015 float e = deFloatPow(2.0f, (float)(expp-eBias-mBits));
1018 deUint32 exps = maxs == (1<<mBits) ? expp+1 : expp;
H A DtcuTexture.cpp371 const int mBits = 9; local
379 float e = deFloatPow(2.0f, (float)((int)exp - eBias - mBits));

Completed in 1134 milliseconds