Home
last modified time | relevance | path

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

/linux-5.19.10/lib/zstd/decompress/
Dzstd_decompress.c251 dctx->inBuff = NULL; in ZSTD_initDCtx_internal()
276 dctx->inBuff = (char*)(dctx+1); in ZSTD_initStaticDCtx()
312 ZSTD_customFree(dctx->inBuff, cMem); in ZSTD_freeDCtx()
313 dctx->inBuff = NULL; in ZSTD_freeDCtx()
326 size_t const toCopy = (size_t)((char*)(&dstDCtx->inBuff) - (char*)dstDCtx); in ZSTD_copyDCtx()
1948 ZSTD_customFree(zds->inBuff, zds->customMem); in ZSTD_decompressStream()
1951 zds->inBuff = (char*)ZSTD_customMalloc(bufferSize, zds->customMem); in ZSTD_decompressStream()
1952 RETURN_ERROR_IF(zds->inBuff == NULL, memory_allocation, ""); in ZSTD_decompressStream()
1955 zds->outBuff = zds->inBuff + zds->inBuffSize; in ZSTD_decompressStream()
1993 … loadedSize = ZSTD_limitCopy(zds->inBuff + zds->inPos, toLoad, ip, (size_t)(iend-ip)); in ZSTD_decompressStream()
[all …]
Dzstd_decompress_internal.h152 char* inBuff; member
/linux-5.19.10/lib/zstd/compress/
Dzstd_compress.c1395 size_t const buffered = (cctx->inBuff == NULL) ? 0 : in ZSTD_getFrameProgression()
1665 zc->inBuff = (char*)ZSTD_cwksp_reserve_buffer(ws, buffInSize); in ZSTD_resetCCtx_internal()
4109 assert(zcs->inBuff != NULL); in ZSTD_compressStream_generic()
4146 zcs->inBuff + zcs->inBuffPos, toLoad, in ZSTD_compressStream_generic()
4179 zcs->inBuff + zcs->inToCompress, iSize) : in ZSTD_compressStream_generic()
4181 zcs->inBuff + zcs->inToCompress, iSize); in ZSTD_compressStream_generic()
Dzstd_compress_internal.h303 char* inBuff; member