HomeSort by: relevance | last modified time | path
    Searched defs:nbBytes (Results 1 - 9 of 9) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/common/
bitstream.h 207 size_t const nbBytes = bitC->bitPos >> 3;
211 bitC->ptr += nbBytes;
213 bitC->bitContainer >>= nbBytes*8;
223 size_t const nbBytes = bitC->bitPos >> 3;
227 bitC->ptr += nbBytes;
230 bitC->bitContainer >>= nbBytes*8;
433 { U32 nbBytes = bitD->bitsConsumed >> 3;
435 if (bitD->ptr - nbBytes < bitD->start) {
436 nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */
439 bitD->ptr -= nbBytes;
    [all...]
  /src/external/bsd/zstd/dist/lib/compress/
huf_compress.c 941 size_t const nbBytes = nbBits >> 3;
950 bitC->ptr += nbBytes;
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 716 U32 nbBytes = bitD->bitsConsumed >> 3;
718 if (bitD->ptr - nbBytes < bitD->start)
720 nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */
723 bitD->ptr -= nbBytes;
724 bitD->bitsConsumed -= nbBytes*8;
zstd_v03.c 422 U32 nbBytes = bitD->bitsConsumed >> 3;
424 if (bitD->ptr - nbBytes < bitD->start)
426 nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */
429 bitD->ptr -= nbBytes;
430 bitD->bitsConsumed -= nbBytes*8;
zstd_v04.c 693 U32 nbBytes = bitD->bitsConsumed >> 3;
695 if (bitD->ptr - nbBytes < bitD->start)
697 nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */
700 bitD->ptr -= nbBytes;
701 bitD->bitsConsumed -= nbBytes*8;
zstd_v02.c 421 U32 nbBytes = bitD->bitsConsumed >> 3;
423 if (bitD->ptr - nbBytes < bitD->start)
425 nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */
428 bitD->ptr -= nbBytes;
429 bitD->bitsConsumed -= nbBytes*8;
2133 typedef struct { BYTE nbBits; BYTE nbBytes; } HUF_DDescX6;
2144 const U32 level = DDesc.nbBytes;
2164 DDesc.nbBytes++;
2289 DDesc.nbBytes = 0;
2305 return dd[val].nbBytes;
    [all...]
zstd_v05.c 821 U32 nbBytes = bitD->bitsConsumed >> 3;
823 if (bitD->ptr - nbBytes < bitD->start) {
824 nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */
827 bitD->ptr -= nbBytes;
828 bitD->bitsConsumed -= nbBytes*8;
zstd_v06.c 918 { U32 nbBytes = bitD->bitsConsumed >> 3;
920 if (bitD->ptr - nbBytes < bitD->start) {
921 nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */
924 bitD->ptr -= nbBytes;
925 bitD->bitsConsumed -= nbBytes*8;
zstd_v07.c 587 { U32 nbBytes = bitD->bitsConsumed >> 3;
589 if (bitD->ptr - nbBytes < bitD->start) {
590 nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */
593 bitD->ptr -= nbBytes;
594 bitD->bitsConsumed -= nbBytes*8;

Completed in 93 milliseconds