Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.c761 static void LZ4HC_setExternalDict(LZ4HC_CCtx_internal* ctxPtr, const BYTE* newBlock);
922 LZ4HC_CCtx_internal* const ctxPtr = &LZ4_streamHCPtr->internal_donotuse; in LZ4_loadDictHC() local
928 LZ4_resetStreamHC(LZ4_streamHCPtr, ctxPtr->compressionLevel); in LZ4_loadDictHC()
929 LZ4HC_init (ctxPtr, (const BYTE*)dictionary); in LZ4_loadDictHC()
930 ctxPtr->end = (const BYTE*)dictionary + dictSize; in LZ4_loadDictHC()
931 if (dictSize >= 4) LZ4HC_Insert (ctxPtr, ctxPtr->end-3); in LZ4_loadDictHC()
941 static void LZ4HC_setExternalDict(LZ4HC_CCtx_internal* ctxPtr, const BYTE* newBlock) in LZ4HC_setExternalDict() argument
943 DEBUGLOG(4, "LZ4HC_setExternalDict(%p, %p)", ctxPtr, newBlock); in LZ4HC_setExternalDict()
944 if (ctxPtr->end >= ctxPtr->base + ctxPtr->dictLimit + 4) in LZ4HC_setExternalDict()
945 LZ4HC_Insert (ctxPtr, ctxPtr->end-3); /* Referencing remaining dictionary content */ in LZ4HC_setExternalDict()
[all …]
Dlz4.c1082 … LZ4_stream_t* ctxPtr = ALLOC(sizeof(LZ4_stream_t)); /* malloc-calloc always properly aligned */ in LZ4_compress_fast() local
1083 if (ctxPtr == NULL) return 0; in LZ4_compress_fast()
1086 LZ4_stream_t* const ctxPtr = &ctx; in LZ4_compress_fast() local
1088 … result = LZ4_compress_fast_extState(ctxPtr, source, dest, inputSize, maxOutputSize, acceleration); in LZ4_compress_fast()
1091 FREEMEM(ctxPtr); in LZ4_compress_fast()
/external/clang/test/SemaCXX/
Danonymous-union.cpp167 union { int **ctxPtr; void **voidPtr; }; in f2() member