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