Home | History | Annotate | Download | only in compress

Lines Matching defs:bitContainer

832  *   2. The bitContainer is built from the upper bits and
834 bitContainer by N, then or in
844 size_t bitContainer[2];
862 bitC->endPtr = bitC->startPtr + dstCapacity - sizeof(bitC->bitContainer[0]);
863 if (dstCapacity <= sizeof(bitC->bitContainer[0])) return ERROR(dstSize_tooSmall);
886 bitC->bitContainer[idx] >>= HUF_getNbBits(elt);
887 bitC->bitContainer[idx] |= kFast ? HUF_getValueFast(elt) : HUF_getValue(elt);
913 bitC->bitContainer[1] = 0;
924 bitC->bitContainer[0] >>= (bitC->bitPos[1] & 0xFF);
925 bitC->bitContainer[0] |= bitC->bitContainer[1];
942 /* The top nbBits bits of bitContainer are the ones we need. */
943 size_t const bitContainer = bitC->bitContainer[0] >> (HUF_BITS_IN_CONTAINER - nbBits);
947 assert(nbBits <= sizeof(bitC->bitContainer[0]) * 8);
949 MEM_writeLEST(bitC->ptr, bitContainer);
953 /* bitContainer doesn't need to be modified because the leftover