Lines Matching refs:inBuff
250 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 + zds->inBuffSize;
2058 loadedSize = ZSTD_limitCopy(zds->inBuff + zds->inPos, toLoad, ip, (size_t)(iend-ip));
2066 FORWARD_IF_ERROR(ZSTD_decompressContinueStream(zds, &op, oend, zds->inBuff, neededInSize), "");