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

  /src/external/bsd/zstd/dist/lib/common/
entropy_common.c 51 U32 bitStream;
71 bitStream = MEM_readLE32(ip);
72 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */
74 bitStream >>= 4;
88 int repeats = ZSTD_countTrailingZeros32(~bitStream | 0x80000000) >> 1;
98 bitStream = MEM_readLE32(ip) >> bitCount;
99 repeats = ZSTD_countTrailingZeros32(~bitStream | 0x80000000) >> 1;
102 bitStream >>= 2 * repeats;
106 assert((bitStream & 3) < 3);
107 charnum += bitStream & 3
    [all...]
  /src/external/bsd/zstd/dist/lib/compress/
fse_compress.c 22 #include "../common/bitstream.h"
229 + 2 /* additional two bytes for bitstream flush */;
245 U32 bitStream = 0;
252 bitStream += (tableLog-FSE_MIN_TABLELOG) << bitCount;
267 bitStream += 0xFFFFU << bitCount;
270 out[0] = (BYTE) bitStream;
271 out[1] = (BYTE)(bitStream>>8);
273 bitStream>>=16;
277 bitStream += 3U << bitCount;
280 bitStream += (symbol-start) << bitCount
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 438 * Header bitstream management
449 U32 bitStream;
455 bitStream = FSE_readLE32(ip);
456 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */
458 bitStream >>= 4;
470 while ((bitStream & 0xFFFF) == 0xFFFF)
476 bitStream = FSE_readLE32(ip) >> bitCount;
480 bitStream >>= 16;
484 while ((bitStream & 3) == 3)
487 bitStream>>=2
    [all...]
zstd_v03.c 207 bitstream
257 * bitStream decompression API (read backward)
315 * bitStream decoding
321 * @srcBuffer must point at the beginning of a bitStream
322 * @srcSize must be the exact size of the bitStream
603 /* build a fake FSE_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
1126 U32 bitStream;
1132 bitStream = MEM_readLE32(ip);
1133 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */
1135 bitStream >>= 4
    [all...]
zstd_v04.c 323 #define MIN_SEQUENCES_SIZE (2 /*seqNb*/ + 2 /*dumps*/ + 3 /*seqTables*/ + 1 /*bitStream*/)
484 bitstream
533 * bitStream decompression API (read backward)
591 * bitStream decoding
597 * @srcBuffer must point at the beginning of a bitStream
598 * @srcSize must be the exact size of the bitStream
782 /* build a fake FSE_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
1109 U32 bitStream;
1115 bitStream = MEM_readLE32(ip);
1116 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog *
    [all...]
zstd_v02.c 206 bitstream
256 * bitStream decompression API (read backward)
313 * bitStream decoding
319 * @srcBuffer must point at the beginning of a bitStream
320 * @srcSize must be the exact size of the bitStream
602 /* build a fake FSE_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
1126 U32 bitStream;
1132 bitStream = MEM_readLE32(ip);
1133 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */
1135 bitStream >>= 4
    [all...]
zstd_v05.c 618 bitstream
668 * bitStream decoding API (read backward)
725 * bitStream decoding
730 * @srcBuffer must point at the beginning of a bitStream
731 * @srcSize must be the exact size of the bitStream
901 /* build a fake FSEv05_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
1239 U32 bitStream;
1245 bitStream = MEM_readLE32(ip);
1246 nbBits = (bitStream & 0xF) + FSEv05_MIN_TABLELOG; /* extract tableLog */
1248 bitStream >>= 4
    [all...]
zstd_v06.c 709 bitstream
767 * bitStream decoding API (read backward)
825 * bitStream decoding
830 * `srcSize` must be the *exact* size of the bitStream, in bytes.
1005 /* build a fake FSEv06_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
1216 U32 bitStream;
1222 bitStream = MEM_readLE32(ip);
1223 nbBits = (bitStream & 0xF) + FSEv06_MIN_TABLELOG; /* extract tableLog */
1225 bitStream >>= 4;
1235 while ((bitStream & 0xFFFF) == 0xFFFF)
    [all...]
zstd_v07.c 382 bitstream
438 * bitStream decoding API (read backward)
494 * bitStream decoding
499 * `srcSize` must be the *exact* size of the bitStream, in bytes.
773 /**< build a fake FSEv07_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
1161 U32 bitStream;
1167 bitStream = MEM_readLE32(ip);
1168 nbBits = (bitStream & 0xF) + FSEv07_MIN_TABLELOG; /* extract tableLog */
1170 bitStream >>= 4;
1180 while ((bitStream & 0xFFFF) == 0xFFFF)
    [all...]

Completed in 35 milliseconds