Searched refs:LZ4_dict (Results 1 – 1 of 1) sorted by relevance
1190 int LZ4_loadDict (LZ4_stream_t* LZ4_dict, const char* dictionary, int dictSize) in LZ4_loadDict() argument1192 LZ4_stream_t_internal* dict = &LZ4_dict->internal_donotuse; in LZ4_loadDict()1198 DEBUGLOG(4, "LZ4_loadDict (%i bytes from %p into %p)", dictSize, dictionary, LZ4_dict); in LZ4_loadDict()1204 LZ4_resetStream(LZ4_dict); in LZ4_loadDict()1249 static void LZ4_renormDictT(LZ4_stream_t_internal* LZ4_dict, int nextSize) in LZ4_renormDictT() argument1251 …if (LZ4_dict->currentOffset + nextSize > 0x80000000) { /* potential ptrdiff_t overflow (32-bits … in LZ4_renormDictT()1253 U32 const delta = LZ4_dict->currentOffset - 64 KB; in LZ4_renormDictT()1254 const BYTE* dictEnd = LZ4_dict->dictionary + LZ4_dict->dictSize; in LZ4_renormDictT()1258 if (LZ4_dict->hashTable[i] < delta) LZ4_dict->hashTable[i]=0; in LZ4_renormDictT()1259 else LZ4_dict->hashTable[i] -= delta; in LZ4_renormDictT()[all …]