Searched refs:inBuff (Results 1 - 4 of 4) sorted by relevance

/linux-master/lib/zstd/decompress/
H A Dzstd_decompress_internal.h170 char* inBuff; member in struct:ZSTD_DCtx_s
H A Dzstd_decompress.c250 dctx->inBuff = NULL;
275 dctx->inBuff = (char*)(dctx+1);
315 ZSTD_customFree(dctx->inBuff, cMem);
316 dctx->inBuff = NULL;
329 size_t const toCopy = (size_t)((char*)(&dstDCtx->inBuff) - (char*)dstDCtx);
2002 DEBUGLOG(4, "inBuff : from %u to %u",
2013 ZSTD_customFree(zds->inBuff, zds->customMem);
2016 zds->inBuff = (char*)ZSTD_customMalloc(bufferSize, zds->customMem);
2017 RETURN_ERROR_IF(zds->inBuff == NULL, memory_allocation, "");
2020 zds->outBuff = zds->inBuff
[all...]
/linux-master/lib/zstd/compress/
H A Dzstd_compress.c1552 size_t const buffered = (cctx->inBuff == NULL) ? 0 :
1866 zc->inBuff = (char*)ZSTD_cwksp_reserve_buffer(ws, buffInSize);
5225 assert(zcs->inBuff != NULL);
5262 zcs->inBuff + zcs->inBuffPos, toLoad,
5295 zcs->inBuff + zcs->inToCompress, iSize) :
5297 zcs->inBuff + zcs->inToCompress, iSize);
H A Dzstd_compress_internal.h393 char* inBuff; member in struct:ZSTD_CCtx_s

Completed in 393 milliseconds