Home
last modified time | relevance | path

Searched refs:CACHE_BITS (Results 1 – 1 of 1) sorted by relevance

/external/aac/libFDK/include/
DFDK_bitstream.h111 #define CACHE_BITS 32 macro
219 hBitStream->BitsInCache += CACHE_BITS; in FDKreadBits()
231 hBitStream->BitsInCache = CACHE_BITS - 1; in FDKreadBit()
258 hBitStream->BitsInCache += CACHE_BITS; in FDKread2Bits()
279 const INT freeBits = (CACHE_BITS - 1) - hBitStream->BitsInCache; in FDKreadBitsBwd()
350 if ((hBitStream->BitsInCache + numberOfBits) < CACHE_BITS) { in FDKwriteBits()
362 int missing_bits = CACHE_BITS - hBitStream->BitsInCache; in FDKwriteBits()
391 if ((hBitStream->BitsInCache + numberOfBits) <= CACHE_BITS) { in FDKwriteBitsBwd()
534 FDK_ASSERT((hBitStream->BitsInCache + numberOfBits) <= CACHE_BITS); in FDKpushBackCache()
540 if ((hBitStream->BitsInCache + numberOfBits) < CACHE_BITS && in FDKpushBack()