Lines Matching refs:dictCtx
222 const LZ4HC_CCtx_internal * const dictCtx = hc4->dictCtx; in LZ4HC_InsertAndGetWiderMatch() local
351 size_t const dictEndOffset = dictCtx->end - dictCtx->base; in LZ4HC_InsertAndGetWiderMatch()
353 dictMatchIndex = dictCtx->hashTable[LZ4HC_hashPtr(ip)]; in LZ4HC_InsertAndGetWiderMatch()
356 const BYTE* const matchPtr = dictCtx->base + dictMatchIndex; in LZ4HC_InsertAndGetWiderMatch()
364 …back = lookBackLength ? LZ4HC_countBack(ip, matchPtr, iLowLimit, dictCtx->base + dictCtx->dictLimi… in LZ4HC_InsertAndGetWiderMatch()
373 { U32 const nextOffset = DELTANEXTU16(dictCtx->chainTable, dictMatchIndex); in LZ4HC_InsertAndGetWiderMatch()
773 assert(ctx->dictCtx == NULL); in LZ4HC_compress_generic_noDictCtx()
788 assert(ctx->dictCtx != NULL); in LZ4HC_compress_generic_dictCtx()
790 ctx->dictCtx = NULL; in LZ4HC_compress_generic_dictCtx()
793 memcpy(ctx, ctx->dictCtx, sizeof(LZ4HC_CCtx_internal)); in LZ4HC_compress_generic_dictCtx()
812 if (ctx->dictCtx == NULL) { in LZ4HC_compress_generic()
894 LZ4_streamHCPtr->internal_donotuse.dictCtx = NULL; in LZ4_resetStreamHC()
904 LZ4_streamHCPtr->internal_donotuse.dictCtx = NULL; in LZ4_resetStreamHC_fast()
936 …working_stream->internal_donotuse.dictCtx = dictionary_stream != NULL ? &(dictionary_stream->inter… in LZ4_attach_HC_dictionary()