Home
last modified time | relevance | path

Searched refs:LONGNBSEQ (Results 1 – 7 of 7) sorted by relevance

/external/zstd/lib/common/
Dzstd_internal.h173 #define LONGNBSEQ 0x7F00 macro
/external/zstd/lib/compress/
Dzstd_compress_superblock.c458 else if (nbSeq < LONGNBSEQ) in ZSTD_compressSubBlock_sequences()
461 op[0]=0xFF, MEM_writeLE16(op+1, (U16)(nbSeq - LONGNBSEQ)), op+=3; in ZSTD_compressSubBlock_sequences()
Dzstd_compress.c2204 } else if (nbSeq < LONGNBSEQ) { in ZSTD_entropyCompressSequences_internal()
2210 MEM_writeLE16(op+1, (U16)(nbSeq - LONGNBSEQ)); in ZSTD_entropyCompressSequences_internal()
/external/zstd/tests/
Ddecodecorpus.c825 else if (nbSeq < LONGNBSEQ) op[0] = (BYTE)((nbSeq>>8) + 0x80), op[1] = (BYTE)nbSeq, op+=2; in writeSequences()
826 else op[0]=0xFF, MEM_writeLE16(op+1, (U16)(nbSeq - LONGNBSEQ)), op+=3; in writeSequences()
/external/zstd/lib/decompress/
Dzstd_decompress_block.c599 nbSeq = MEM_readLE16(ip) + LONGNBSEQ; in ZSTD_decodeSeqHeaders()
/external/zstd/lib/legacy/
Dzstd_v06.c492 #define LONGNBSEQ 0x7F00 macro
3239 nbSeq = MEM_readLE16(ip) + LONGNBSEQ, ip+=2; in ZSTDv06_decodeSeqHeaders()
Dzstd_v07.c2727 #define LONGNBSEQ 0x7F00 macro
3469 nbSeq = MEM_readLE16(ip) + LONGNBSEQ, ip+=2; in ZSTDv07_decodeSeqHeaders()