Searched refs:dictCtx (Results 1 – 4 of 4) sorted by relevance
/external/lz4/lib/ |
D | lz4hc.c | 251 const LZ4HC_CCtx_internal * const dictCtx = hc4->dictCtx; in LZ4HC_InsertAndGetWiderMatch() local 415 size_t const dictEndOffset = (size_t)(dictCtx->end - dictCtx->base); in LZ4HC_InsertAndGetWiderMatch() 416 U32 dictMatchIndex = dictCtx->hashTable[LZ4HC_hashPtr(ip)]; in LZ4HC_InsertAndGetWiderMatch() 420 const BYTE* const matchPtr = dictCtx->base + dictMatchIndex; in LZ4HC_InsertAndGetWiderMatch() 428 …back = lookBackLength ? LZ4HC_countBack(ip, matchPtr, iLowLimit, dictCtx->base + dictCtx->dictLimi… in LZ4HC_InsertAndGetWiderMatch() 436 { U32 const nextOffset = DELTANEXTU16(dictCtx->chainTable, dictMatchIndex); in LZ4HC_InsertAndGetWiderMatch() 833 assert(ctx->dictCtx == NULL); in LZ4HC_compress_generic_noDictCtx() 849 assert(ctx->dictCtx != NULL); in LZ4HC_compress_generic_dictCtx() 851 ctx->dictCtx = NULL; in LZ4HC_compress_generic_dictCtx() 854 memcpy(ctx, ctx->dictCtx, sizeof(LZ4HC_CCtx_internal)); in LZ4HC_compress_generic_dictCtx() [all …]
|
D | lz4.c | 782 cctx->dictCtx = NULL; in LZ4_prepareTable() 809 const LZ4_stream_t_internal* dictCtx = (const LZ4_stream_t_internal*) cctx->dictCtx; in LZ4_compress_generic() local 811 dictDirective == usingDictCtx ? dictCtx->dictionary : cctx->dictionary; in LZ4_compress_generic() 813 dictDirective == usingDictCtx ? dictCtx->dictSize : cctx->dictSize; in LZ4_compress_generic() 814 …const U32 dictDelta = (dictDirective == usingDictCtx) ? startIndex - dictCtx->currentOffset : 0; … in LZ4_compress_generic() 827 dictionary + dictSize - dictCtx->currentOffset : in LZ4_compress_generic() 851 cctx->dictCtx = NULL; in LZ4_compress_generic() 914 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); in LZ4_compress_generic() 1104 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); in LZ4_compress_generic() 1432 const LZ4_stream_t_internal* dictCtx = dictionaryStream == NULL ? NULL : in LZ4_attach_dictionary() local [all …]
|
D | lz4hc.h | 219 const LZ4HC_CCtx_internal* dictCtx; member 239 const LZ4HC_CCtx_internal* dictCtx; member
|
D | lz4.h | 570 const LZ4_stream_t_internal* dictCtx; member 590 const LZ4_stream_t_internal* dictCtx; member
|