Home
last modified time | relevance | path

Searched refs:ctxPtr (Results 1 – 1 of 1) sorted by relevance

/linux/lib/lz4/
H A Dlz4hc_compress.c630 LZ4HC_CCtx_internal *ctxPtr = &LZ4_streamHCPtr->internal_donotuse; in LZ4_loadDictHC() local
636 LZ4HC_init(ctxPtr, (const BYTE *)dictionary); in LZ4_loadDictHC()
638 LZ4HC_Insert(ctxPtr, (const BYTE *)dictionary + (dictSize - 3)); in LZ4_loadDictHC()
639 ctxPtr->end = (const BYTE *)dictionary + dictSize; in LZ4_loadDictHC()
647 LZ4HC_CCtx_internal *ctxPtr, in LZ4HC_setExternalDict() argument
650 if (ctxPtr->end >= ctxPtr->base + 4) { in LZ4HC_setExternalDict()
652 LZ4HC_Insert(ctxPtr, ctxPtr->end - 3); in LZ4HC_setExternalDict()
659 ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4HC_setExternalDict()
660 ctxPtr->dictLimit = (U32)(ctxPtr->end - ctxPtr->base); in LZ4HC_setExternalDict()
661 ctxPtr->dictBase = ctxPtr->base; in LZ4HC_setExternalDict()
[all …]