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

  /src/external/bsd/zstd/dist/lib/compress/
zstd_ldm.h 83 * Moves forward in rawSeqStore by nbBytes, updating fields 'pos' and 'posInSequence'.
87 void ZSTD_ldm_skipRawSeqStoreBytes(rawSeqStore_t* rawSeqStore, size_t nbBytes);
zstd_ldm.c 649 void ZSTD_ldm_skipRawSeqStoreBytes(rawSeqStore_t* rawSeqStore, size_t nbBytes) {
650 U32 currPos = (U32)(rawSeqStore->posInSequence + nbBytes);
huf_compress.c 941 size_t const nbBytes = nbBits >> 3;
950 bitC->ptr += nbBytes;
zstd_opt.c 915 * Moves forward in @rawSeqStore by @nbBytes,
918 static void ZSTD_optLdm_skipRawSeqStoreBytes(rawSeqStore_t* rawSeqStore, size_t nbBytes)
920 U32 currPos = (U32)(rawSeqStore->posInSequence + nbBytes);
  /src/external/bsd/zstd/dist/lib/common/
bitstream.h 206 size_t const nbBytes = bitC->bitPos >> 3;
210 bitC->ptr += nbBytes;
212 bitC->bitContainer >>= nbBytes*8;
222 size_t const nbBytes = bitC->bitPos >> 3;
226 bitC->ptr += nbBytes;
229 bitC->bitContainer >>= nbBytes*8;
432 { U32 nbBytes = bitD->bitsConsumed >> 3;
434 if (bitD->ptr - nbBytes < bitD->start) {
435 nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */
438 bitD->ptr -= nbBytes;
    [all...]
  /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_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_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_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;
  /src/external/bsd/zstd/dist/lib/decompress/
huf_decompress.c 799 int const nbBytes = ctz >> 3; \
801 ip[(_stream)] -= nbBytes; \
1622 int const nbBytes = ctz >> 3; \
1623 ip[(_stream)] -= nbBytes; \

Completed in 85 milliseconds