Lines Matching refs:dictCtx
840 cctx->dictCtx = NULL; in LZ4_prepareTable()
871 const LZ4_stream_t_internal* dictCtx = (const LZ4_stream_t_internal*) cctx->dictCtx; in LZ4_compress_generic_validated() local
873 dictDirective == usingDictCtx ? dictCtx->dictionary : cctx->dictionary; in LZ4_compress_generic_validated()
875 dictDirective == usingDictCtx ? dictCtx->dictSize : cctx->dictSize; in LZ4_compress_generic_validated()
876 …const U32 dictDelta = (dictDirective == usingDictCtx) ? startIndex - dictCtx->currentOffset : 0; … in LZ4_compress_generic_validated()
889 dictionary + dictSize - dictCtx->currentOffset : in LZ4_compress_generic_validated()
913 cctx->dictCtx = NULL; in LZ4_compress_generic_validated()
976 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); in LZ4_compress_generic_validated()
1166 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); in LZ4_compress_generic_validated()
1518 const LZ4_stream_t_internal* dictCtx = dictionaryStream == NULL ? NULL : in LZ4_attach_dictionary() local
1523 dictCtx != NULL ? dictCtx->dictSize : 0); in LZ4_attach_dictionary()
1525 if (dictCtx != NULL) { in LZ4_attach_dictionary()
1537 if (dictCtx->dictSize == 0) { in LZ4_attach_dictionary()
1538 dictCtx = NULL; in LZ4_attach_dictionary()
1541 workingStream->internal_donotuse.dictCtx = dictCtx; in LZ4_attach_dictionary()
1609 if (streamPtr->dictCtx) { in LZ4_compress_fast_continue()
1621 LZ4_memcpy(streamPtr, streamPtr->dictCtx, sizeof(*streamPtr)); in LZ4_compress_fast_continue()