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

  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress_superblock.c 200 const U32 Offtype = fseMetadata->ofType;
203 *seqHead = (BYTE)((LLtype<<6) + (Offtype<<4) + (MLtype<<2));
zstd_compress.c 2736 U32 Offtype;
2812 stats.Offtype = ZSTD_selectEncodingType(&nextEntropy->offcode_repeatMode,
2817 assert(!(stats.Offtype < set_compressed && nextEntropy->offcode_repeatMode != FSE_repeat_none)); /* We don't copy tables */
2820 CTable_OffsetBits, OffFSELog, (symbolEncodingType_e)stats.Offtype,
2831 if (stats.Offtype == set_compressed)
2958 *seqHead = (BYTE)((stats.LLtype<<6) + (stats.Offtype<<4) + (stats.MLtype<<2));
3721 fseMetadata->ofType = (symbolEncodingType_e) stats.Offtype;
  /src/external/bsd/zstd/dist/tests/
decodecorpus.c 814 U32 LLtype, Offtype, MLtype; /* compressed, raw or rle */
882 Offtype = set_repeat;
886 Offtype = set_rle;
889 Offtype = set_basic;
899 Offtype = set_compressed;
936 DISPLAYLEVEL(5, " LL type: %d OF type: %d ML type: %d\n", (unsigned)LLtype, (unsigned)Offtype, (unsigned)MLtype);
938 *seqHead = (BYTE)((LLtype<<6) + (Offtype<<4) + (MLtype<<2));
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 1541 U32 LLtype, Offtype, MLtype;
1551 Offtype = (*ip >> 4) & 3;
1595 switch(Offtype)
zstd_v03.c 2506 U32 LLtype, Offtype, MLtype;
2516 Offtype = (*ip >> 4) & 3;
2560 switch(Offtype)
zstd_v02.c 2866 U32 LLtype, Offtype, MLtype;
2876 Offtype = (*ip >> 4) & 3;
2920 switch(Offtype)
zstd_v04.c 2638 U32 LLtype, Offtype, MLtype;
2648 Offtype = (*ip >> 4) & 3;
2692 switch(Offtype)
zstd_v05.c 2952 U32 LLtype, Offtype, MLtype;
2970 Offtype = (*ip >> 4) & 3;
3019 switch(Offtype)
zstd_v06.c 3191 U32 const Offtype = (*ip >> 4) & 3;
3200 { size_t const bhSize = ZSTDv06_buildSeqTable(DTableOffb, Offtype, MaxOff, OffFSELog, ip, iend-ip, OF_defaultNorm, OF_defaultNormLog, flagRepeatTable);

Completed in 75 milliseconds