Lines Matching refs:bitContainer
739 * 2. The bitContainer is built from the upper bits and
741 * you right shift the bitContainer by N, then or in
751 size_t bitContainer[2];
769 bitC->endPtr = bitC->startPtr + dstCapacity - sizeof(bitC->bitContainer[0]);
770 if (dstCapacity <= sizeof(bitC->bitContainer[0])) return ERROR(dstSize_tooSmall);
793 bitC->bitContainer[idx] >>= HUF_getNbBits(elt);
794 bitC->bitContainer[idx] |= kFast ? HUF_getValueFast(elt) : HUF_getValue(elt);
820 bitC->bitContainer[1] = 0;
831 bitC->bitContainer[0] >>= (bitC->bitPos[1] & 0xFF);
832 bitC->bitContainer[0] |= bitC->bitContainer[1];
849 /* The top nbBits bits of bitContainer are the ones we need. */
850 size_t const bitContainer = bitC->bitContainer[0] >> (HUF_BITS_IN_CONTAINER - nbBits);
854 assert(nbBits <= sizeof(bitC->bitContainer[0]) * 8);
856 MEM_writeLEST(bitC->ptr, bitContainer);
860 /* bitContainer doesn't need to be modified because the leftover