Function report |
Source Code:lib\zstd\compress.c |
Create Date:2022-07-28 07:03:19 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
home page | Tree |
Annotation kernel can get tool activity | Download SCCT | Chinese |
Name:! ZSTD_storeSeq() :Store a sequence (literal length, literals, offset code and match length code) into seqStore_t.`offsetCode` : distance to match, or 0 == repCode.`matchCode` : matchLength - MINMATCH
Proto:ZSTD_STATIC void ZSTD_storeSeq(seqStore_t *seqStorePtr, size_t litLength, const void *literals, U32 offsetCode, size_t matchCode)
Type:void
Parameter:
Type | Parameter | Name |
---|---|---|
seqStore_t * | seqStorePtr | |
size_t | litLength | |
const void * | literals | |
U32 | offsetCode | |
size_t | matchCode |
864 | ZSTD_wildcopy(lit, literals, litLength) |
868 | If litLength > 0xFFFF Then |
870 | longLengthPos = sequences - sequencesStart |
875 | offset = offsetCode + 1 |
878 | If matchCode > 0xFFFF Then |
880 | longLengthPos = sequences - sequencesStart |
882 | matchLength = matchCode |
884 | sequences++ |
Source code conversion tool public plug-in interface | X |
---|---|
Support c/c++/esqlc/java Oracle/Informix/Mysql Plug-in can realize: logical Report Code generation and batch code conversion |