Function report |
Source Code:lib\zstd\compress.c |
Create Date:2022-07-28 07:03:21 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
home page | Tree |
Annotation kernel can get tool activity | Download SCCT | Chinese |
Name:ZSTD_count_2segments() :* can count match length with `ip` & `match` in 2 different segments.* convention : on reaching mEnd, match count continue starting from iStart
Proto:static size_t ZSTD_count_2segments(const BYTE *ip, const BYTE *match, const BYTE *iEnd, const BYTE *mEnd, const BYTE *iStart)
Type:size_t
Parameter:
Type | Parameter | Name |
---|---|---|
const BYTE * | ip | |
const BYTE * | match | |
const BYTE * | iEnd | |
const BYTE * | mEnd | |
const BYTE * | iStart |
943 | matchLength = ZSTD_count(ip, match, vEnd) |
944 | If match + matchLength != mEnd Then Return matchLength |
946 | Return matchLength + ZSTD_count(ip + matchLength, iStart, iEnd) |
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 |