Function report |
Source Code:lib\lz4\lz4_decompress.c |
Create Date:2022-07-28 07:01:19 |
| Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
| home page | Tree |
| Annotation kernel can get tool activity | Download SCCT | Chinese |
Name:*_continue() :* These decoding functions allow decompression of multiple blocks* in "streaming" mode
Proto:int LZ4_decompress_safe_continue(LZ4_streamDecode_t *LZ4_streamDecode, const char *source, char *dest, int compressedSize, int maxOutputSize)
Type:int
Parameter:
| Type | Parameter | Name |
|---|---|---|
| LZ4_streamDecode_t * | LZ4_streamDecode | |
| const char * | source | |
| char * | dest | |
| int | compressedSize | |
| int | maxOutputSize |
| 579 | lz4sd = internal_donotuse |
| 583 | If prefixSize == 0 Then |
| 585 | assert(extDictSize == 0) |
| 590 | prefixSize = result |
| 594 | If prefixSize >= 64 * KB - 1 Then result = ===== Instantiate a few more decoding cases, used more than once. ===== |
| 597 | Else if extDictSize == 0 Then result = LZ4_decompress_safe_withSmallPrefix(source, dest, compressedSize, maxOutputSize, prefixSize) |
| 608 | prefixSize += result |
| 610 | Else |
| 615 | extDictSize = prefixSize |
| 616 | externalDict = prefixEnd - extDictSize |
| 617 | result = LZ4_decompress_safe_forceExtDict(source, dest, compressedSize, maxOutputSize, externalDict, extDictSize) |
| 622 | prefixSize = result |
| 626 | Return result |
| 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 |