Home
last modified time | relevance | path

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

/third_party/lz4/lib/
H A Dlz4hc.c863 static void LZ4HC_setExternalDict(LZ4HC_CCtx_internal* ctxPtr, const BYTE* newBlock);
1069 LZ4HC_CCtx_internal* const ctxPtr = &LZ4_streamHCPtr->internal_donotuse; in LZ4_loadDictHC() local
1077 { int const cLevel = ctxPtr->compressionLevel; in LZ4_loadDictHC()
1081 LZ4HC_init_internal (ctxPtr, (const BYTE*)dictionary); in LZ4_loadDictHC()
1082 ctxPtr->end = (const BYTE*)dictionary + dictSize; in LZ4_loadDictHC()
1083 if (dictSize >= 4) LZ4HC_Insert (ctxPtr, ctxPtr->end-3); in LZ4_loadDictHC()
1093 static void LZ4HC_setExternalDict(LZ4HC_CCtx_internal* ctxPtr, const BYTE* newBlock) in LZ4HC_setExternalDict() argument
1095 DEBUGLOG(4, "LZ4HC_setExternalDict(%p, %p)", ctxPtr, newBlock); in LZ4HC_setExternalDict()
1096 if (ctxPtr in LZ4HC_setExternalDict()
1117 LZ4HC_CCtx_internal* const ctxPtr = &LZ4_streamHCPtr->internal_donotuse; LZ4_compressHC_continue_generic() local
[all...]
H A Dlz4.c1420 LZ4_stream_t* ctxPtr = (LZ4_stream_t*)ALLOC(sizeof(LZ4_stream_t)); /* malloc-calloc always properly aligned */ in LZ4_compress_fast() local
1421 if (ctxPtr == NULL) return 0; in LZ4_compress_fast()
1424 LZ4_stream_t* const ctxPtr = &ctx; in LZ4_compress_fast()
1426 result = LZ4_compress_fast_extState(ctxPtr, source, dest, inputSize, maxOutputSize, acceleration); in LZ4_compress_fast()
1429 FREEMEM(ctxPtr); in LZ4_compress_fast()

Completed in 8 milliseconds