Lines Matching refs:inBuff
256 dctx->inBuff = NULL; in ZSTD_initDCtx_internal()
285 dctx->inBuff = (char*)(dctx+1); in ZSTD_initStaticDCtx()
325 ZSTD_customFree(dctx->inBuff, cMem); in ZSTD_freeDCtx()
326 dctx->inBuff = NULL; in ZSTD_freeDCtx()
343 size_t const toCopy = (size_t)((char*)(&dstDCtx->inBuff) - (char*)dstDCtx); in ZSTD_copyDCtx()
2093 ZSTD_customFree(zds->inBuff, zds->customMem); in ZSTD_decompressStream()
2096 zds->inBuff = (char*)ZSTD_customMalloc(bufferSize, zds->customMem); in ZSTD_decompressStream()
2097 RETURN_ERROR_IF(zds->inBuff == NULL, memory_allocation, ""); in ZSTD_decompressStream()
2100 zds->outBuff = zds->inBuff + zds->inBuffSize; in ZSTD_decompressStream()
2138 … loadedSize = ZSTD_limitCopy(zds->inBuff + zds->inPos, toLoad, ip, (size_t)(iend-ip)); in ZSTD_decompressStream()
2146 … FORWARD_IF_ERROR(ZSTD_decompressContinueStream(zds, &op, oend, zds->inBuff, neededInSize), ""); in ZSTD_decompressStream()