Searched refs:LZ4_dict (Results 1 – 1 of 1) sorted by relevance
/lz4-3.4.0-2.7.6/lib/ |
D | lz4.c | 685 int LZ4_compress_forceExtDict (LZ4_stream_t* LZ4_dict, const char* source, char* dest, int srcSize); 1475 int LZ4_loadDict (LZ4_stream_t* LZ4_dict, const char* dictionary, int dictSize) in LZ4_loadDict() argument 1477 LZ4_stream_t_internal* dict = &LZ4_dict->internal_donotuse; in LZ4_loadDict() 1483 DEBUGLOG(4, "LZ4_loadDict (%i bytes from %p into %p)", dictSize, dictionary, LZ4_dict); in LZ4_loadDict() 1489 LZ4_resetStream(LZ4_dict); in LZ4_loadDict() 1545 static void LZ4_renormDictT(LZ4_stream_t_internal* LZ4_dict, int nextSize) in LZ4_renormDictT() argument 1548 …if (LZ4_dict->currentOffset + (unsigned)nextSize > 0x80000000) { /* potential ptrdiff_t overflow… in LZ4_renormDictT() 1550 U32 const delta = LZ4_dict->currentOffset - 64 KB; in LZ4_renormDictT() 1551 const BYTE* dictEnd = LZ4_dict->dictionary + LZ4_dict->dictSize; in LZ4_renormDictT() 1555 if (LZ4_dict->hashTable[i] < delta) LZ4_dict->hashTable[i]=0; in LZ4_renormDictT() [all …]
|