Lines Matching refs:dictCtx

1131     cctx->dictCtx = NULL;  in LZ4_prepareTable()
1162 const LZ4_stream_t_internal *dictCtx = (const LZ4_stream_t_internal *)cctx->dictCtx; in LZ4_compress_generic_validated() local
1164 dictDirective == usingDictCtx ? dictCtx->dictionary : cctx->dictionary; in LZ4_compress_generic_validated()
1166 dictDirective == usingDictCtx ? dictCtx->dictSize : cctx->dictSize; in LZ4_compress_generic_validated()
1167 …const U32 dictDelta = (dictDirective == usingDictCtx) ? startIndex - dictCtx->currentOffset : 0; /… in LZ4_compress_generic_validated()
1179 …ictionary ? NULL : (dictDirective == usingDictCtx) ? dictionary + dictSize - dictCtx->currentOffset in LZ4_compress_generic_validated()
1211 cctx->dictCtx = NULL; in LZ4_compress_generic_validated()
1286 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); in LZ4_compress_generic_validated()
1528 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); in LZ4_compress_generic_validated()
1952 …const LZ4_stream_t_internal *dictCtx = dictionaryStream == NULL ? NULL : &(dictionaryStream->inter… in LZ4_attach_dictionary() local
1956 dictCtx != NULL ? dictCtx->dictSize : 0); in LZ4_attach_dictionary()
1958 if (dictCtx != NULL) in LZ4_attach_dictionary()
1972 if (dictCtx->dictSize == 0) in LZ4_attach_dictionary()
1974 dictCtx = NULL; in LZ4_attach_dictionary()
1977 workingStream->internal_donotuse.dictCtx = dictCtx; in LZ4_attach_dictionary()
2057 if (streamPtr->dictCtx) in LZ4_compress_fast_continue()
2071 LZ4_memcpy(streamPtr, streamPtr->dictCtx, sizeof(*streamPtr)); in LZ4_compress_fast_continue()