Searched refs:ctxPtr (Results 1 – 3 of 3) sorted by relevance
603 LZ4HC_Data_Structure* ctxPtr = (LZ4HC_Data_Structure*) LZ4_streamHCPtr; in LZ4_loadDictHC() local609 LZ4HC_init (ctxPtr, (const BYTE*)dictionary); in LZ4_loadDictHC()610 if (dictSize >= 4) LZ4HC_Insert (ctxPtr, (const BYTE*)dictionary +(dictSize-3)); in LZ4_loadDictHC()611 ctxPtr->end = (const BYTE*)dictionary + dictSize; in LZ4_loadDictHC()618 static void LZ4HC_setExternalDict(LZ4HC_Data_Structure* ctxPtr, const BYTE* newBlock) in LZ4HC_setExternalDict() argument620 if (ctxPtr->end >= ctxPtr->base + 4) in LZ4HC_setExternalDict()621 LZ4HC_Insert (ctxPtr, ctxPtr->end-3); /* Referencing remaining dictionary content */ in LZ4HC_setExternalDict()623 ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4HC_setExternalDict()624 ctxPtr->dictLimit = (U32)(ctxPtr->end - ctxPtr->base); in LZ4HC_setExternalDict()625 ctxPtr->dictBase = ctxPtr->base; in LZ4HC_setExternalDict()[all …]
193 LZ4F_errorCode_t LZ4F_createDecompressionContext(LZ4F_decompressionContext_t* ctxPtr, unsigned vers…
167 union { int **ctxPtr; void **voidPtr; }; in f2() member