Home
last modified time | relevance | path

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

/openbmc/linux/lib/zstd/decompress/
H A Dzstd_decompress.c250 dctx->inBuff = NULL; in ZSTD_initDCtx_internal()
275 dctx->inBuff = (char*)(dctx+1); in ZSTD_initStaticDCtx()
315 ZSTD_customFree(dctx->inBuff, cMem); in ZSTD_freeDCtx()
316 dctx->inBuff = NULL; in ZSTD_freeDCtx()
329 size_t const toCopy = (size_t)((char*)(&dstDCtx->inBuff) - (char*)dstDCtx); in ZSTD_copyDCtx()
2013 ZSTD_customFree(zds->inBuff, zds->customMem); in ZSTD_decompressStream()
2016 zds->inBuff = (char*)ZSTD_customMalloc(bufferSize, zds->customMem); in ZSTD_decompressStream()
2017 RETURN_ERROR_IF(zds->inBuff == NULL, memory_allocation, ""); in ZSTD_decompressStream()
2020 zds->outBuff = zds->inBuff + zds->inBuffSize; in ZSTD_decompressStream()
2058 … loadedSize = ZSTD_limitCopy(zds->inBuff + zds->inPos, toLoad, ip, (size_t)(iend-ip)); in ZSTD_decompressStream()
[all …]
H A Dzstd_decompress_internal.h170 char* inBuff; member
/openbmc/linux/lib/zstd/compress/
H A Dzstd_compress.c1552 size_t const buffered = (cctx->inBuff == NULL) ? 0 : in ZSTD_getFrameProgression()
1866 zc->inBuff = (char*)ZSTD_cwksp_reserve_buffer(ws, buffInSize); in ZSTD_resetCCtx_internal()
5225 assert(zcs->inBuff != NULL); in ZSTD_compressStream_generic()
5262 zcs->inBuff + zcs->inBuffPos, toLoad, in ZSTD_compressStream_generic()
5295 zcs->inBuff + zcs->inToCompress, iSize) : in ZSTD_compressStream_generic()
5297 zcs->inBuff + zcs->inToCompress, iSize); in ZSTD_compressStream_generic()
H A Dzstd_compress_internal.h393 char* inBuff; member