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

  /external/lz4/lib/
lz4frame.c 380 LZ4F_cctx_t* const cctxPtr = (LZ4F_cctx_t*)ALLOCATOR(sizeof(LZ4F_cctx_t));
381 if (cctxPtr==NULL) return err0r(LZ4F_ERROR_allocation_failed);
383 cctxPtr->version = version;
384 cctxPtr->cStage = 0; /* Next stage : write header */
386 *LZ4F_compressionContextPtr = (LZ4F_compressionContext_t)cctxPtr;
394 LZ4F_cctx_t* const cctxPtr = (LZ4F_cctx_t*)LZ4F_compressionContext;
396 if (cctxPtr != NULL) { /* null pointers can be safely provided to this function, like free() */
397 FREEMEM(cctxPtr->lz4CtxPtr);
398 FREEMEM(cctxPtr->tmpBuff);
412 size_t LZ4F_compressBegin(LZ4F_cctx* cctxPtr, void* dstBuffer, size_t dstCapacity, const LZ4F_preferences_t* preferencesPtr
    [all...]
lz4frame.h 195 LZ4FLIB_API LZ4F_errorCode_t LZ4F_createCompressionContext(LZ4F_cctx** cctxPtr, unsigned version);

Completed in 62 milliseconds