Searched refs:LONGNBSEQ (Results 1 – 7 of 7) sorted by relevance
/external/zstd/lib/common/ |
D | zstd_internal.h | 173 #define LONGNBSEQ 0x7F00 macro
|
/external/zstd/lib/compress/ |
D | zstd_compress_superblock.c | 458 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()
|
D | zstd_compress.c | 2204 } else if (nbSeq < LONGNBSEQ) { in ZSTD_entropyCompressSequences_internal() 2210 MEM_writeLE16(op+1, (U16)(nbSeq - LONGNBSEQ)); in ZSTD_entropyCompressSequences_internal()
|
/external/zstd/tests/ |
D | decodecorpus.c | 825 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/ |
D | zstd_decompress_block.c | 599 nbSeq = MEM_readLE16(ip) + LONGNBSEQ; in ZSTD_decodeSeqHeaders()
|
/external/zstd/lib/legacy/ |
D | zstd_v06.c | 492 #define LONGNBSEQ 0x7F00 macro 3239 nbSeq = MEM_readLE16(ip) + LONGNBSEQ, ip+=2; in ZSTDv06_decodeSeqHeaders()
|
D | zstd_v07.c | 2727 #define LONGNBSEQ 0x7F00 macro 3469 nbSeq = MEM_readLE16(ip) + LONGNBSEQ, ip+=2; in ZSTDv07_decodeSeqHeaders()
|