Lines Matching refs:inBuff
250 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()
2066 … FORWARD_IF_ERROR(ZSTD_decompressContinueStream(zds, &op, oend, zds->inBuff, neededInSize), ""); in ZSTD_decompressStream()