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

/external/aac/libMpegTPDec/src/
H A Dtpdec_drm.cpp117 int mBits /*!< number of bits in crc region */
125 return (FDKcrcStartReg(&pDrm->crcInfo, hBs, mBits));
H A Dtpdec_drm.h129 * If mBits is positive zero padding will be used for CRC calculation, if
130 * there are less than mBits bits available. If mBits is negative no zero
131 * padding is done. If mBits is zero the memory for the buffer is
136 * \param mBits max number of bits in crc region to be considered
140 int drmRead_CrcStartReg(HANDLE_DRM pDrm, HANDLE_FDK_BITSTREAM hBs, int mBits);
H A Dtpdec_adts.h166 * If mBits is positive zero padding will be used for CRC calculation, if
167 * there are less than mBits bits available. If mBits is negative no zero
168 * padding is done. If mBits is zero the memory for the buffer is
173 * \param mBits max number of bits in crc region to be considered
178 int mBits);
H A Dtpdec_adts.cpp116 int mBits /*!< number of bits in crc region */
122 return (FDKcrcStartReg(&pAdts->crcInfo, hBs, mBits));
H A Dtpdec_lib.cpp1768 int transportDec_CrcStartReg(HANDLE_TRANSPORTDEC pTp, INT mBits) { argument
1771 return adtsRead_CrcStartReg(&pTp->parser.adts, &pTp->bitStream[0], mBits);
1773 return drmRead_CrcStartReg(&pTp->parser.drm, &pTp->bitStream[0], mBits);
/external/aac/libFDK/include/
H A DFDK_crc.h181 * dynamic depending on mBits parameter. The crc region has to be terminated
186 * \param mBits Number of bits in crc region to be calculated.
187 * - mBits > 0: Zero padding will be used for CRC
188 * calculation, if there are less than mBits bits available.
189 * - mBits < 0: No zero padding is done.
190 * - mBits = 0: The number of bits used in crc
198 const INT mBits);
204 * number of bits in crc region depends on mBits parameter of FDKcrcStartReg().
/external/aac/libMpegTPEnc/src/
H A Dtpenc_adts.h184 * If mBits is positive zero padding will be used for CRC calculation, if
185 * there are less than mBits bits available. If mBits is negative no zero
186 * padding is done. If mBits is zero the memory for the buffer is
191 * \param mBits limit of number of bits to be considered for the requested CRC
197 int mBits);
H A Dtpenc_adts.cpp111 int mBits /*!< number of bits in crc region */
116 return (FDKcrcStartReg(&pAdts->crcInfo, hBs, mBits));
H A Dtpenc_lib.cpp579 int transportEnc_CrcStartReg(HANDLE_TRANSPORTENC hTpEnc, int mBits) { argument
585 mBits);
/external/aac/libMpegTPEnc/include/
H A Dtpenc_lib.h300 * \param mBits Size in bits of the data region. Set to 0 if it should not be
305 int transportEnc_CrcStartReg(HANDLE_TRANSPORTENC hTpEnc, int mBits);
/external/aac/libFDK/src/
H A DFDK_crc.cpp278 const INT mBits) {
283 hCrcInfo->crcRegData[reg].maxBits = mBits;
416 * Calculate crc. Lenght depends on mBits parameter in FDKcrcStartReg()
451 int mBits = bits & 0x7; /* modulo bits */ local
461 if (mBits != 0) {
463 mBits);
277 FDKcrcStartReg(HANDLE_FDK_CRCINFO hCrcInfo, const HANDLE_FDK_BITSTREAM hBs, const INT mBits) argument
/external/dng_sdk/source/
H A Ddng_reference.cpp2246 uint32 mBits)
2249 const uint32 mRound = 1 << (mBits - 1);
2267 s = (s * m + mRound) >> mBits;
2304 r = (r * m + mRound) >> mBits;
2305 g = (g * m + mRound) >> mBits;
2306 b = (b * m + mRound) >> mBits;
2351 a = (a * m + mRound) >> mBits;
2352 b = (b * m + mRound) >> mBits;
2353 c = (c * m + mRound) >> mBits;
2354 d = (d * m + mRound) >> mBits;
2238 RefVignette16(int16 *sPtr, const uint16 *mPtr, uint32 rows, uint32 cols, uint32 planes, int32 sRowStep, int32 sPlaneStep, int32 mRowStep, uint32 mBits) argument
2429 RefVignette32(real32 *sPtr, const uint16 *mPtr, uint32 rows, uint32 cols, uint32 planes, int32 sRowStep, int32 sPlaneStep, int32 mRowStep, uint32 mBits) argument
[all...]
H A Ddng_bottlenecks.h540 uint32 mBits);
553 uint32 mBits);
1648 uint32 mBits)
1659 mBits);
1673 uint32 mBits)
1684 mBits);
1640 DoVignette16(int16 *sPtr, const uint16 *mPtr, uint32 rows, uint32 cols, uint32 planes, int32 sRowStep, int32 sPlaneStep, int32 mRowStep, uint32 mBits) argument
1665 DoVignette32(real32 *sPtr, const uint16 *mPtr, uint32 rows, uint32 cols, uint32 planes, int32 sRowStep, int32 sPlaneStep, int32 mRowStep, uint32 mBits) argument
H A Ddng_reference.h492 uint32 mBits);
504 uint32 mBits);
/external/aac/libMpegTPDec/include/
H A Dtpdec_lib.h628 * \param mBits Size in bits of the data region. Set to 0 if it should not be
633 int transportDec_CrcStartReg(const HANDLE_TRANSPORTDEC hTp, const INT mBits);
/external/deqp/framework/common/
H A DtcuTextureUtil.cpp1224 const int mBits = 9;
1228 const float maxVal = (float)(((1<<mBits) - 1) * (1<<(eMax-eBias))) / (float)(1<<mBits);
1235 float e = deFloatPow(2.0f, (float)(expp-eBias-mBits));
1238 deUint32 exps = maxs == (1<<mBits) ? expp+1 : expp;
H A DtcuTexture.cpp514 const int mBits = 9; local
522 float e = deFloatPow(2.0f, (float)((int)exp - eBias - mBits));

Completed in 709 milliseconds