Searched refs:ctxPtr (Results 1 – 4 of 4) sorted by relevance
/external/lz4/lib/ |
D | lz4hc.c | 820 static void LZ4HC_setExternalDict(LZ4HC_CCtx_internal* ctxPtr, const BYTE* newBlock); 1030 LZ4HC_CCtx_internal* const ctxPtr = &LZ4_streamHCPtr->internal_donotuse; in LZ4_loadDictHC() local 1038 { int const cLevel = ctxPtr->compressionLevel; in LZ4_loadDictHC() 1042 LZ4HC_init_internal (ctxPtr, (const BYTE*)dictionary); in LZ4_loadDictHC() 1043 ctxPtr->end = (const BYTE*)dictionary + dictSize; in LZ4_loadDictHC() 1044 if (dictSize >= 4) LZ4HC_Insert (ctxPtr, ctxPtr->end-3); in LZ4_loadDictHC() 1054 static void LZ4HC_setExternalDict(LZ4HC_CCtx_internal* ctxPtr, const BYTE* newBlock) in LZ4HC_setExternalDict() argument 1056 DEBUGLOG(4, "LZ4HC_setExternalDict(%p, %p)", ctxPtr, newBlock); in LZ4HC_setExternalDict() 1057 if (ctxPtr->end >= ctxPtr->base + ctxPtr->dictLimit + 4) in LZ4HC_setExternalDict() 1058 LZ4HC_Insert (ctxPtr, ctxPtr->end-3); /* Referencing remaining dictionary content */ in LZ4HC_setExternalDict() [all …]
|
D | lz4.c | 1252 … LZ4_stream_t* ctxPtr = ALLOC(sizeof(LZ4_stream_t)); /* malloc-calloc always properly aligned */ in LZ4_compress_fast() local 1253 if (ctxPtr == NULL) return 0; in LZ4_compress_fast() 1256 LZ4_stream_t* const ctxPtr = &ctx; in LZ4_compress_fast() local 1258 … result = LZ4_compress_fast_extState(ctxPtr, source, dest, inputSize, maxOutputSize, acceleration); in LZ4_compress_fast() 1261 FREEMEM(ctxPtr); in LZ4_compress_fast()
|
/external/clang/test/SemaCXX/ |
D | anonymous-union.cpp | 167 union { int **ctxPtr; void **voidPtr; }; in f2() member
|
/external/llvm-project/clang/test/SemaCXX/ |
D | anonymous-union.cpp | 171 union { int **ctxPtr; void **voidPtr; }; in f2() member
|