Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.c603 LZ4HC_Data_Structure* ctxPtr = (LZ4HC_Data_Structure*) LZ4_streamHCPtr; in LZ4_loadDictHC() local
609 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() argument
620 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 …]
Dlz4frame.h193 LZ4F_errorCode_t LZ4F_createDecompressionContext(LZ4F_decompressionContext_t* ctxPtr, unsigned vers…
/external/clang/test/SemaCXX/
Danonymous-union.cpp167 union { int **ctxPtr; void **voidPtr; }; in f2() member