HomeSort by relevance Sort by last modified time
    Searched refs:ctxPtr (Results 1 - 3 of 3) sorted by null

  /external/lz4/lib/
lz4hc.c 570 LZ4HC_CCtx_internal* ctxPtr = &LZ4_streamHCPtr->internal_donotuse;
575 LZ4HC_init (ctxPtr, (const BYTE*)dictionary);
576 ctxPtr->end = (const BYTE*)dictionary + dictSize;
577 if (ctxPtr->compressionLevel >= LZ4HC_CLEVEL_OPT_MIN)
578 LZ4HC_updateBinTree(ctxPtr, ctxPtr->end - MFLIMIT, ctxPtr->end - LASTLITERALS);
580 if (dictSize >= 4) LZ4HC_Insert (ctxPtr, ctxPtr->end-3);
587 static void LZ4HC_setExternalDict(LZ4HC_CCtx_internal* ctxPtr, const BYTE* newBlock
    [all...]
lz4.c 682 void* ctxPtr = ALLOCATOR(1, sizeof(LZ4_stream_t)); /* malloc-calloc always properly aligned */
685 void* const ctxPtr = &ctx;
688 int const result = LZ4_compress_fast_extState(ctxPtr, source, dest, inputSize, maxOutputSize, acceleration);
691 FREEMEM(ctxPtr);
    [all...]
  /external/clang/test/SemaCXX/
anonymous-union.cpp 167 union { int **ctxPtr; void **voidPtr; };

Completed in 229 milliseconds